body {
  font-family: 'Work Sans', sans-serif;
}
.display-1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3.8rem;
  line-height: 1.22;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.38rem;
  line-height: 1.7;
}
.display-7 > .mbr-iconfont {
  font-size: 1.725rem;
}
/* ---- 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: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.104rem;
    font-size: calc( 1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.133rem + (1.38 - 1.133) * ((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: #0b2b5c !important;
}
.bg-success {
  background-color: #009e9f !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #780000 !important;
}
.bg-danger {
  background-color: #780000 !important;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #0b2b5c !important;
  border-color: #0b2b5c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary::before,
.btn-primary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #0b2b5c !important;
  background-color: transparent !important;
  border-color: #0b2b5c;
  box-shadow: none;
}
.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-primary.focus::before,
.btn-primary.active::before {
  width: 100%;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #009e9f !important;
  border-color: #009e9f !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary::before,
.btn-secondary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #009e9f !important;
  background-color: transparent !important;
  border-color: #009e9f;
  box-shadow: none;
}
.btn-secondary:hover::before,
.btn-secondary:focus::before,
.btn-secondary.focus::before,
.btn-secondary.active::before {
  width: 100%;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info::before,
.btn-info:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #47b5ed !important;
  background-color: transparent !important;
  border-color: #47b5ed;
  box-shadow: none;
}
.btn-info:hover::before,
.btn-info:focus::before,
.btn-info.focus::before,
.btn-info.active::before {
  width: 100%;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0b4c6d !important;
  border-color: #0b4c6d !important;
}
.btn-success {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #009e9f !important;
  border-color: #009e9f !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success::before,
.btn-success:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #009e9f !important;
  background-color: transparent !important;
  border-color: #009e9f;
  box-shadow: none;
}
.btn-success:hover::before,
.btn-success:focus::before,
.btn-success.focus::before,
.btn-success.active::before {
  width: 100%;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #780000 !important;
  border-color: #780000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning::before,
.btn-warning:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #780000 !important;
  background-color: transparent !important;
  border-color: #780000;
  box-shadow: none;
}
.btn-warning:hover::before,
.btn-warning:focus::before,
.btn-warning.focus::before,
.btn-warning.active::before {
  width: 100%;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #780000 !important;
  border-color: #780000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger::before,
.btn-danger:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #780000 !important;
  background-color: transparent !important;
  border-color: #780000;
  box-shadow: none;
}
.btn-danger:hover::before,
.btn-danger:focus::before,
.btn-danger.focus::before,
.btn-danger.active::before {
  width: 100%;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white::before,
.btn-white:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7a7a7a !important;
  transition: all .3s;
  z-index: -1;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #fafafa !important;
  background-color: transparent !important;
  border-color: #fafafa;
  box-shadow: none;
}
.btn-white:hover::before,
.btn-white:focus::before,
.btn-white.focus::before,
.btn-white.active::before {
  width: 100%;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-black {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black::before,
.btn-black:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #232323 !important;
  background-color: transparent !important;
  border-color: #232323;
  box-shadow: none;
}
.btn-black:hover::before,
.btn-black:focus::before,
.btn-black.focus::before,
.btn-black.active::before {
  width: 100%;
}
.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: #0b2b5c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #02070f !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: #0b2b5c !important;
  border-color: #0b2b5c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #009e9f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #004848 !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: #009e9f !important;
  border-color: #009e9f !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: #009e9f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #004848 !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: #009e9f !important;
  border-color: #009e9f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #780000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #210000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #780000 !important;
  border-color: #780000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #780000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #210000 !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: #780000 !important;
  border-color: #780000 !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: #0b2b5c !important;
}
.text-secondary {
  color: #009e9f !important;
}
.text-success {
  color: #009e9f !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #780000 !important;
}
.text-danger {
  color: #780000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f2bb2c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #06fdff !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f2bb2c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f2bb2c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #de0000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #f2bb2c !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #f2bb2c !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: #0b2b5c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #780000;
}
.alert-danger {
  background-color: #780000;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn button.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0b2b5c;
  border-color: #0b2b5c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0b2b5c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1960ce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #20feff;
}
.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: #f80000;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f80000;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #0b2b5c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #0b2b5c;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0b2b5c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0b2b5c;
}
.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: #0b2b5c;
  border-bottom-color: #0b2b5c;
}
.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: #0b2b5c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #009e9f !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='%230b2b5c' %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-tFzy2uQac0 {
  z-index: 1000;
  width: 100%;
}
.cid-tFzy2uQac0 nav.navbar {
  position: fixed;
}
.cid-tFzy2uQac0 .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-tFzy2uQac0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFzy2uQac0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFzy2uQac0 .dropdown-item:hover,
.cid-tFzy2uQac0 .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tFzy2uQac0 .dropdown-item:hover span {
  color: white;
}
.cid-tFzy2uQac0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFzy2uQac0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFzy2uQac0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFzy2uQac0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFzy2uQac0 .nav-link {
  position: relative;
}
.cid-tFzy2uQac0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFzy2uQac0 .container {
    flex-wrap: nowrap;
  }
}
.cid-tFzy2uQac0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFzy2uQac0 .dropdown-menu,
.cid-tFzy2uQac0 .navbar.opened {
  background: #ffffff !important;
}
.cid-tFzy2uQac0 .nav-item:focus,
.cid-tFzy2uQac0 .nav-link:focus {
  outline: none;
}
.cid-tFzy2uQac0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFzy2uQac0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFzy2uQac0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFzy2uQac0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFzy2uQac0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFzy2uQac0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFzy2uQac0 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: none;
  backdrop-filter: blur(5px);
  margin: auto;
  border-radius: 0em 0em 2em 2em;
  -webkit-box-shadow: 10px 10px 5px .7;
  box-shadow: 10px 8px 16px 0px #000000;
  width: 94vw;
  opacity: 0.9;
  background: #ffffff;
}
.cid-tFzy2uQac0 .navbar.opened {
  transition: all .3s;
}
.cid-tFzy2uQac0 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tFzy2uQac0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFzy2uQac0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFzy2uQac0 .navbar.collapsed {
  justify-content: center;
}
.cid-tFzy2uQac0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFzy2uQac0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFzy2uQac0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tFzy2uQac0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFzy2uQac0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFzy2uQac0 .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-tFzy2uQac0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFzy2uQac0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFzy2uQac0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFzy2uQac0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFzy2uQac0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFzy2uQac0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFzy2uQac0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFzy2uQac0 .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-tFzy2uQac0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFzy2uQac0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFzy2uQac0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFzy2uQac0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFzy2uQac0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFzy2uQac0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFzy2uQac0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFzy2uQac0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFzy2uQac0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFzy2uQac0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFzy2uQac0 .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-tFzy2uQac0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFzy2uQac0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFzy2uQac0 .dropdown-item.active,
.cid-tFzy2uQac0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFzy2uQac0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFzy2uQac0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFzy2uQac0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFzy2uQac0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFzy2uQac0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFzy2uQac0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFzy2uQac0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFzy2uQac0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFzy2uQac0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFzy2uQac0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFzy2uQac0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFzy2uQac0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFzy2uQac0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFzy2uQac0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFzy2uQac0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFzy2uQac0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFzy2uQac0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFzy2uQac0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFzy2uQac0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFzy2uQac0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFzy2uQac0 .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-tFzy2uQac0 .navbar {
    height: 70px;
  }
  .cid-tFzy2uQac0 .navbar.opened {
    height: auto;
  }
  .cid-tFzy2uQac0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIjMv8j33t {
  padding-top: 10rem;
  padding-bottom: 6rem;
  text-shadow: 2px 2px 5px black;
}
@media screen and (max-width: 991px) {
  .cid-sIjMv8j33t .main-container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .cid-sIjMv8j33t .main-container .main-title {
    margin-top: 1rem;
  }
}
.cid-sIjMv8j33t .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-sIjMv8j33t .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sIjMv8j33t .mbr-text,
.cid-sIjMv8j33t .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sIjMv8j33t .btn {
  top: 0;
  right: 0px;
  position: relative;
  text-shadow: 0px 0px 0px black;
  border-radius: 1em;
  -webkit-box-shadow: 10px 10px 15px #000000;
  padding: 5px 10px;
}
.cid-sIjMv8j33t .btn:hover {
  top: 3px;
  -webkit-box-shadow: 0px 0px 0px #000000;
}
.cid-sIjMv8j33t img {
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  transition: 1s;
  width: 75%;
  top: 0px;
  right: 0px;
}
.cid-sIjMv8j33t img:hover {
  transform: scale(0.8);
}
@-webkit-keyframes zoom {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(1);
  }
}
.cid-sIjMv8j33t .zoomin {
  -webkit-animation: zoom 3s 1;
}
.cid-sIjMv8j33t .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px 35px 35px 35px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 10px 15px 10px;
}
.cid-tNAm5NKftX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNAm5NKftX .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNAm5NKftX .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNAm5NKftX .mbr-section-btn {
  margin-top: 20px;
}
.cid-tNHDtgOjih {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tNHDtgOjih .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tNHDtgOjih .card-wrapper {
  background-color: #fcf5e6;
  border-radius: 16px;
  background-color: transparent;
}
.cid-tNHDtgOjih .image-wrapper {
  height: 100%;
}
.cid-tNHDtgOjih .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNHDtgOjih .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}
.cid-tNHDtgOjih .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tNHDtgOjih .social-row .soc-item:hover {
  background-color: #ffffff;
}
.cid-tNHDtgOjih .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (min-width: 767px) {
  .cid-tNHDtgOjih .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-tNHDtgOjih .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNHDtgOjih .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-tNHDtgOjih .card-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tNHDtgOjih .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tNHDtgOjih img {
  border-radius: 5rem;
  transition: all .3s;
  -webkit-mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}
.cid-tNHDtgOjih img:hover {
  opacity: 1;
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.8);
  transition: all 2s;
  border-radius: 2rem;
  transform: rotate(-2deg) scale(1.03);
  -webkit-mask-position: 120%;
  mask-position: 120%;
}
.cid-tNHDtgOjih .glass {
  text-shadow: 0px 0px 0px #000000;
  border-radius: 35px 35px 35px 35px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 10px 15px 10px;
}
.cid-tNHDtgOjih .mbr-section-title {
  color: #ffffff;
}
.cid-tNHDtgOjih .mbr-text,
.cid-tNHDtgOjih .social-row {
  color: #ffffff;
}
.cid-tNHDtgOjih .btn-bottom {
  display: flex;
  position: absolute;
  bottom: 0;
}
.cid-tNAm6oXjrb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNAm6oXjrb .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNAm6oXjrb .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNAm6oXjrb .mbr-section-btn {
  margin-top: 20px;
}
.cid-tNHCpFsr2u {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
@media (min-width: 1500px) {
  .cid-tNHCpFsr2u .container {
    max-width: 1400px;
  }
}
.cid-tNHCpFsr2u .card-text_padding-bottom {
  padding-bottom: 5rem;
}
.cid-tNHCpFsr2u .card-img {
  margin-left: auto;
  margin-bottom: 2rem;
  margin-right: auto;
}
.cid-tNHCpFsr2u .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.cid-tNHCpFsr2u .btn-bottom {
  display: flex;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1620px) {
  .cid-tNHCpFsr2u .card {
    padding: 0 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1250px) {
  .cid-tNHCpFsr2u .card {
    padding: 0 2rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .cid-tNHCpFsr2u .card {
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
}
.cid-tNHCpFsr2u .row {
  justify-content: center;
}
.cid-tNHCpFsr2u img {
  transform: perspective(290px) scale(0.8) rotateY(10deg);
  -webkit-box-shadow: 15px 15px 55px #000;
  -moz-transform: perspective(290px) rotateY(10deg);
  -ms-transform: perspective(290px) rotateY(10deg);
  -o-transform: perspective(290px) rotateY(10deg);
  -webkit-transform: perspective(290px) rotateY(10deg);
  opacity: 1;
  border-radius: 1.5rem;
  transition: all .1s;
  -webkit-mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}
.cid-tNHCpFsr2u img:hover {
  -webkit-box-shadow: 15px 15px 55px #000;
  opacity: 1;
  transition: all .7s;
  border-radius: 2rem;
  transform: rotate(0deg) scale(1);
  -webkit-mask-position: 120%;
  mask-position: 120%;
}
.cid-tNHCpFsr2u .btn {
  top: 0;
  right: 0px;
  position: relative;
  text-shadow: 0px 0px 0px black;
  border-radius: 1em 1em 1em 1em;
}
.cid-tNHCpFsr2u .btn:hover {
  top: 3px;
  -webkit-box-shadow: 0px 0px 0px #000000;
}
.cid-tNHCpFsr2u .glass {
  text-shadow: 0px 0px 0px #000000;
  border-radius: 35px 35px 35px 35px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 10px 15px 10px;
}
.cid-tNHCpFsr2u .mbr-section-title {
  color: #ffffff;
}
.cid-tNHCpFsr2u .card-title,
.cid-tNHCpFsr2u .iconfont-wrapper {
  color: #ffffff;
}
.cid-tNHCpFsr2u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tNHDhMRbep {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNHDhMRbep .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNHDhMRbep .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNHDhMRbep .mbr-section-btn {
  margin-top: 20px;
}
.cid-tFRbkd6MTp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tFRbkd6MTp .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-tFRbkd6MTp .text-wrapper {
  position: relative;
  background: #fff0b0;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-tFRbkd6MTp .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-tFRbkd6MTp .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-tFRbkd6MTp .text-wrapper .card-text,
.cid-tFRbkd6MTp .text-wrapper .card-btn,
.cid-tFRbkd6MTp .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-tFRbkd6MTp .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tFRbkd6MTp .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tFRbkd6MTp .content-wrapper .geometry__square,
  .cid-tFRbkd6MTp .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tFRbkd6MTp .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tFRbkd6MTp .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFRbkd6MTp .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tFRbkd6MTp .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tFRbkd6MTp .geometry {
  position: absolute;
}
.cid-tFRbkd6MTp .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-tFRbkd6MTp .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-tFRbkd6MTp .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tFRbkd6MTp .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-tFRbkd6MTp .geometry__square,
.cid-tFRbkd6MTp .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tFRbkd6MTp .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tFRbkd6MTp .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tFRbkd6MTp .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tFRbkd6MTp .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-tFRbkd6MTp .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-tFRbkd6MTp .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-tFRbkd6MTp .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tFRbkd6MTp .content {
    display: block;
  }
  .cid-tFRbkd6MTp .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tFRbkd6MTp .card-text,
  .cid-tFRbkd6MTp .card-title,
  .cid-tFRbkd6MTp .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tFRbkd6MTp .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tFRbkd6MTp .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tFRbkd6MTp .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tFRbkd6MTp .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tFRbkd6MTp .geometry {
    position: absolute;
  }
  .cid-tFRbkd6MTp .geometry__circle,
  .cid-tFRbkd6MTp .geometry__circle-bg,
  .cid-tFRbkd6MTp .geometry__square,
  .cid-tFRbkd6MTp .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tFRbkd6MTp img {
  -webkit-box-shadow: 15px 15px 55px #000;
  transform: perspective(290px) rotateY(10deg);
  -moz-transform: perspective(290px) rotateY(10deg);
  -ms-transform: perspective(290px) rotateY(10deg);
  -o-transform: perspective(290px) rotateY(10deg);
  -webkit-transform: perspective(290px) rotateY(10deg);
  opacity: .9;
  border-radius: 1.5rem;
  transition: all .1s;
  -webkit-mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}
.cid-tFRbkd6MTp img:hover {
  -webkit-box-shadow: 15px 15px 55px #000;
  opacity: 1;
  transition: all .7s;
  border-radius: 2rem;
  transform: rotate(0deg) scale(1.15);
  -webkit-mask-position: 120%;
  mask-position: 120%;
}
.cid-tNAm6VMZCq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNAm6VMZCq .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNAm6VMZCq .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNAm6VMZCq .mbr-section-btn {
  margin-top: 20px;
}
.cid-tFRp6bMPI3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tFRp6bMPI3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFRp6bMPI3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFRp6bMPI3 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tFRp6bMPI3 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tFRp6bMPI3 .container-fluid .row {
  padding: 0;
}
.cid-tFRp6bMPI3 .row {
  border: 3px solid #d2d2d2;
  border-radius: 5px;
}
.cid-tFRp6bMPI3 .card {
  padding: 80px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tFRp6bMPI3 .card {
    border-left: 1px solid #d2d2d2;
  }
}
@media (max-width: 992px) {
  .cid-tFRp6bMPI3 .card {
    padding: 48px 20px;
  }
}
.cid-tFRp6bMPI3 .card .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFRp6bMPI3 .card .image-wrapper .image-main {
  display: block;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  position: static;
  width: 50%;
}
@media (max-width: 1200px) {
  .cid-tFRp6bMPI3 .card .image-wrapper .image-main {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-tFRp6bMPI3 .card .image-wrapper .image-main {
    height: 250px;
  }
}
.cid-tFRp6bMPI3 .card .image-wrapper img {
  position: absolute;
  top: 5rem;
  right: 6rem;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tFRp6bMPI3 .card .image-wrapper img {
    right: 0;
  }
}
.cid-tFRp6bMPI3 .card .image-wrapper img:nth-child(2) {
  right: auto;
  top: 11rem;
  left: 6rem;
}
@media (max-width: 992px) {
  .cid-tFRp6bMPI3 .card .image-wrapper img:nth-child(2) {
    top: 6rem;
    left: 0;
  }
}
.cid-tFRp6bMPI3 .card .image-wrapper img:last-child {
  top: auto;
  bottom: 8rem;
}
@media (max-width: 992px) {
  .cid-tFRp6bMPI3 .card .image-wrapper img:last-child {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-tFRp6bMPI3 .card .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.cid-tFRp6bMPI3 .card:last-child {
  justify-content: flex-end;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tFRp6bMPI3 .card:last-child {
    border-left: none;
    border-right: 2px solid #d2d2d2;
  }
}
.cid-tFRp6bMPI3 .card .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tFRp6bMPI3 .card .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-tFRp6bMPI3 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tFRp6bMPI3 .card .title-wrapper .mbr-section-subtitle {
  line-height: 48px;
  margin-bottom: 0;
}
.cid-tFRp6bMPI3 .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tFRp6bMPI3 .card .text-wrapper .mbr-section-btn .btn {
    width: 95%;
    min-height: 83px;
    border-radius: 70px;
  }
}
.cid-tFRp6bMPI3 .mbr-section-title {
  color: #041e45;
}
.cid-tFRp6bMPI3 .mbr-section-subtitle {
  color: #000000;
}
.cid-tFRp6bMPI3 .mbr-text {
  color: #000000;
}
.cid-tFRp6bMPI3 img {
  -webkit-box-shadow: 15px 15px 55px #000;
  transform: perspective(290px) rotateY(10deg);
  -moz-transform: perspective(290px) rotateY(10deg);
  -ms-transform: perspective(290px) rotateY(10deg);
  -o-transform: perspective(290px) rotateY(10deg);
  -webkit-transform: perspective(290px) rotateY(10deg);
  opacity: .9;
  border-radius: 1.5rem;
  transition: all .1s;
  -webkit-mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}
.cid-tFRp6bMPI3 img:hover {
  -webkit-box-shadow: 15px 15px 55px #000;
  opacity: 1;
  transition: all .7s;
  border-radius: 2rem;
  transform: rotate(0deg) scale(1.15);
  -webkit-mask-position: 120%;
  mask-position: 120%;
}
.cid-tNAm7tu8MW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNAm7tu8MW .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNAm7tu8MW .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNAm7tu8MW .mbr-section-btn {
  margin-top: 20px;
}
.cid-tFRnRzYCbj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tFRnRzYCbj .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-tFRnRzYCbj .text-wrapper {
  position: relative;
  background: #b7a780;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-tFRnRzYCbj .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-tFRnRzYCbj .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-tFRnRzYCbj .text-wrapper .card-text,
.cid-tFRnRzYCbj .text-wrapper .card-btn,
.cid-tFRnRzYCbj .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-tFRnRzYCbj .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tFRnRzYCbj .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tFRnRzYCbj .content-wrapper .geometry__square,
  .cid-tFRnRzYCbj .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tFRnRzYCbj .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tFRnRzYCbj .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFRnRzYCbj .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tFRnRzYCbj .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tFRnRzYCbj .geometry {
  position: absolute;
}
.cid-tFRnRzYCbj .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-tFRnRzYCbj .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-tFRnRzYCbj .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tFRnRzYCbj .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-tFRnRzYCbj .geometry__square,
.cid-tFRnRzYCbj .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tFRnRzYCbj .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tFRnRzYCbj .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tFRnRzYCbj .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tFRnRzYCbj .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-tFRnRzYCbj .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-tFRnRzYCbj .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-tFRnRzYCbj .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tFRnRzYCbj .content {
    display: block;
  }
  .cid-tFRnRzYCbj .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tFRnRzYCbj .card-text,
  .cid-tFRnRzYCbj .card-title,
  .cid-tFRnRzYCbj .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tFRnRzYCbj .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tFRnRzYCbj .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tFRnRzYCbj .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tFRnRzYCbj .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tFRnRzYCbj .geometry {
    position: absolute;
  }
  .cid-tFRnRzYCbj .geometry__circle,
  .cid-tFRnRzYCbj .geometry__circle-bg,
  .cid-tFRnRzYCbj .geometry__square,
  .cid-tFRnRzYCbj .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tFRnRzYCbj img {
  -webkit-box-shadow: 15px 15px 55px #000;
  transform: perspective(290px) rotateY(10deg);
  -moz-transform: perspective(290px) rotateY(10deg);
  -ms-transform: perspective(290px) rotateY(10deg);
  -o-transform: perspective(290px) rotateY(10deg);
  -webkit-transform: perspective(290px) rotateY(10deg);
  opacity: .9;
  border-radius: 1.5rem;
  transition: all .1s;
  -webkit-mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}
.cid-tFRnRzYCbj img:hover {
  -webkit-box-shadow: 15px 15px 55px #000;
  opacity: 1;
  transition: all .7s;
  border-radius: 2rem;
  transform: rotate(0deg) scale(1.15);
  -webkit-mask-position: 120%;
  mask-position: 120%;
}
.cid-tNAm81QCpQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNAm81QCpQ .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNAm81QCpQ .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNAm81QCpQ .mbr-section-btn {
  margin-top: 20px;
}
.cid-tFRq8cK4py {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tFRq8cK4py .geometry {
  position: absolute;
}
.cid-tFRq8cK4py .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tFRq8cK4py .geometry_left {
  left: -70px;
}
.cid-tFRq8cK4py .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tFRq8cK4py .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tFRq8cK4py .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tFRq8cK4py blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tFRq8cK4py blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tFRq8cK4py blockquote {
    padding: 2rem 1rem;
  }
  .cid-tFRq8cK4py .geometry {
    position: absolute;
  }
  .cid-tFRq8cK4py .geometry__square,
  .cid-tFRq8cK4py .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tFRq8cK4py .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tFRq8cK4py blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tFRq8cK4py .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tFRq8cK4py .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFRq8cK4py blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tFRq8cK4py .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tFRq8cK4py blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tFRq8cK4py .mbr-text {
  text-align: left;
}
.cid-tNAm8xqTb8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNAm8xqTb8 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNAm8xqTb8 .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNAm8xqTb8 .mbr-section-btn {
  margin-top: 20px;
}
.cid-tFRr5NHxtf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFRr5NHxtf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFRr5NHxtf img {
  width: 100%;
  -webkit-box-shadow: 15px 15px 55px #000;
  transform: perspective(290px) rotateY(10deg);
  -moz-transform: perspective(290px) rotateY(10deg);
  -ms-transform: perspective(290px) rotateY(10deg);
  -o-transform: perspective(290px) rotateY(10deg);
  -webkit-transform: perspective(290px) rotateY(10deg);
  opacity: .9;
  border-radius: 1.5rem;
  transition: all .1s;
  -webkit-mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  mask-image: linear-gradient(45deg, #000000 25%, rgba(0, 0, 0, 0.1) 50%, #000000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}
@media (min-width: 992px) {
  .cid-tFRr5NHxtf .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-tFRr5NHxtf img:hover {
  -webkit-box-shadow: 15px 15px 55px #000;
  opacity: 1;
  transition: all .7s;
  border-radius: 2rem;
  transform: rotate(0deg) scale(1.15);
  -webkit-mask-position: 120%;
  mask-position: 120%;
}
.cid-tNAm94z1Ll {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNAm94z1Ll .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNAm94z1Ll .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNAm94z1Ll .mbr-section-btn {
  margin-top: 20px;
}
.cid-tNNj7mAT5n {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
  text-shadow: 2px 2px 5px black;
}
.cid-tNNj7mAT5n .text-wrapper {
  position: relative;
  background: #000000;
  opacity: 0.8;
  width: 80%;
  padding: 50px 0;
  border-radius: 0 30px 30px 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-tNNj7mAT5n .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.cid-tNNj7mAT5n .text-wrapper .card-text,
.cid-tNNj7mAT5n .text-wrapper .card-btn,
.cid-tNNj7mAT5n .text-wrapper .card-title {
  margin: 1rem -25vw 0 50px;
}
@media (max-width: 767px) {
  .cid-tNNj7mAT5n .text-wrapper .card-text,
  .cid-tNNj7mAT5n .text-wrapper .card-btn,
  .cid-tNNj7mAT5n .text-wrapper .card-title {
    margin: 1rem -25vw 0 1rem;
  }
}
.cid-tNNj7mAT5n .content-wrapper {
  padding: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tNNj7mAT5n .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tNNj7mAT5n .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tNNj7mAT5n .content-wrapper .geometry__square,
  .cid-tNNj7mAT5n .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tNNj7mAT5n .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tNNj7mAT5n .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNNj7mAT5n .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tNNj7mAT5n .content-wrapper .text-wrapper {
    padding-left: 1rem;
    padding-right: 7rem;
  }
}
.cid-tNNj7mAT5n .geometry {
  position: absolute;
}
.cid-tNNj7mAT5n .geometry_top-right {
  top: -50px;
  right: 30%;
}
.cid-tNNj7mAT5n .geometry_bottom-left {
  bottom: 47px;
  left: 20%;
}
.cid-tNNj7mAT5n .geometry__square,
.cid-tNNj7mAT5n .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tNNj7mAT5n .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tNNj7mAT5n .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tNNj7mAT5n .geometry__circle {
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tNNj7mAT5n .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tNNj7mAT5n .image-wrapper {
  margin: 0 4rem 0 0;
}
.cid-tNNj7mAT5n .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tNNj7mAT5n .content {
    display: block;
  }
  .cid-tNNj7mAT5n .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tNNj7mAT5n .card-text,
  .cid-tNNj7mAT5n .card-title,
  .cid-tNNj7mAT5n .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tNNj7mAT5n .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tNNj7mAT5n .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tNNj7mAT5n .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tNNj7mAT5n .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tNNj7mAT5n .geometry {
    position: absolute;
  }
  .cid-tNNj7mAT5n .geometry__circle,
  .cid-tNNj7mAT5n .geometry__circle-bg,
  .cid-tNNj7mAT5n .geometry__square,
  .cid-tNNj7mAT5n .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tNNj7mAT5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNNj7mAT5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNNj7mAT5n .card-title {
  color: #ffffff;
}
.cid-tNNj7mAT5n .mbr-text,
.cid-tNNj7mAT5n .mbr-section-btn {
  color: #ffffff;
}
.cid-tNNj8GExvX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNNj8GExvX .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNNj8GExvX .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNNj8GExvX .mbr-section-btn {
  margin-top: 20px;
}
.cid-tNNj33oIgF {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fffdf7;
}
.cid-tNNj33oIgF .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 60%;
  padding: 50px 0;
  border-radius: 0 30px 30px 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-tNNj33oIgF .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.cid-tNNj33oIgF .text-wrapper .card-text,
.cid-tNNj33oIgF .text-wrapper .card-btn,
.cid-tNNj33oIgF .text-wrapper .card-title {
  margin: 1rem -25vw 0 50px;
}
@media (max-width: 767px) {
  .cid-tNNj33oIgF .text-wrapper .card-text,
  .cid-tNNj33oIgF .text-wrapper .card-btn,
  .cid-tNNj33oIgF .text-wrapper .card-title {
    margin: 1rem -25vw 0 1rem;
  }
}
.cid-tNNj33oIgF .content-wrapper {
  padding: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tNNj33oIgF .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tNNj33oIgF .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tNNj33oIgF .content-wrapper .geometry__square,
  .cid-tNNj33oIgF .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tNNj33oIgF .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tNNj33oIgF .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNNj33oIgF .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tNNj33oIgF .content-wrapper .text-wrapper {
    padding-left: 1rem;
    padding-right: 7rem;
  }
}
.cid-tNNj33oIgF .geometry {
  position: absolute;
}
.cid-tNNj33oIgF .geometry_top-right {
  top: -50px;
  right: 30%;
}
.cid-tNNj33oIgF .geometry_bottom-left {
  bottom: 47px;
  left: 20%;
}
.cid-tNNj33oIgF .geometry__square,
.cid-tNNj33oIgF .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tNNj33oIgF .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tNNj33oIgF .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tNNj33oIgF .geometry__circle {
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tNNj33oIgF .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tNNj33oIgF .image-wrapper {
  margin: 0 4rem 0 0;
}
.cid-tNNj33oIgF .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tNNj33oIgF .content {
    display: block;
  }
  .cid-tNNj33oIgF .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tNNj33oIgF .card-text,
  .cid-tNNj33oIgF .card-title,
  .cid-tNNj33oIgF .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tNNj33oIgF .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tNNj33oIgF .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tNNj33oIgF .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tNNj33oIgF .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tNNj33oIgF .geometry {
    position: absolute;
  }
  .cid-tNNj33oIgF .geometry__circle,
  .cid-tNNj33oIgF .geometry__circle-bg,
  .cid-tNNj33oIgF .geometry__square,
  .cid-tNNj33oIgF .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tNNj33oIgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNNj33oIgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNNj43ptAf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNNj43ptAf .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tNNj43ptAf .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tNNj43ptAf .mbr-section-btn {
  margin-top: 20px;
}
.cid-tNNj4R5WqR {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #041e45;
}
.cid-tNNj4R5WqR .geometry {
  position: absolute;
}
.cid-tNNj4R5WqR .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tNNj4R5WqR .geometry_left {
  left: -70px;
  bottom: 230px;
}
.cid-tNNj4R5WqR .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tNNj4R5WqR .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #009e9f;
  border-radius: 100px;
  margin: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .cid-tNNj4R5WqR .card-block {
    width: 100%;
  }
}
.cid-tNNj4R5WqR blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tNNj4R5WqR blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tNNj4R5WqR blockquote {
    padding: 2rem 1rem;
  }
  .cid-tNNj4R5WqR .geometry {
    position: absolute;
  }
  .cid-tNNj4R5WqR .geometry__circle,
  .cid-tNNj4R5WqR .geometry__circle-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tNNj4R5WqR .geometry_left {
    left: -47px;
    bottom: 240px;
  }
}
@media (min-width: 992px) {
  .cid-tNNj4R5WqR blockquote {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .cid-tNNj4R5WqR .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tNNj4R5WqR blockquote:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tNNj4R5WqR .mbr-text {
  text-align: left;
}
.cid-tNNj4R5WqR .mbr-section-title {
  text-align: left;
}
.cid-tFzujDUMYr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFzujDUMYr .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.1;
}
.cid-tFzujDUMYr .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-tFzujDUMYr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFzujDUMYr .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-tFzujDUMYr .container-data {
    margin-bottom: 2rem;
  }
}
.cid-tFzujDUMYr form.mbr-form {
  border-radius: 20px;
  background: #fcf5e6;
}
.cid-tFzujDUMYr form.mbr-form .form-control {
  box-shadow: none;
  border: solid 1px #c7c7c7 !important;
}
.cid-tFzujDUMYr form.mbr-form .form-control:focus {
  border: 1px solid #000 !important;
}
.cid-tFzujDUMYr form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tFzujDUMYr form.mbr-form .mbr-section-btn .btn {
  width: max-content;
  margin: auto;
  padding: 0 3rem;
}
@media (max-width: 991px) {
  .cid-tFzujDUMYr form.mbr-form .mbr-section-btn .btn {
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tFzujDUMYr form.mbr-form {
    padding: 4rem 3rem;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .cid-tFzujDUMYr form.mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-uTji2ASlNf {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uTji2ASlNf H3 {
  text-align: left;
}
.cid-uTji2ASlNf P {
  color: #303030;
}
.cid-tNNdhrbrFP.popup-builder {
  background-color: #ffffff;
}
.cid-tNNdhrbrFP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tNNdhrbrFP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tNNdhrbrFP .modal-content,
.cid-tNNdhrbrFP .modal-dialog {
  height: auto;
}
.cid-tNNdhrbrFP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tNNdhrbrFP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tNNdhrbrFP .form-wrapper .mbr-form .form-group,
  .cid-tNNdhrbrFP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tNNdhrbrFP .card-img {
  width: 50%;
  margin: auto;
  border-radius: 10;
}
.cid-tNNdhrbrFP .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-tNNdhrbrFP .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-tNNdhrbrFP .pt-0 {
  padding-top: 0 !important;
}
.cid-tNNdhrbrFP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tNNdhrbrFP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tNNdhrbrFP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tNNdhrbrFP .modal-open {
  overflow: hidden;
}
.cid-tNNdhrbrFP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tNNdhrbrFP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tNNdhrbrFP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tNNdhrbrFP .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-tNNdhrbrFP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tNNdhrbrFP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tNNdhrbrFP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tNNdhrbrFP .modal-content {
  background: #cebfaf;
  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-tNNdhrbrFP .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tNNdhrbrFP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tNNdhrbrFP .modal-backdrop.fade {
  opacity: 0;
}
.cid-tNNdhrbrFP .modal-backdrop.show {
  opacity: .5;
}
.cid-tNNdhrbrFP .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-tNNdhrbrFP .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tNNdhrbrFP .modal-header {
    padding: 1rem;
  }
}
.cid-tNNdhrbrFP .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tNNdhrbrFP .modal-header .close svg {
  fill: #000000;
}
.cid-tNNdhrbrFP .modal-header .close:hover {
  opacity: 1;
}
.cid-tNNdhrbrFP .modal-header .close:focus {
  outline: none;
}
.cid-tNNdhrbrFP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tNNdhrbrFP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tNNdhrbrFP .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNNdhrbrFP .modal-body {
    padding: 1rem;
  }
}
.cid-tNNdhrbrFP .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-tNNdhrbrFP .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNNdhrbrFP .modal-footer {
    padding: 1rem;
  }
}
.cid-tNNdhrbrFP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tNNdhrbrFP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tNNdhrbrFP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tNNdhrbrFP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tNNdhrbrFP .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tNNdhrbrFP .modal-lg,
  .cid-tNNdhrbrFP .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tNNdhrbrFP .modal-xl {
    max-width: 1140px;
  }
}
.cid-tNNdhrbrFP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tNNdhrbrFP .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-tNNdhrbrFP .form-group {
  margin-bottom: 1rem;
}
.cid-tNNdhrbrFP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tNNdhrbrFP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tNNdhrbrFP .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-tNNdhrbrFP .mbr-section-btn {
  margin: 0;
}
.cid-tNNdhrbrFP .mbr-section-btn .btn {
  margin: 0;
}
@-webkit-keyframes zoom {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tNNdhrbrFP .zoomin {
  -webkit-animation: zoom 3s 1;
}
.cid-tNNdhrbrFP H1 {
  text-align: center;
}
.cid-tNNdhrbrFP .hidden {
  visibility: visible !important;
}
.cid-tNNdi3H541.popup-builder {
  background-color: #ffffff;
}
.cid-tNNdi3H541.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tNNdi3H541.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tNNdi3H541 .modal-content,
.cid-tNNdi3H541 .modal-dialog {
  height: auto;
}
.cid-tNNdi3H541 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tNNdi3H541 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tNNdi3H541 .form-wrapper .mbr-form .form-group,
  .cid-tNNdi3H541 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tNNdi3H541 .card-img {
  width: 50%;
  margin: auto;
  border-radius: 10;
}
.cid-tNNdi3H541 .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-tNNdi3H541 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-tNNdi3H541 .pt-0 {
  padding-top: 0 !important;
}
.cid-tNNdi3H541 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tNNdi3H541 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tNNdi3H541 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tNNdi3H541 .modal-open {
  overflow: hidden;
}
.cid-tNNdi3H541 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tNNdi3H541 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tNNdi3H541 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tNNdi3H541 .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-tNNdi3H541 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tNNdi3H541 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tNNdi3H541 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tNNdi3H541 .modal-content {
  background: #cebfaf;
  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-tNNdi3H541 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tNNdi3H541 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  border-radius: 10;
  background-color: #000;
}
.cid-tNNdi3H541 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tNNdi3H541 .modal-backdrop.show {
  opacity: .5;
}
.cid-tNNdi3H541 .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-tNNdi3H541 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tNNdi3H541 .modal-header {
    padding: 1rem;
  }
}
.cid-tNNdi3H541 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tNNdi3H541 .modal-header .close svg {
  fill: #000000;
}
.cid-tNNdi3H541 .modal-header .close:hover {
  opacity: 1;
}
.cid-tNNdi3H541 .modal-header .close:focus {
  outline: none;
}
.cid-tNNdi3H541 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tNNdi3H541 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tNNdi3H541 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNNdi3H541 .modal-body {
    padding: 1rem;
  }
}
.cid-tNNdi3H541 .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-tNNdi3H541 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNNdi3H541 .modal-footer {
    padding: 1rem;
  }
}
.cid-tNNdi3H541 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tNNdi3H541 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tNNdi3H541 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tNNdi3H541 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tNNdi3H541 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tNNdi3H541 .modal-lg,
  .cid-tNNdi3H541 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tNNdi3H541 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tNNdi3H541 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tNNdi3H541 .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-tNNdi3H541 .form-group {
  margin-bottom: 1rem;
}
.cid-tNNdi3H541 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tNNdi3H541 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tNNdi3H541 .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-tNNdi3H541 .mbr-section-btn {
  margin: 0;
}
.cid-tNNdi3H541 .mbr-section-btn .btn {
  margin: 0;
}
@-webkit-keyframes zoom {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tNNdi3H541 .zoomin {
  -webkit-animation: zoom 3s 1;
}
.cid-tNNdi3H541 H1 {
  text-align: center;
}
.cid-tNNdi3H541 .hidden {
  visibility: visible !important;
}
.cid-tDG7A1s6mF.popup-builder {
  background-color: #ffffff;
}
.cid-tDG7A1s6mF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tDG7A1s6mF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tDG7A1s6mF .modal-content,
.cid-tDG7A1s6mF .modal-dialog {
  height: auto;
}
.cid-tDG7A1s6mF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tDG7A1s6mF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tDG7A1s6mF .form-wrapper .mbr-form .form-group,
  .cid-tDG7A1s6mF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tDG7A1s6mF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tDG7A1s6mF .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-tDG7A1s6mF .mbr-text {
  text-align: left;
}
.cid-tDG7A1s6mF .pt-0 {
  padding-top: 0 !important;
}
.cid-tDG7A1s6mF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tDG7A1s6mF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tDG7A1s6mF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tDG7A1s6mF .modal-open {
  overflow: hidden;
}
.cid-tDG7A1s6mF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tDG7A1s6mF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tDG7A1s6mF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tDG7A1s6mF .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-tDG7A1s6mF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tDG7A1s6mF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tDG7A1s6mF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tDG7A1s6mF .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-tDG7A1s6mF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tDG7A1s6mF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tDG7A1s6mF .modal-backdrop.fade {
  opacity: 0;
}
.cid-tDG7A1s6mF .modal-backdrop.show {
  opacity: .5;
}
.cid-tDG7A1s6mF .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-tDG7A1s6mF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tDG7A1s6mF .modal-header {
    padding: 1rem;
  }
}
.cid-tDG7A1s6mF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tDG7A1s6mF .modal-header .close svg {
  fill: #353535;
}
.cid-tDG7A1s6mF .modal-header .close:hover {
  opacity: 1;
}
.cid-tDG7A1s6mF .modal-header .close:focus {
  outline: none;
}
.cid-tDG7A1s6mF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tDG7A1s6mF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tDG7A1s6mF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDG7A1s6mF .modal-body {
    padding: 1rem;
  }
}
.cid-tDG7A1s6mF .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-tDG7A1s6mF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDG7A1s6mF .modal-footer {
    padding: 1rem;
  }
}
.cid-tDG7A1s6mF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tDG7A1s6mF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tDG7A1s6mF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tDG7A1s6mF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tDG7A1s6mF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tDG7A1s6mF .modal-lg,
  .cid-tDG7A1s6mF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tDG7A1s6mF .modal-xl {
    max-width: 1140px;
  }
}
.cid-tDG7A1s6mF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tDG7A1s6mF .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-tDG7A1s6mF .form-group {
  margin-bottom: 1rem;
}
.cid-tDG7A1s6mF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tDG7A1s6mF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tDG7A1s6mF .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-tDG7A1s6mF .mbr-section-btn {
  margin: 0;
}
.cid-tDG7A1s6mF .mbr-section-btn .btn {
  margin: 0;
}
.cid-tFQ2hMIIVy {
  z-index: 1000;
  width: 100%;
}
.cid-tFQ2hMIIVy nav.navbar {
  position: fixed;
}
.cid-tFQ2hMIIVy .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-tFQ2hMIIVy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFQ2hMIIVy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFQ2hMIIVy .dropdown-item:hover,
.cid-tFQ2hMIIVy .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tFQ2hMIIVy .dropdown-item:hover span {
  color: white;
}
.cid-tFQ2hMIIVy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFQ2hMIIVy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFQ2hMIIVy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFQ2hMIIVy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFQ2hMIIVy .nav-link {
  position: relative;
}
.cid-tFQ2hMIIVy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFQ2hMIIVy .container {
    flex-wrap: nowrap;
  }
}
.cid-tFQ2hMIIVy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFQ2hMIIVy .dropdown-menu,
.cid-tFQ2hMIIVy .navbar.opened {
  background: #ffffff !important;
}
.cid-tFQ2hMIIVy .nav-item:focus,
.cid-tFQ2hMIIVy .nav-link:focus {
  outline: none;
}
.cid-tFQ2hMIIVy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFQ2hMIIVy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFQ2hMIIVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFQ2hMIIVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFQ2hMIIVy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFQ2hMIIVy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFQ2hMIIVy .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: none;
  backdrop-filter: blur(5px);
  margin: auto;
  border-radius: 0em 0em 2em 2em;
  -webkit-box-shadow: 10px 10px 5px .7;
  box-shadow: 10px 8px 16px 0px #000000;
  width: 94vw;
  opacity: 0.9;
  background: #ffffff;
}
.cid-tFQ2hMIIVy .navbar.opened {
  transition: all .3s;
}
.cid-tFQ2hMIIVy .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tFQ2hMIIVy .navbar .navbar-logo img {
  width: auto;
}
.cid-tFQ2hMIIVy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFQ2hMIIVy .navbar.collapsed {
  justify-content: center;
}
.cid-tFQ2hMIIVy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFQ2hMIIVy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFQ2hMIIVy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tFQ2hMIIVy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFQ2hMIIVy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFQ2hMIIVy .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-tFQ2hMIIVy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFQ2hMIIVy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFQ2hMIIVy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFQ2hMIIVy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFQ2hMIIVy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFQ2hMIIVy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFQ2hMIIVy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFQ2hMIIVy .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-tFQ2hMIIVy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFQ2hMIIVy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFQ2hMIIVy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFQ2hMIIVy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFQ2hMIIVy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFQ2hMIIVy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFQ2hMIIVy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFQ2hMIIVy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFQ2hMIIVy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFQ2hMIIVy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFQ2hMIIVy .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-tFQ2hMIIVy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFQ2hMIIVy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFQ2hMIIVy .dropdown-item.active,
.cid-tFQ2hMIIVy .dropdown-item:active {
  background-color: transparent;
}
.cid-tFQ2hMIIVy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFQ2hMIIVy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFQ2hMIIVy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFQ2hMIIVy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFQ2hMIIVy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFQ2hMIIVy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFQ2hMIIVy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFQ2hMIIVy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFQ2hMIIVy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFQ2hMIIVy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFQ2hMIIVy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFQ2hMIIVy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFQ2hMIIVy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFQ2hMIIVy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFQ2hMIIVy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFQ2hMIIVy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFQ2hMIIVy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFQ2hMIIVy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFQ2hMIIVy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFQ2hMIIVy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFQ2hMIIVy .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-tFQ2hMIIVy .navbar {
    height: 70px;
  }
  .cid-tFQ2hMIIVy .navbar.opened {
    height: auto;
  }
  .cid-tFQ2hMIIVy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFRCwFziRs {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #640000;
  display: flex;
  align-items: center;
}
.cid-tFRCwFziRs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFRCwFziRs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFRCwFziRs .row {
  justify-content: flex-start;
}
.cid-tFRCwFziRs .mbr-text {
  color: #1F1D1A;
  margin-bottom: 30px;
}
.cid-tFRCwFziRs .AutoInvoicing {
  background-color: #b0ffbf;
}
.cid-tFRCwFziRs .ManualInvoicing {
  background-color: #ffb0b0;
}
.cid-tFRCwFziRs body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f2f2f2;
}
.cid-tFRCwFziRs .container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.cid-tFRCwFziRs h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
}
.cid-tFRCwFziRs table {
  width: 100%;
  border-collapse: collapse;
}
.cid-tFRCwFziRs th,
.cid-tFRCwFziRs td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.cid-tFRCwFziRs th {
  background-color: #f2f2f2;
}
.cid-tFRCwFziRs form {
  margin-bottom: 20px;
}
.cid-tFRCwFziRs .remove-link {
  color: red;
  cursor: pointer;
}
.cid-tFRCwFziRs .past-due {
  color: red;
}
.cid-tFRCwFziRs #total {
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
}
.cid-tFRCwFziRs .form-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cid-tFRCwFziRs .form-row label {
  flex: 0 0 100px;
  margin-right: 10px;
  font-weight: bold;
}
.cid-tFRCwFziRs .form-row input,
.cid-tFRCwFziRs .form-row textarea,
.cid-tFRCwFziRs .form-row select {
  flex: 1;
}
.cid-tFRCwFziRs .form-row textarea {
  height: 80px;
}
.cid-tFRCwFziRs .form-row button {
  flex: 0 0 auto;
}
.cid-tFRCwFziRs .mbr-text,
.cid-tFRCwFziRs .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tFQ2rC46A1 {
  z-index: 1000;
  width: 100%;
}
.cid-tFQ2rC46A1 nav.navbar {
  position: fixed;
}
.cid-tFQ2rC46A1 .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-tFQ2rC46A1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFQ2rC46A1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFQ2rC46A1 .dropdown-item:hover,
.cid-tFQ2rC46A1 .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tFQ2rC46A1 .dropdown-item:hover span {
  color: white;
}
.cid-tFQ2rC46A1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFQ2rC46A1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFQ2rC46A1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFQ2rC46A1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFQ2rC46A1 .nav-link {
  position: relative;
}
.cid-tFQ2rC46A1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFQ2rC46A1 .container {
    flex-wrap: nowrap;
  }
}
.cid-tFQ2rC46A1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFQ2rC46A1 .dropdown-menu,
.cid-tFQ2rC46A1 .navbar.opened {
  background: #ffffff !important;
}
.cid-tFQ2rC46A1 .nav-item:focus,
.cid-tFQ2rC46A1 .nav-link:focus {
  outline: none;
}
.cid-tFQ2rC46A1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFQ2rC46A1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFQ2rC46A1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFQ2rC46A1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFQ2rC46A1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFQ2rC46A1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFQ2rC46A1 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: none;
  backdrop-filter: blur(5px);
  margin: auto;
  border-radius: 0em 0em 2em 2em;
  -webkit-box-shadow: 10px 10px 5px .7;
  box-shadow: 10px 8px 16px 0px #000000;
  width: 94vw;
  opacity: 0.9;
  background: #ffffff;
}
.cid-tFQ2rC46A1 .navbar.opened {
  transition: all .3s;
}
.cid-tFQ2rC46A1 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tFQ2rC46A1 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFQ2rC46A1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFQ2rC46A1 .navbar.collapsed {
  justify-content: center;
}
.cid-tFQ2rC46A1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFQ2rC46A1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFQ2rC46A1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tFQ2rC46A1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFQ2rC46A1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFQ2rC46A1 .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-tFQ2rC46A1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFQ2rC46A1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFQ2rC46A1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFQ2rC46A1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFQ2rC46A1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFQ2rC46A1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFQ2rC46A1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFQ2rC46A1 .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-tFQ2rC46A1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFQ2rC46A1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFQ2rC46A1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFQ2rC46A1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFQ2rC46A1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFQ2rC46A1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFQ2rC46A1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFQ2rC46A1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFQ2rC46A1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFQ2rC46A1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFQ2rC46A1 .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-tFQ2rC46A1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFQ2rC46A1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFQ2rC46A1 .dropdown-item.active,
.cid-tFQ2rC46A1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFQ2rC46A1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFQ2rC46A1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFQ2rC46A1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFQ2rC46A1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFQ2rC46A1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFQ2rC46A1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFQ2rC46A1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFQ2rC46A1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFQ2rC46A1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFQ2rC46A1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFQ2rC46A1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFQ2rC46A1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFQ2rC46A1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFQ2rC46A1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFQ2rC46A1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFQ2rC46A1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFQ2rC46A1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFQ2rC46A1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFQ2rC46A1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFQ2rC46A1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFQ2rC46A1 .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-tFQ2rC46A1 .navbar {
    height: 70px;
  }
  .cid-tFQ2rC46A1 .navbar.opened {
    height: auto;
  }
  .cid-tFQ2rC46A1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFRFrZHkuR {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
  text-shadow: 2px 2px 5px black;
}
.cid-tFRFrZHkuR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFRFrZHkuR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFRFYFZyUK {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  text-shadow: 2px 2px 5px black;
}
.cid-tFRFYFZyUK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFRFYFZyUK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFRFYFZyUK .container-fluid {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cid-tFRFYFZyUK .row {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cid-tFRFYFZyUK .col-text {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 32px !important;
  background-image: url("../../../assets/images/mbr-1920x997.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .cid-tFRFYFZyUK .col-text {
    padding: 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tFRFYFZyUK .col-text {
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .cid-tFRFYFZyUK .col-text {
    padding: 12px !important;
  }
}
.cid-tFRFYFZyUK .col-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
}
.cid-tFRFYFZyUK .mbr-section-title {
  position: relative;
  color: #e3ebf3;
}
.cid-tFRFYFZyUK .subtitle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 32px;
}
.cid-tFRFYFZyUK .iconfont-wrapper {
  border: 2px solid #1a1e21;
  border-radius: 50%;
  background: #1a1e21;
  transition: .3s all;
}
.cid-tFRFYFZyUK .iconfont-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 20px;
  aspect-ratio: 1;
  font-size: 2rem;
  color: #e3ebf3;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .cid-tFRFYFZyUK .iconfont-wrapper .mbr-iconfont {
    min-width: 66px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tFRFYFZyUK .iconfont-wrapper .mbr-iconfont {
    min-width: 56px;
    padding: 5px;
  }
}
@media (min-width: 992px) {
  .cid-tFRFYFZyUK .iconfont-wrapper:hover {
    border-color: #e3ebf3;
    background: transparent;
  }
}
.cid-tFRFYFZyUK .mbr-section-subtitle {
  color: #e3ebf3;
}
.cid-tFRFYFZyUK .mbr-text {
  position: relative;
  color: #e3ebf3;
}
.cid-tFRFYFZyUK .mbr-section-btn {
  position: relative;
}
.cid-tFRGN4lRpc {
  background-color: #640000;
  display: flex;
  align-items: center;
}
.cid-tFRGN4lRpc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFRGN4lRpc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFRGN4lRpc .row {
  justify-content: flex-start;
}
.cid-tFRGN4lRpc .mbr-text {
  color: #1F1D1A;
  margin-bottom: 30px;
}
.cid-tFRGN4lRpc .AutoInvoicing {
  background-color: #b0ffbf;
}
.cid-tFRGN4lRpc .ManualInvoicing {
  background-color: #ffb0b0;
}
.cid-tFRGN4lRpc body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f2f2f2;
}
.cid-tFRGN4lRpc .container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.cid-tFRGN4lRpc h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
}
.cid-tFRGN4lRpc table {
  width: 100%;
  border-collapse: collapse;
}
.cid-tFRGN4lRpc th,
.cid-tFRGN4lRpc td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.cid-tFRGN4lRpc th {
  background-color: #f2f2f2;
}
.cid-tFRGN4lRpc form {
  margin-bottom: 20px;
}
.cid-tFRGN4lRpc .remove-link {
  color: red;
  cursor: pointer;
}
.cid-tFRGN4lRpc .past-due {
  color: red;
}
.cid-tFRGN4lRpc #total {
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
}
.cid-tFRGN4lRpc .form-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cid-tFRGN4lRpc .form-row label {
  flex: 0 0 100px;
  margin-right: 10px;
  font-weight: bold;
}
.cid-tFRGN4lRpc .form-row input,
.cid-tFRGN4lRpc .form-row textarea,
.cid-tFRGN4lRpc .form-row select {
  flex: 1;
}
.cid-tFRGN4lRpc .form-row textarea {
  height: 80px;
}
.cid-tFRGN4lRpc .form-row button {
  flex: 0 0 auto;
}
.cid-tFRGN4lRpc .mbr-text,
.cid-tFRGN4lRpc .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tFQ2waLP1W {
  z-index: 1000;
  width: 100%;
}
.cid-tFQ2waLP1W nav.navbar {
  position: fixed;
}
.cid-tFQ2waLP1W .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-tFQ2waLP1W .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFQ2waLP1W .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFQ2waLP1W .dropdown-item:hover,
.cid-tFQ2waLP1W .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tFQ2waLP1W .dropdown-item:hover span {
  color: white;
}
.cid-tFQ2waLP1W .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFQ2waLP1W .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFQ2waLP1W .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFQ2waLP1W .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFQ2waLP1W .nav-link {
  position: relative;
}
.cid-tFQ2waLP1W .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tFQ2waLP1W .container {
    flex-wrap: nowrap;
  }
}
.cid-tFQ2waLP1W .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFQ2waLP1W .dropdown-menu,
.cid-tFQ2waLP1W .navbar.opened {
  background: #ffffff !important;
}
.cid-tFQ2waLP1W .nav-item:focus,
.cid-tFQ2waLP1W .nav-link:focus {
  outline: none;
}
.cid-tFQ2waLP1W .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFQ2waLP1W .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFQ2waLP1W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFQ2waLP1W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFQ2waLP1W .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFQ2waLP1W .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFQ2waLP1W .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: none;
  backdrop-filter: blur(5px);
  margin: auto;
  border-radius: 0em 0em 2em 2em;
  -webkit-box-shadow: 10px 10px 5px .7;
  box-shadow: 10px 8px 16px 0px #000000;
  width: 94vw;
  opacity: 0.9;
  background: #ffffff;
}
.cid-tFQ2waLP1W .navbar.opened {
  transition: all .3s;
}
.cid-tFQ2waLP1W .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tFQ2waLP1W .navbar .navbar-logo img {
  width: auto;
}
.cid-tFQ2waLP1W .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFQ2waLP1W .navbar.collapsed {
  justify-content: center;
}
.cid-tFQ2waLP1W .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFQ2waLP1W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFQ2waLP1W .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tFQ2waLP1W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFQ2waLP1W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFQ2waLP1W .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-tFQ2waLP1W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFQ2waLP1W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFQ2waLP1W .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFQ2waLP1W .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFQ2waLP1W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFQ2waLP1W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFQ2waLP1W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFQ2waLP1W .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-tFQ2waLP1W .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFQ2waLP1W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFQ2waLP1W .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFQ2waLP1W .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFQ2waLP1W .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFQ2waLP1W .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFQ2waLP1W .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFQ2waLP1W .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFQ2waLP1W .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFQ2waLP1W .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFQ2waLP1W .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-tFQ2waLP1W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFQ2waLP1W .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFQ2waLP1W .dropdown-item.active,
.cid-tFQ2waLP1W .dropdown-item:active {
  background-color: transparent;
}
.cid-tFQ2waLP1W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFQ2waLP1W .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFQ2waLP1W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFQ2waLP1W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFQ2waLP1W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFQ2waLP1W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFQ2waLP1W ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFQ2waLP1W .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFQ2waLP1W button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFQ2waLP1W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFQ2waLP1W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFQ2waLP1W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFQ2waLP1W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFQ2waLP1W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFQ2waLP1W nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFQ2waLP1W nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFQ2waLP1W nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFQ2waLP1W nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFQ2waLP1W .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFQ2waLP1W a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFQ2waLP1W .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-tFQ2waLP1W .navbar {
    height: 70px;
  }
  .cid-tFQ2waLP1W .navbar.opened {
    height: auto;
  }
  .cid-tFQ2waLP1W .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFRHEpEQQI {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  text-shadow: 2px 2px 5px black;
}
.cid-tFRHEpEQQI .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tFRHEpEQQI .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-tFRHEpEQQI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFRHEpEQQI .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-tFRHEpEQQI .container-data {
    margin-bottom: 2rem;
  }
}
.cid-tFRHEpEQQI form.mbr-form {
  text-shadow: 0px 0px 0px black;
  border-radius: 20px;
  background: #fcf5e6;
}
.cid-tFRHEpEQQI form.mbr-form .form-control {
  box-shadow: none;
  border: solid 1px #c7c7c7 !important;
}
.cid-tFRHEpEQQI form.mbr-form .form-control:focus {
  border: 1px solid #000 !important;
}
.cid-tFRHEpEQQI form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tFRHEpEQQI form.mbr-form .mbr-section-btn .btn {
  width: max-content;
  margin: auto;
  padding: 0 3rem;
}
@media (max-width: 991px) {
  .cid-tFRHEpEQQI form.mbr-form .mbr-section-btn .btn {
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tFRHEpEQQI form.mbr-form {
    padding: 4rem 3rem;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .cid-tFRHEpEQQI form.mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-tFRHEpEQQI .mbr-text {
  color: #ffffff;
}
.cid-tFRHEpEQQI .mbr-section-sub-subtitle {
  color: #ffffff;
}
