.btn {
  border-width: 2px;
}
body {
  font-family: Schibsted Grotesk;
}
.display-1 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #b79b6c !important;
}
.bg-success {
  background-color: #bdcdc6 !important;
}
.bg-info {
  background-color: #2c2d87 !important;
}
.bg-warning {
  background-color: #24262b !important;
}
.bg-danger {
  background-color: #33363b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b79b6c !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #896f43 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #896f43 !important;
  border-color: #896f43 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e4eedb !important;
  border: none  !important;
  color: #638941 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b8d2a0 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #638941 !important;
  background-color: #b8d2a0 !important;
  border-color: #b8d2a0 !important;
}
.btn-info,
.btn-info:active {
  background-color: #2c2d87 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #171746 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #171746 !important;
  border-color: #171746 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bdcdc6 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #8ca89b !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #8ca89b !important;
  border-color: #8ca89b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #24262b !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #33363b !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0b0b0c !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0b0b0c !important;
  border-color: #0b0b0c !important;
}
.btn-white,
.btn-white:active {
  background-color: #efefef !important;
  border: none  !important;
  color: #707070 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: #c4c4c4 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #707070 !important;
  background-color: #c4c4c4 !important;
  border-color: #c4c4c4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #010101 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #b79b6c;
  color: #b79b6c;
  border-radius: 0 !important;
}
.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #896f43 !important;
  background-color: transparent!important;
  border-color: #896f43 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b79b6c !important;
  border-color: #b79b6c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #e4eedb;
  color: #e4eedb;
  border-radius: 0 !important;
}
.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b8d2a0 !important;
  background-color: transparent!important;
  border-color: #b8d2a0 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #638941 !important;
  background-color: #e4eedb !important;
  border-color: #e4eedb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #2c2d87;
  color: #2c2d87;
  border-radius: 0 !important;
}
.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #171746 !important;
  background-color: transparent!important;
  border-color: #171746 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #2c2d87 !important;
  border-color: #2c2d87 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #bdcdc6;
  color: #bdcdc6;
  border-radius: 0 !important;
}
.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #8ca89b !important;
  background-color: transparent!important;
  border-color: #8ca89b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bdcdc6 !important;
  border-color: #bdcdc6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #24262b;
  color: #24262b;
  border-radius: 0 !important;
}
.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #24262b !important;
  border-color: #24262b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #33363b;
  color: #33363b;
  border-radius: 0 !important;
}
.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0b0b0c !important;
  background-color: transparent!important;
  border-color: #0b0b0c !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #33363b !important;
  border-color: #33363b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #010101;
  color: #010101;
  border-radius: 0 !important;
}
.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #010101 !important;
  border-color: #010101 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #efefef;
  color: #efefef;
  border-radius: 0 !important;
}
.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #c4c4c4 !important;
  background-color: transparent!important;
  border-color: #c4c4c4 !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.text-primary {
  color: #b79b6c !important;
}
.text-secondary {
  color: #e4eedb !important;
}
.text-success {
  color: #bdcdc6 !important;
}
.text-info {
  color: #2c2d87 !important;
}
.text-warning {
  color: #24262b !important;
}
.text-danger {
  color: #33363b !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-black {
  color: #24262b !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #7f673e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b0cd96 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #83a194 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #13133a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #040404 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #bcbcbc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #b79b6c;
}
.nav-tabs .nav-link:not(.active) {
  color: #24262b;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #2c2d87;
}
.alert-warning {
  background-color: #24262b;
}
.alert-danger {
  background-color: #33363b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b79b6c;
  border-color: #b79b6c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #b79b6c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e1d5c2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #6667cd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d7d9dd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a4a8b0;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #b79b6c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #b79b6c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b79b6c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #b79b6c;
}
.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: #b79b6c;
  border-bottom-color: #b79b6c;
}
.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: #000000 !important;
  background-color: #b79b6c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e4eedb !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='%23b79b6c' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  position: relative;
  max-width: 1380px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
.container-fluid {
  max-width: 100%;
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 1399px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.row {
  margin-left: -16px;
  margin-right: -16px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 16px;
  padding-right: 16px;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 52px;
  padding: 10px 30px;
  border-radius: 3px;
  transition: all .3s;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: transform .3s;
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: translateX(0.5rem);
}
.mbr-section-btn .btn-danger,
.mbr-section-btn .btn-black {
  color: #FFFFFF;
}
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn .btn-black:hover {
  color: #FFFFFF;
  background-color: #b79b6c !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover {
  color: #b79b6c !important;
  border-color: #b79b6c !important;
}
.cid-uTbh5VRdFC {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uTbh5VRdFC nav.navbar {
  position: fixed;
}
.cid-uTbh5VRdFC .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-uTbh5VRdFC .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uTbh5VRdFC .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uTbh5VRdFC .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uTbh5VRdFC .dropdown-item:hover,
.cid-uTbh5VRdFC .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uTbh5VRdFC .dropdown-item:hover span {
  color: white;
}
.cid-uTbh5VRdFC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTbh5VRdFC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTbh5VRdFC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTbh5VRdFC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTbh5VRdFC .nav-link {
  position: relative;
}
.cid-uTbh5VRdFC .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uTbh5VRdFC .container {
    flex-wrap: nowrap;
  }
}
.cid-uTbh5VRdFC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTbh5VRdFC .navbar-nav {
  padding: 5px !important;
}
.cid-uTbh5VRdFC .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uTbh5VRdFC .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uTbh5VRdFC .dropdown-menu,
.cid-uTbh5VRdFC .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uTbh5VRdFC .nav-item:focus,
.cid-uTbh5VRdFC .nav-link:focus {
  outline: none;
}
.cid-uTbh5VRdFC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTbh5VRdFC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTbh5VRdFC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTbh5VRdFC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTbh5VRdFC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTbh5VRdFC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTbh5VRdFC .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uTbh5VRdFC .navbar.opened {
  transition: all 0.3s;
}
.cid-uTbh5VRdFC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uTbh5VRdFC .navbar .navbar-logo img {
  width: auto;
}
.cid-uTbh5VRdFC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTbh5VRdFC .navbar.collapsed {
  justify-content: center;
}
.cid-uTbh5VRdFC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTbh5VRdFC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTbh5VRdFC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uTbh5VRdFC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTbh5VRdFC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTbh5VRdFC .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-uTbh5VRdFC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTbh5VRdFC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTbh5VRdFC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTbh5VRdFC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTbh5VRdFC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTbh5VRdFC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTbh5VRdFC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTbh5VRdFC .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-uTbh5VRdFC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTbh5VRdFC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTbh5VRdFC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTbh5VRdFC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTbh5VRdFC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTbh5VRdFC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uTbh5VRdFC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uTbh5VRdFC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTbh5VRdFC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uTbh5VRdFC .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTbh5VRdFC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTbh5VRdFC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTbh5VRdFC .dropdown-item.active,
.cid-uTbh5VRdFC .dropdown-item:active {
  background-color: transparent;
}
.cid-uTbh5VRdFC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTbh5VRdFC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTbh5VRdFC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTbh5VRdFC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uTbh5VRdFC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTbh5VRdFC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTbh5VRdFC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTbh5VRdFC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTbh5VRdFC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTbh5VRdFC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uTbh5VRdFC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTbh5VRdFC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTbh5VRdFC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTbh5VRdFC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTbh5VRdFC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTbh5VRdFC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTbh5VRdFC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTbh5VRdFC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTbh5VRdFC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTbh5VRdFC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTbh5VRdFC .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-uTbh5VRdFC .navbar {
    height: 70px;
  }
  .cid-uTbh5VRdFC .navbar.opened {
    height: auto;
  }
  .cid-uTbh5VRdFC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTbh5VRdFC .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uTbh5VRdFC .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uTbh5VRdFC .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uTbh5VRdFC .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uTbh5VRdFC .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uTbh5VRdFC .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uTbh5VRdFC .container {
    overflow: hidden;
  }
  .cid-uTbh5VRdFC .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uTbh5VRdFC .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uTbh5VRdFC .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uTbh5VRdFC .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uTbh5VRdFC .navbar-nav {
    padding: 0 !important;
  }
  .cid-uTbh5VRdFC .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uTbh5VRdFC .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uTbh5VRdFC .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uTbh5VRdFC .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uTbh5VRdFC .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uTbh5VRdFC .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uTbh5VRdFC .container {
    padding: 25px 15px !important;
  }
  .cid-uTbh5VRdFC .container-head {
    padding: 10px !important;
  }
  .cid-uTbh5VRdFC .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uTbh5VRdFC .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uTbh5VRdFC .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-tDSzcKy6aT {
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tDSzcKy6aT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDSzcKy6aT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tDSzcKy6aT .col-content {
    text-align: center;
  }
}
.cid-tDSzcKy6aT .label-container {
  margin-bottom: 16px;
}
.cid-tDSzcKy6aT .label-text {
  color: #ffffff;
}
.cid-tDSzcKy6aT .label-text-2 {
  color: #ffffff;
}
.cid-tDSzcKy6aT .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tDSzcKy6aT .text-container {
  margin-top: 24px;
}
.cid-tDSzcKy6aT .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tDSzcKy6aT .mbr-text {
  color: #b79b6c;
}
.cid-tDSzcKy6aT .mbr-section-btn {
  margin-top: 28px;
}
.cid-tDSzcKy6aT .mbr-text,
.cid-tDSzcKy6aT .mbr-section-btn {
  color: #ffffff;
}
.cid-tDSzIIcSpW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tDSzIIcSpW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDSzIIcSpW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDSzIIcSpW .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tDSzIIcSpW .mbr-section-title {
  color: #24262b;
}
.cid-tDSzIIcSpW .mbr-section-subtitle {
  color: #24262b;
}
.cid-tDSzIIcSpW .cards-row {
  align-items: stretch;
  row-gap: 32px;
}
.cid-tDSzIIcSpW .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  border-radius: 0;
  min-height: 380px;
}
.cid-tDSzIIcSpW .card-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2rem;
  transition: .3s all;
  background-size: cover;
  background-position: center;
}
.cid-tDSzIIcSpW .item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tDSzIIcSpW .item-content {
    text-align: center;
  }
}
.cid-tDSzIIcSpW .card-title-1 {
  color: #ffffff;
}
.cid-tDSzIIcSpW .card-title-2 {
  color: #ffffff;
}
.cid-tDSzIIcSpW .card-subtitle-1 {
  margin-top: 16px;
  color: #ffffff;
}
.cid-tDSzIIcSpW .card-subtitle-2 {
  margin-top: 16px;
  color: #ffffff;
}
.cid-tDSzIIcSpW .card-text-1 {
  color: #24262b;
}
.cid-tDSzIIcSpW .card-text-2 {
  color: #24262b;
}
.cid-tDSzIIcSpW .mbr-section-btn {
  margin-top: auto;
  padding-top: 14px;
}
.cid-tDSzIIcSpW .card-1 .card-wrap {
  background-image: url("../../../assets/images/2149159146-1000x667.webp");
}
.cid-tDSzIIcSpW .card-2 .card-wrap {
  background-image: url("../../../assets/images/mbr-1920x1282.webp");
}
.cid-tDSzIIcSpW .card-text-1,
.cid-tDSzIIcSpW .mbr-section-btn-1 {
  color: #ffffff;
}
.cid-tDSzIIcSpW .card-text-2,
.cid-tDSzIIcSpW .mbr-section-btn-2 {
  color: #ffffff;
}
.cid-uUuEoMHSdk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uUuEoMHSdk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUuEoMHSdk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUuEoMHSdk .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uUuEoMHSdk .mbr-section-title {
  color: #24262b;
}
.cid-uUuEoMHSdk .mbr-section-subtitle {
  color: #24262b;
}
.cid-uUuEoMHSdk .cards-row {
  align-items: stretch;
  row-gap: 32px;
}
.cid-uUuEoMHSdk .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  border-radius: 0;
  min-height: 380px;
}
.cid-uUuEoMHSdk .card-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2rem;
  transition: .3s all;
  background-size: cover;
  background-position: center;
}
.cid-uUuEoMHSdk .item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uUuEoMHSdk .item-content {
    text-align: center;
  }
}
.cid-uUuEoMHSdk .card-title-1 {
  color: #ffffff;
}
.cid-uUuEoMHSdk .card-title-2 {
  color: #ffffff;
}
.cid-uUuEoMHSdk .card-subtitle-1 {
  margin-top: 16px;
  color: #ffffff;
}
.cid-uUuEoMHSdk .card-subtitle-2 {
  margin-top: 16px;
  color: #ffffff;
}
.cid-uUuEoMHSdk .card-text-1 {
  color: #24262b;
}
.cid-uUuEoMHSdk .card-text-2 {
  color: #24262b;
}
.cid-uUuEoMHSdk .mbr-section-btn {
  margin-top: auto;
  padding-top: 14px;
}
.cid-uUuEoMHSdk .card-1 .card-wrap {
  background-image: url("../../../assets/images/mujer-joven-teniendo-un-tratamiento-facial-2000x1333.webp");
}
.cid-uUuEoMHSdk .card-2 .card-wrap {
  background-image: url("../../../assets/images/mbr-6-1920x1280.webp");
}
.cid-uUuEoMHSdk .card-text-1,
.cid-uUuEoMHSdk .mbr-section-btn-1 {
  color: #ffffff;
}
.cid-uUuEoMHSdk .card-text-2,
.cid-uUuEoMHSdk .mbr-section-btn-2 {
  color: #ffffff;
}
.cid-tDSAJ0Tlem {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #90afa1;
}
.cid-tDSAJ0Tlem .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDSAJ0Tlem .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDSAJ0Tlem .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tDSAJ0Tlem .mbr-section-title {
  color: #24262b;
}
.cid-tDSAJ0Tlem .mbr-section-subtitle {
  color: #24262b;
}
.cid-tDSAJ0Tlem .cards-row {
  align-items: stretch;
  row-gap: 32px;
}
.cid-tDSAJ0Tlem .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tDSAJ0Tlem .card-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tDSAJ0Tlem .card-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tDSAJ0Tlem .card-1 .card-wrap {
  background: #ffffff;
}
.cid-tDSAJ0Tlem .card-1 .item-content {
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tDSAJ0Tlem .card-1 .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-tDSAJ0Tlem .card-1 .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-tDSAJ0Tlem .card-1 .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-tDSAJ0Tlem .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 48px 40px;
}
@media (max-width: 1199px) {
  .cid-tDSAJ0Tlem .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tDSAJ0Tlem .item-content {
    text-align: center;
  }
}
.cid-tDSAJ0Tlem .card-title-1 {
  margin-bottom: 16px;
  color: #767676;
}
.cid-tDSAJ0Tlem .card-text-1 {
  color: #24262b;
  transition: 0.3s all;
}
.cid-tDSAJ0Tlem .card-text-1:hover {
  color: #b79b6c !important;
}
.cid-tDSAJ0Tlem .mbr-section-btn {
  margin-top: 20px;
}
.cid-tDSAJ0Tlem .card-2 .item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background: #e7d8d6;
}
.cid-tDSAJ0Tlem .card-2 .item-text {
  align-self: center;
  width: 50%;
  flex-shrink: 0;
  padding: 48px 40px;
}
@media (max-width: 1199px) {
  .cid-tDSAJ0Tlem .card-2 .item-text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tDSAJ0Tlem .card-2 .item-text {
    text-align: center;
  }
}
.cid-tDSAJ0Tlem .card-label-2 {
  margin-bottom: 16px;
  color: #767676;
  text-align: center;
}
.cid-tDSAJ0Tlem .card-title-2 {
  color: #24262b;
}
.cid-tDSAJ0Tlem .card-subtitle-2 {
  color: #24262b;
}
.cid-tDSAJ0Tlem .card-text-2 {
  color: #24262b;
  margin-top: 16px;
}
.cid-tDSAJ0Tlem .card-text-1,
.cid-tDSAJ0Tlem .mbr-section-btn-1 {
  color: #2c2d87;
}
.cid-uUe1ZKWgOQ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUe1ZKWgOQ .mbr-section-head {
  width: 100%;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .cid-uUe1ZKWgOQ .mbr-section-head {
    margin-bottom: 3em;
  }
}
.cid-uUe1ZKWgOQ .mbr-section-title {
  margin-bottom: 4px;
  color: #112b6d;
  opacity: 0.4;
  text-align: center;
}
.cid-uUe1ZKWgOQ .mbr-section-subtitle {
  margin-bottom: 0;
  color: #272727;
  text-align: center;
}
.cid-uUe1ZKWgOQ .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 767px) {
  .cid-uUe1ZKWgOQ .item-row {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uUe1ZKWgOQ .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uUe1ZKWgOQ .item {
  padding: 0;
}
.cid-uUe1ZKWgOQ .item:nth-child(2n) .item-wrapper {
  padding-top: 5em;
}
@media (max-width: 767px) {
  .cid-uUe1ZKWgOQ .item:nth-child(2n) .item-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .cid-uUe1ZKWgOQ .item:nth-child(2n) .item-wrapper {
    padding-top: 0;
  }
}
.cid-uUe1ZKWgOQ .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-uUe1ZKWgOQ .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  border-radius: 35%;
  overflow: hidden;
  aspect-ratio: 0.88;
  margin: 0 auto;
}
.cid-uUe1ZKWgOQ .item-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-uUe1ZKWgOQ .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin-top: 1rem;
}
.cid-uUe1ZKWgOQ .item-title {
  color: #272727;
  margin-bottom: 4px;
}
.cid-uUe1ZKWgOQ .mbr-text {
  color: #272727;
  opacity: 0.4;
}
.cid-uUe4iQ3Z3n {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uUe4iQ3Z3n .mbr-section-head {
  width: 100%;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .cid-uUe4iQ3Z3n .mbr-section-head {
    margin-bottom: 3em;
  }
}
.cid-uUe4iQ3Z3n .mbr-section-title {
  margin-bottom: 4px;
  color: #272727;
  opacity: 0.4;
}
.cid-uUe4iQ3Z3n .mbr-section-subtitle {
  margin-bottom: 0;
  color: #272727;
}
.cid-uUe4iQ3Z3n .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 767px) {
  .cid-uUe4iQ3Z3n .item-row {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uUe4iQ3Z3n .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uUe4iQ3Z3n .item {
  padding: 0;
}
.cid-uUe4iQ3Z3n .item:nth-child(2n) .item-wrapper {
  padding-top: 5em;
}
@media (max-width: 767px) {
  .cid-uUe4iQ3Z3n .item:nth-child(2n) .item-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .cid-uUe4iQ3Z3n .item:nth-child(2n) .item-wrapper {
    padding-top: 0;
  }
}
.cid-uUe4iQ3Z3n .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-uUe4iQ3Z3n .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  border-radius: 35%;
  overflow: hidden;
  aspect-ratio: 0.88;
  margin: 0 auto;
}
.cid-uUe4iQ3Z3n .item-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-uUe4iQ3Z3n .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin-top: 1rem;
}
.cid-uUe4iQ3Z3n .item-title {
  color: #272727;
  margin-bottom: 4px;
}
.cid-uUe4iQ3Z3n .mbr-text {
  color: #272727;
  opacity: 0.4;
}
.cid-uUe5QvEY1s {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUe5QvEY1s .mbr-section-head {
  width: 100%;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .cid-uUe5QvEY1s .mbr-section-head {
    margin-bottom: 3em;
  }
}
.cid-uUe5QvEY1s .mbr-section-title {
  margin-bottom: 4px;
  color: #272727;
  opacity: 0.4;
}
.cid-uUe5QvEY1s .mbr-section-subtitle {
  margin-bottom: 0;
  color: #272727;
}
.cid-uUe5QvEY1s .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 767px) {
  .cid-uUe5QvEY1s .item-row {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uUe5QvEY1s .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uUe5QvEY1s .item {
  padding: 0;
}
.cid-uUe5QvEY1s .item:nth-child(2n) .item-wrapper {
  padding-top: 5em;
}
@media (max-width: 767px) {
  .cid-uUe5QvEY1s .item:nth-child(2n) .item-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .cid-uUe5QvEY1s .item:nth-child(2n) .item-wrapper {
    padding-top: 0;
  }
}
.cid-uUe5QvEY1s .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-uUe5QvEY1s .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  border-radius: 35%;
  overflow: hidden;
  aspect-ratio: 0.88;
  margin: 0 auto;
}
.cid-uUe5QvEY1s .item-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-uUe5QvEY1s .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin-top: 1rem;
}
.cid-uUe5QvEY1s .item-title {
  color: #272727;
  margin-bottom: 4px;
}
.cid-uUe5QvEY1s .mbr-text {
  color: #272727;
  opacity: 0.4;
}
.cid-uUUbohgWY0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUUbohgWY0 .mbr-section-head {
  width: 100%;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .cid-uUUbohgWY0 .mbr-section-head {
    margin-bottom: 3em;
  }
}
.cid-uUUbohgWY0 .mbr-section-title {
  margin-bottom: 4px;
  color: #272727;
  opacity: 0.4;
}
.cid-uUUbohgWY0 .mbr-section-subtitle {
  margin-bottom: 0;
  color: #272727;
}
.cid-uUUbohgWY0 .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 767px) {
  .cid-uUUbohgWY0 .item-row {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uUUbohgWY0 .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uUUbohgWY0 .item {
  padding: 0;
}
.cid-uUUbohgWY0 .item:nth-child(2n) .item-wrapper {
  padding-top: 5em;
}
@media (max-width: 767px) {
  .cid-uUUbohgWY0 .item:nth-child(2n) .item-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .cid-uUUbohgWY0 .item:nth-child(2n) .item-wrapper {
    padding-top: 0;
  }
}
.cid-uUUbohgWY0 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-uUUbohgWY0 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  border-radius: 35%;
  overflow: hidden;
  aspect-ratio: 0.88;
  margin: 0 auto;
}
.cid-uUUbohgWY0 .item-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-uUUbohgWY0 .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin-top: 1rem;
}
.cid-uUUbohgWY0 .item-title {
  color: #272727;
  margin-bottom: 4px;
}
.cid-uUUbohgWY0 .mbr-text {
  color: #272727;
  opacity: 0.4;
}
.cid-uUunrJpxjd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #90afa1;
}
.cid-uUunrJpxjd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUunrJpxjd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUunrJpxjd .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uUunrJpxjd .mbr-section-title {
  color: #2c2d87;
}
.cid-uUunrJpxjd .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uUunrJpxjd .google-map {
  height: 450px;
  position: relative;
  filter: grayscale(100%);
}
@media (max-width: 767px) {
  .cid-uUunrJpxjd .google-map {
    height: 400px;
  }
}
.cid-uUunrJpxjd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUunrJpxjd .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uUunrJpxjd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUunrJpxjd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uVzgNo3O42 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.webp");
}
.cid-uVzgNo3O42 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVzgNo3O42 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVzgNo3O42 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uVzgNo3O42 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uVzgNo3O42 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uVzgNo3O42 .mbr-section-title {
  color: #2c2d87;
  margin-bottom: 0;
}
.cid-uVzgNo3O42 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uVzgNo3O42 .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uVzgNo3O42 form {
  width: 100%;
}
.cid-uVzgNo3O42 form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uVzgNo3O42 form p {
  color: #353535;
}
.cid-uVzgNo3O42 form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uVzgNo3O42 form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-uVzgNo3O42 form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-uVzgNo3O42 form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-uVzgNo3O42 form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #b79b6c !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 0;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  transition: .3s;
}
.cid-uVzgNo3O42 form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-uVzgNo3O42 form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-uVzgNo3O42 form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-uVzgNo3O42 form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-uVzgNo3O42 form select {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-uVzgNo3O42 form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form input,
.cid-uVzgNo3O42 form textarea {
  transition: .4s all;
}
.cid-uVzgNo3O42 form input:active,
.cid-uVzgNo3O42 form textarea:active,
.cid-uVzgNo3O42 form input:focus,
.cid-uVzgNo3O42 form textarea:focus {
  background-color: transparent !important;
  border-color: #b79b6c !important;
  outline: none !important;
}
.cid-uVzgNo3O42 form input:active::-webkit-input-placeholder,
.cid-uVzgNo3O42 form textarea:active::-webkit-input-placeholder,
.cid-uVzgNo3O42 form input:focus::-webkit-input-placeholder,
.cid-uVzgNo3O42 form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form input:active::-moz-placeholder,
.cid-uVzgNo3O42 form textarea:active::-moz-placeholder,
.cid-uVzgNo3O42 form input:focus::-moz-placeholder,
.cid-uVzgNo3O42 form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form input:active:-moz-placeholder,
.cid-uVzgNo3O42 form textarea:active:-moz-placeholder,
.cid-uVzgNo3O42 form input:focus:-moz-placeholder,
.cid-uVzgNo3O42 form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form input:active:-ms-input-placeholder,
.cid-uVzgNo3O42 form textarea:active:-ms-input-placeholder,
.cid-uVzgNo3O42 form input:focus:-ms-input-placeholder,
.cid-uVzgNo3O42 form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVzgNo3O42 form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-uVzgNo3O42 form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-uVzgNo3O42 form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-uVzgNo3O42 form .form-check label {
  color: #353535;
}
.cid-uVzgNo3O42 form .form-check-input {
  border-color: #b79b6c !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uVzgNo3O42 form .form-check-input:focus,
.cid-uVzgNo3O42 form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #b79b6c !important;
}
.cid-uVzgNo3O42 form .form-check-input:checked {
  border-color: #b79b6c !important;
  background-color: #FFFCF5 !important;
}
.cid-uUaBj0XCv1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .content {
    text-align: center;
  }
  .cid-uUaBj0XCv1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uUaBj0XCv1 .logo-subtitle {
  color: #8d97ad;
}
.cid-uUaBj0XCv1 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uUaBj0XCv1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uUaBj0XCv1 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uUaBj0XCv1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uUaBj0XCv1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uUaBj0XCv1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uUaBj0XCv1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUaBj0XCv1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUaBj0XCv1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUaBj0XCv1 .list-item {
  display: flex;
}
.cid-uUaBj0XCv1 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uUaBj0XCv1 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uUaBj0XCv1 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uUaBj0XCv1 ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uUaBj0XCv1 .copyright > p {
  text-align: left;
}
.cid-uUaBj0XCv1 .mbr-text {
  color: #ffffff;
}
.cid-uUaBj0XCv1 P {
  color: #efefef;
}
.cid-uUaBj0XCv1 .column-title {
  color: #efefef;
}
.cid-uUefqDBezf.popup-builder {
  background-color: #ffffff;
}
.cid-uUefqDBezf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUefqDBezf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUefqDBezf .modal-content,
.cid-uUefqDBezf .modal-dialog {
  height: auto;
}
.cid-uUefqDBezf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUefqDBezf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUefqDBezf .form-wrapper .mbr-form .form-group,
  .cid-uUefqDBezf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUefqDBezf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUefqDBezf .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-uUefqDBezf .mbr-text {
  text-align: left;
}
.cid-uUefqDBezf .pt-0 {
  padding-top: 0 !important;
}
.cid-uUefqDBezf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUefqDBezf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUefqDBezf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUefqDBezf .modal-open {
  overflow: hidden;
}
.cid-uUefqDBezf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUefqDBezf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUefqDBezf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUefqDBezf .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-uUefqDBezf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUefqDBezf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUefqDBezf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUefqDBezf .modal-content {
  background: #bdcdc6;
  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-uUefqDBezf .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUefqDBezf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUefqDBezf .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUefqDBezf .modal-backdrop.show {
  opacity: .5;
}
.cid-uUefqDBezf .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-uUefqDBezf .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUefqDBezf .modal-header {
    padding: 1rem;
  }
}
.cid-uUefqDBezf .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUefqDBezf .modal-header .close svg {
  fill: #353535;
}
.cid-uUefqDBezf .modal-header .close:hover {
  opacity: 1;
}
.cid-uUefqDBezf .modal-header .close:focus {
  outline: none;
}
.cid-uUefqDBezf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUefqDBezf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUefqDBezf .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUefqDBezf .modal-body {
    padding: 1rem;
  }
}
.cid-uUefqDBezf .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-uUefqDBezf .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUefqDBezf .modal-footer {
    padding: 1rem;
  }
}
.cid-uUefqDBezf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUefqDBezf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUefqDBezf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUefqDBezf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUefqDBezf .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUefqDBezf .modal-lg,
  .cid-uUefqDBezf .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUefqDBezf .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUefqDBezf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUefqDBezf .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-uUefqDBezf .form-group {
  margin-bottom: 1rem;
}
.cid-uUefqDBezf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUefqDBezf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUefqDBezf .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-uUefqDBezf .mbr-section-btn {
  margin: 0;
}
.cid-uUefqDBezf .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUeldiWN5n.popup-builder {
  background-color: #ffffff;
}
.cid-uUeldiWN5n.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUeldiWN5n.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUeldiWN5n .modal-content,
.cid-uUeldiWN5n .modal-dialog {
  height: auto;
}
.cid-uUeldiWN5n .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUeldiWN5n .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUeldiWN5n .form-wrapper .mbr-form .form-group,
  .cid-uUeldiWN5n .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUeldiWN5n .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUeldiWN5n .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-uUeldiWN5n .mbr-text {
  text-align: left;
}
.cid-uUeldiWN5n .pt-0 {
  padding-top: 0 !important;
}
.cid-uUeldiWN5n .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUeldiWN5n .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUeldiWN5n .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUeldiWN5n .modal-open {
  overflow: hidden;
}
.cid-uUeldiWN5n .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUeldiWN5n .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUeldiWN5n .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUeldiWN5n .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-uUeldiWN5n .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUeldiWN5n .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUeldiWN5n .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUeldiWN5n .modal-content {
  background: #bdcdc6;
  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-uUeldiWN5n .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUeldiWN5n .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUeldiWN5n .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUeldiWN5n .modal-backdrop.show {
  opacity: .5;
}
.cid-uUeldiWN5n .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-uUeldiWN5n .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUeldiWN5n .modal-header {
    padding: 1rem;
  }
}
.cid-uUeldiWN5n .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUeldiWN5n .modal-header .close svg {
  fill: #353535;
}
.cid-uUeldiWN5n .modal-header .close:hover {
  opacity: 1;
}
.cid-uUeldiWN5n .modal-header .close:focus {
  outline: none;
}
.cid-uUeldiWN5n .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUeldiWN5n .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUeldiWN5n .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUeldiWN5n .modal-body {
    padding: 1rem;
  }
}
.cid-uUeldiWN5n .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-uUeldiWN5n .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUeldiWN5n .modal-footer {
    padding: 1rem;
  }
}
.cid-uUeldiWN5n .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUeldiWN5n .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUeldiWN5n .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUeldiWN5n .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUeldiWN5n .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUeldiWN5n .modal-lg,
  .cid-uUeldiWN5n .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUeldiWN5n .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUeldiWN5n .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUeldiWN5n .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-uUeldiWN5n .form-group {
  margin-bottom: 1rem;
}
.cid-uUeldiWN5n .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUeldiWN5n .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUeldiWN5n .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-uUeldiWN5n .mbr-section-btn {
  margin: 0;
}
.cid-uUeldiWN5n .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUen4VWux6.popup-builder {
  background-color: #ffffff;
}
.cid-uUen4VWux6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUen4VWux6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUen4VWux6 .modal-content,
.cid-uUen4VWux6 .modal-dialog {
  height: auto;
}
.cid-uUen4VWux6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUen4VWux6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUen4VWux6 .form-wrapper .mbr-form .form-group,
  .cid-uUen4VWux6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUen4VWux6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUen4VWux6 .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-uUen4VWux6 .mbr-text {
  text-align: left;
}
.cid-uUen4VWux6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uUen4VWux6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUen4VWux6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUen4VWux6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUen4VWux6 .modal-open {
  overflow: hidden;
}
.cid-uUen4VWux6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUen4VWux6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUen4VWux6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUen4VWux6 .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-uUen4VWux6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUen4VWux6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUen4VWux6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUen4VWux6 .modal-content {
  background: #bdcdc6;
  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-uUen4VWux6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUen4VWux6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUen4VWux6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUen4VWux6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uUen4VWux6 .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-uUen4VWux6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUen4VWux6 .modal-header {
    padding: 1rem;
  }
}
.cid-uUen4VWux6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUen4VWux6 .modal-header .close svg {
  fill: #353535;
}
.cid-uUen4VWux6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uUen4VWux6 .modal-header .close:focus {
  outline: none;
}
.cid-uUen4VWux6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUen4VWux6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUen4VWux6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUen4VWux6 .modal-body {
    padding: 1rem;
  }
}
.cid-uUen4VWux6 .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-uUen4VWux6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUen4VWux6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uUen4VWux6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUen4VWux6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUen4VWux6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUen4VWux6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUen4VWux6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUen4VWux6 .modal-lg,
  .cid-uUen4VWux6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUen4VWux6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUen4VWux6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUen4VWux6 .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-uUen4VWux6 .form-group {
  margin-bottom: 1rem;
}
.cid-uUen4VWux6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUen4VWux6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUen4VWux6 .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-uUen4VWux6 .mbr-section-btn {
  margin: 0;
}
.cid-uUen4VWux6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUiNYl93xT.popup-builder {
  background-color: #ffffff;
}
.cid-uUiNYl93xT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUiNYl93xT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUiNYl93xT .modal-content,
.cid-uUiNYl93xT .modal-dialog {
  height: auto;
}
.cid-uUiNYl93xT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUiNYl93xT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUiNYl93xT .form-wrapper .mbr-form .form-group,
  .cid-uUiNYl93xT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUiNYl93xT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUiNYl93xT .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-uUiNYl93xT .mbr-text {
  text-align: left;
}
.cid-uUiNYl93xT .pt-0 {
  padding-top: 0 !important;
}
.cid-uUiNYl93xT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUiNYl93xT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUiNYl93xT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUiNYl93xT .modal-open {
  overflow: hidden;
}
.cid-uUiNYl93xT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUiNYl93xT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUiNYl93xT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUiNYl93xT .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-uUiNYl93xT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUiNYl93xT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUiNYl93xT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUiNYl93xT .modal-content {
  background: #bdcdc6;
  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-uUiNYl93xT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUiNYl93xT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUiNYl93xT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUiNYl93xT .modal-backdrop.show {
  opacity: .5;
}
.cid-uUiNYl93xT .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-uUiNYl93xT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiNYl93xT .modal-header {
    padding: 1rem;
  }
}
.cid-uUiNYl93xT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUiNYl93xT .modal-header .close svg {
  fill: #353535;
}
.cid-uUiNYl93xT .modal-header .close:hover {
  opacity: 1;
}
.cid-uUiNYl93xT .modal-header .close:focus {
  outline: none;
}
.cid-uUiNYl93xT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUiNYl93xT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUiNYl93xT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiNYl93xT .modal-body {
    padding: 1rem;
  }
}
.cid-uUiNYl93xT .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-uUiNYl93xT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiNYl93xT .modal-footer {
    padding: 1rem;
  }
}
.cid-uUiNYl93xT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUiNYl93xT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUiNYl93xT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUiNYl93xT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUiNYl93xT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUiNYl93xT .modal-lg,
  .cid-uUiNYl93xT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUiNYl93xT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUiNYl93xT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUiNYl93xT .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-uUiNYl93xT .form-group {
  margin-bottom: 1rem;
}
.cid-uUiNYl93xT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUiNYl93xT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUiNYl93xT .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-uUiNYl93xT .mbr-section-btn {
  margin: 0;
}
.cid-uUiNYl93xT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUiPGoasY4.popup-builder {
  background-color: #ffffff;
}
.cid-uUiPGoasY4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUiPGoasY4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUiPGoasY4 .modal-content,
.cid-uUiPGoasY4 .modal-dialog {
  height: auto;
}
.cid-uUiPGoasY4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUiPGoasY4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUiPGoasY4 .form-wrapper .mbr-form .form-group,
  .cid-uUiPGoasY4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUiPGoasY4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUiPGoasY4 .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-uUiPGoasY4 .mbr-text {
  text-align: left;
}
.cid-uUiPGoasY4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uUiPGoasY4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUiPGoasY4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUiPGoasY4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUiPGoasY4 .modal-open {
  overflow: hidden;
}
.cid-uUiPGoasY4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUiPGoasY4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUiPGoasY4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUiPGoasY4 .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-uUiPGoasY4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUiPGoasY4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUiPGoasY4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUiPGoasY4 .modal-content {
  background: #bdcdc6;
  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-uUiPGoasY4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUiPGoasY4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUiPGoasY4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUiPGoasY4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uUiPGoasY4 .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-uUiPGoasY4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiPGoasY4 .modal-header {
    padding: 1rem;
  }
}
.cid-uUiPGoasY4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUiPGoasY4 .modal-header .close svg {
  fill: #353535;
}
.cid-uUiPGoasY4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uUiPGoasY4 .modal-header .close:focus {
  outline: none;
}
.cid-uUiPGoasY4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUiPGoasY4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUiPGoasY4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiPGoasY4 .modal-body {
    padding: 1rem;
  }
}
.cid-uUiPGoasY4 .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-uUiPGoasY4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiPGoasY4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uUiPGoasY4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUiPGoasY4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUiPGoasY4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUiPGoasY4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUiPGoasY4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUiPGoasY4 .modal-lg,
  .cid-uUiPGoasY4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUiPGoasY4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUiPGoasY4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUiPGoasY4 .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-uUiPGoasY4 .form-group {
  margin-bottom: 1rem;
}
.cid-uUiPGoasY4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUiPGoasY4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUiPGoasY4 .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-uUiPGoasY4 .mbr-section-btn {
  margin: 0;
}
.cid-uUiPGoasY4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUiQnNWBCF.popup-builder {
  background-color: #ffffff;
}
.cid-uUiQnNWBCF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUiQnNWBCF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUiQnNWBCF .modal-content,
.cid-uUiQnNWBCF .modal-dialog {
  height: auto;
}
.cid-uUiQnNWBCF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUiQnNWBCF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUiQnNWBCF .form-wrapper .mbr-form .form-group,
  .cid-uUiQnNWBCF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUiQnNWBCF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUiQnNWBCF .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-uUiQnNWBCF .mbr-text {
  text-align: left;
}
.cid-uUiQnNWBCF .pt-0 {
  padding-top: 0 !important;
}
.cid-uUiQnNWBCF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUiQnNWBCF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUiQnNWBCF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUiQnNWBCF .modal-open {
  overflow: hidden;
}
.cid-uUiQnNWBCF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUiQnNWBCF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUiQnNWBCF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUiQnNWBCF .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-uUiQnNWBCF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUiQnNWBCF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUiQnNWBCF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUiQnNWBCF .modal-content {
  background: #bdcdc6;
  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-uUiQnNWBCF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUiQnNWBCF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUiQnNWBCF .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUiQnNWBCF .modal-backdrop.show {
  opacity: .5;
}
.cid-uUiQnNWBCF .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-uUiQnNWBCF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiQnNWBCF .modal-header {
    padding: 1rem;
  }
}
.cid-uUiQnNWBCF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUiQnNWBCF .modal-header .close svg {
  fill: #353535;
}
.cid-uUiQnNWBCF .modal-header .close:hover {
  opacity: 1;
}
.cid-uUiQnNWBCF .modal-header .close:focus {
  outline: none;
}
.cid-uUiQnNWBCF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUiQnNWBCF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUiQnNWBCF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiQnNWBCF .modal-body {
    padding: 1rem;
  }
}
.cid-uUiQnNWBCF .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-uUiQnNWBCF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiQnNWBCF .modal-footer {
    padding: 1rem;
  }
}
.cid-uUiQnNWBCF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUiQnNWBCF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUiQnNWBCF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUiQnNWBCF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUiQnNWBCF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUiQnNWBCF .modal-lg,
  .cid-uUiQnNWBCF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUiQnNWBCF .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUiQnNWBCF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUiQnNWBCF .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-uUiQnNWBCF .form-group {
  margin-bottom: 1rem;
}
.cid-uUiQnNWBCF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUiQnNWBCF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUiQnNWBCF .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-uUiQnNWBCF .mbr-section-btn {
  margin: 0;
}
.cid-uUiQnNWBCF .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUiRfEHpSo.popup-builder {
  background-color: #ffffff;
}
.cid-uUiRfEHpSo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUiRfEHpSo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUiRfEHpSo .modal-content,
.cid-uUiRfEHpSo .modal-dialog {
  height: auto;
}
.cid-uUiRfEHpSo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUiRfEHpSo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUiRfEHpSo .form-wrapper .mbr-form .form-group,
  .cid-uUiRfEHpSo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUiRfEHpSo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUiRfEHpSo .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-uUiRfEHpSo .mbr-text {
  text-align: left;
}
.cid-uUiRfEHpSo .pt-0 {
  padding-top: 0 !important;
}
.cid-uUiRfEHpSo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUiRfEHpSo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUiRfEHpSo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUiRfEHpSo .modal-open {
  overflow: hidden;
}
.cid-uUiRfEHpSo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUiRfEHpSo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUiRfEHpSo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUiRfEHpSo .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-uUiRfEHpSo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUiRfEHpSo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUiRfEHpSo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUiRfEHpSo .modal-content {
  background: #bdcdc6;
  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-uUiRfEHpSo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUiRfEHpSo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUiRfEHpSo .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUiRfEHpSo .modal-backdrop.show {
  opacity: .5;
}
.cid-uUiRfEHpSo .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-uUiRfEHpSo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiRfEHpSo .modal-header {
    padding: 1rem;
  }
}
.cid-uUiRfEHpSo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUiRfEHpSo .modal-header .close svg {
  fill: #353535;
}
.cid-uUiRfEHpSo .modal-header .close:hover {
  opacity: 1;
}
.cid-uUiRfEHpSo .modal-header .close:focus {
  outline: none;
}
.cid-uUiRfEHpSo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUiRfEHpSo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUiRfEHpSo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiRfEHpSo .modal-body {
    padding: 1rem;
  }
}
.cid-uUiRfEHpSo .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-uUiRfEHpSo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiRfEHpSo .modal-footer {
    padding: 1rem;
  }
}
.cid-uUiRfEHpSo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUiRfEHpSo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUiRfEHpSo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUiRfEHpSo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUiRfEHpSo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUiRfEHpSo .modal-lg,
  .cid-uUiRfEHpSo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUiRfEHpSo .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUiRfEHpSo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUiRfEHpSo .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-uUiRfEHpSo .form-group {
  margin-bottom: 1rem;
}
.cid-uUiRfEHpSo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUiRfEHpSo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUiRfEHpSo .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-uUiRfEHpSo .mbr-section-btn {
  margin: 0;
}
.cid-uUiRfEHpSo .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUiStxafg7.popup-builder {
  background-color: #ffffff;
}
.cid-uUiStxafg7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUiStxafg7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUiStxafg7 .modal-content,
.cid-uUiStxafg7 .modal-dialog {
  height: auto;
}
.cid-uUiStxafg7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUiStxafg7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUiStxafg7 .form-wrapper .mbr-form .form-group,
  .cid-uUiStxafg7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUiStxafg7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUiStxafg7 .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-uUiStxafg7 .mbr-text {
  text-align: left;
}
.cid-uUiStxafg7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uUiStxafg7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUiStxafg7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUiStxafg7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUiStxafg7 .modal-open {
  overflow: hidden;
}
.cid-uUiStxafg7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUiStxafg7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUiStxafg7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUiStxafg7 .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-uUiStxafg7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUiStxafg7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUiStxafg7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUiStxafg7 .modal-content {
  background: #bdcdc6;
  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-uUiStxafg7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUiStxafg7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUiStxafg7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUiStxafg7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uUiStxafg7 .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-uUiStxafg7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiStxafg7 .modal-header {
    padding: 1rem;
  }
}
.cid-uUiStxafg7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUiStxafg7 .modal-header .close svg {
  fill: #353535;
}
.cid-uUiStxafg7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uUiStxafg7 .modal-header .close:focus {
  outline: none;
}
.cid-uUiStxafg7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUiStxafg7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUiStxafg7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiStxafg7 .modal-body {
    padding: 1rem;
  }
}
.cid-uUiStxafg7 .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-uUiStxafg7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiStxafg7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uUiStxafg7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUiStxafg7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUiStxafg7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUiStxafg7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUiStxafg7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUiStxafg7 .modal-lg,
  .cid-uUiStxafg7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUiStxafg7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUiStxafg7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUiStxafg7 .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-uUiStxafg7 .form-group {
  margin-bottom: 1rem;
}
.cid-uUiStxafg7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUiStxafg7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUiStxafg7 .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-uUiStxafg7 .mbr-section-btn {
  margin: 0;
}
.cid-uUiStxafg7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUiSuO0dTy.popup-builder {
  background-color: #ffffff;
}
.cid-uUiSuO0dTy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUiSuO0dTy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUiSuO0dTy .modal-content,
.cid-uUiSuO0dTy .modal-dialog {
  height: auto;
}
.cid-uUiSuO0dTy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUiSuO0dTy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUiSuO0dTy .form-wrapper .mbr-form .form-group,
  .cid-uUiSuO0dTy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUiSuO0dTy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUiSuO0dTy .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-uUiSuO0dTy .mbr-text {
  text-align: left;
}
.cid-uUiSuO0dTy .pt-0 {
  padding-top: 0 !important;
}
.cid-uUiSuO0dTy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUiSuO0dTy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUiSuO0dTy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUiSuO0dTy .modal-open {
  overflow: hidden;
}
.cid-uUiSuO0dTy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUiSuO0dTy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUiSuO0dTy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUiSuO0dTy .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-uUiSuO0dTy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUiSuO0dTy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUiSuO0dTy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUiSuO0dTy .modal-content {
  background: #bdcdc6;
  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-uUiSuO0dTy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUiSuO0dTy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUiSuO0dTy .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUiSuO0dTy .modal-backdrop.show {
  opacity: .5;
}
.cid-uUiSuO0dTy .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-uUiSuO0dTy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiSuO0dTy .modal-header {
    padding: 1rem;
  }
}
.cid-uUiSuO0dTy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUiSuO0dTy .modal-header .close svg {
  fill: #353535;
}
.cid-uUiSuO0dTy .modal-header .close:hover {
  opacity: 1;
}
.cid-uUiSuO0dTy .modal-header .close:focus {
  outline: none;
}
.cid-uUiSuO0dTy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUiSuO0dTy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUiSuO0dTy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiSuO0dTy .modal-body {
    padding: 1rem;
  }
}
.cid-uUiSuO0dTy .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-uUiSuO0dTy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUiSuO0dTy .modal-footer {
    padding: 1rem;
  }
}
.cid-uUiSuO0dTy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUiSuO0dTy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUiSuO0dTy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUiSuO0dTy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUiSuO0dTy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUiSuO0dTy .modal-lg,
  .cid-uUiSuO0dTy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUiSuO0dTy .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUiSuO0dTy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUiSuO0dTy .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-uUiSuO0dTy .form-group {
  margin-bottom: 1rem;
}
.cid-uUiSuO0dTy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUiSuO0dTy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUiSuO0dTy .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-uUiSuO0dTy .mbr-section-btn {
  margin: 0;
}
.cid-uUiSuO0dTy .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUUfP312CG.popup-builder {
  background-color: #ffffff;
}
.cid-uUUfP312CG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uUUfP312CG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uUUfP312CG .modal-content,
.cid-uUUfP312CG .modal-dialog {
  height: auto;
}
.cid-uUUfP312CG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uUUfP312CG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uUUfP312CG .form-wrapper .mbr-form .form-group,
  .cid-uUUfP312CG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uUUfP312CG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uUUfP312CG .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-uUUfP312CG .mbr-text {
  text-align: left;
}
.cid-uUUfP312CG .pt-0 {
  padding-top: 0 !important;
}
.cid-uUUfP312CG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uUUfP312CG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uUUfP312CG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uUUfP312CG .modal-open {
  overflow: hidden;
}
.cid-uUUfP312CG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uUUfP312CG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uUUfP312CG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uUUfP312CG .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-uUUfP312CG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uUUfP312CG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uUUfP312CG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uUUfP312CG .modal-content {
  background: #bdcdc6;
  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-uUUfP312CG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uUUfP312CG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uUUfP312CG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uUUfP312CG .modal-backdrop.show {
  opacity: .5;
}
.cid-uUUfP312CG .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-uUUfP312CG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUUfP312CG .modal-header {
    padding: 1rem;
  }
}
.cid-uUUfP312CG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uUUfP312CG .modal-header .close svg {
  fill: #353535;
}
.cid-uUUfP312CG .modal-header .close:hover {
  opacity: 1;
}
.cid-uUUfP312CG .modal-header .close:focus {
  outline: none;
}
.cid-uUUfP312CG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #2c2d87;
}
.cid-uUUfP312CG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uUUfP312CG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUUfP312CG .modal-body {
    padding: 1rem;
  }
}
.cid-uUUfP312CG .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-uUUfP312CG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUUfP312CG .modal-footer {
    padding: 1rem;
  }
}
.cid-uUUfP312CG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uUUfP312CG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uUUfP312CG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uUUfP312CG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uUUfP312CG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uUUfP312CG .modal-lg,
  .cid-uUUfP312CG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uUUfP312CG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uUUfP312CG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uUUfP312CG .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-uUUfP312CG .form-group {
  margin-bottom: 1rem;
}
.cid-uUUfP312CG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uUUfP312CG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uUUfP312CG .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-uUUfP312CG .mbr-section-btn {
  margin: 0;
}
.cid-uUUfP312CG .mbr-section-btn .btn {
  margin: 0;
}
#custom-html-11 {
  /* Type valid CSS here */
}
#custom-html-11 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-11 p {
  font-size: 60px;
  color: #777;
}
.cid-uU96iHu4In {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uU96iHu4In nav.navbar {
  position: fixed;
}
.cid-uU96iHu4In .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-uU96iHu4In .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uU96iHu4In .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uU96iHu4In .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uU96iHu4In .dropdown-item:hover,
.cid-uU96iHu4In .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uU96iHu4In .dropdown-item:hover span {
  color: white;
}
.cid-uU96iHu4In .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU96iHu4In .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU96iHu4In .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU96iHu4In .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU96iHu4In .nav-link {
  position: relative;
}
.cid-uU96iHu4In .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uU96iHu4In .container {
    flex-wrap: nowrap;
  }
}
.cid-uU96iHu4In .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU96iHu4In .navbar-nav {
  padding: 5px !important;
}
.cid-uU96iHu4In .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uU96iHu4In .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uU96iHu4In .dropdown-menu,
.cid-uU96iHu4In .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uU96iHu4In .nav-item:focus,
.cid-uU96iHu4In .nav-link:focus {
  outline: none;
}
.cid-uU96iHu4In .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU96iHu4In .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU96iHu4In .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU96iHu4In .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU96iHu4In .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU96iHu4In .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU96iHu4In .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uU96iHu4In .navbar.opened {
  transition: all 0.3s;
}
.cid-uU96iHu4In .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uU96iHu4In .navbar .navbar-logo img {
  width: auto;
}
.cid-uU96iHu4In .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU96iHu4In .navbar.collapsed {
  justify-content: center;
}
.cid-uU96iHu4In .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU96iHu4In .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU96iHu4In .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uU96iHu4In .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU96iHu4In .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU96iHu4In .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-uU96iHu4In .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU96iHu4In .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU96iHu4In .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU96iHu4In .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU96iHu4In .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU96iHu4In .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU96iHu4In .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU96iHu4In .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-uU96iHu4In .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU96iHu4In .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU96iHu4In .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU96iHu4In .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU96iHu4In .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU96iHu4In .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU96iHu4In .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU96iHu4In .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU96iHu4In .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uU96iHu4In .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU96iHu4In .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU96iHu4In .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU96iHu4In .dropdown-item.active,
.cid-uU96iHu4In .dropdown-item:active {
  background-color: transparent;
}
.cid-uU96iHu4In .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU96iHu4In .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU96iHu4In .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU96iHu4In .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uU96iHu4In .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU96iHu4In .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU96iHu4In ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU96iHu4In .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU96iHu4In button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU96iHu4In button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uU96iHu4In button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU96iHu4In button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU96iHu4In button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU96iHu4In button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU96iHu4In nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU96iHu4In nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU96iHu4In nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU96iHu4In nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU96iHu4In .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU96iHu4In a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU96iHu4In .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-uU96iHu4In .navbar {
    height: 70px;
  }
  .cid-uU96iHu4In .navbar.opened {
    height: auto;
  }
  .cid-uU96iHu4In .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU96iHu4In .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uU96iHu4In .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uU96iHu4In .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uU96iHu4In .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uU96iHu4In .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uU96iHu4In .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uU96iHu4In .container {
    overflow: hidden;
  }
  .cid-uU96iHu4In .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uU96iHu4In .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uU96iHu4In .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uU96iHu4In .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uU96iHu4In .navbar-nav {
    padding: 0 !important;
  }
  .cid-uU96iHu4In .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uU96iHu4In .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uU96iHu4In .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uU96iHu4In .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uU96iHu4In .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uU96iHu4In .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uU96iHu4In .container {
    padding: 25px 15px !important;
  }
  .cid-uU96iHu4In .container-head {
    padding: 10px !important;
  }
  .cid-uU96iHu4In .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uU96iHu4In .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uU96iHu4In .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uU96L2ERGn {
  background-image: url("../../../assets/images/mbr-1920x1261.webp");
}
.cid-uU96L2ERGn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU96L2ERGn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uU96L2ERGn .col-content {
    text-align: center;
  }
}
.cid-uU96L2ERGn .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uU96L2ERGn .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uU96L2ERGn .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uU96L2ERGn .mbr-section-btn {
  margin-top: 22px;
}
.cid-uU96L2ERGn .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uU96L2ERGn .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uU96L2ERGn .text-item {
    text-align: center;
  }
}
.cid-uU96L2ERGn .mbr-text {
  color: #24262b;
}
.cid-uU96L2ERGn .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uUurKSDyKK {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uUurKSDyKK .decor-wrap {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uUurKSDyKK .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uUurKSDyKK .decor_1 {
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  border-radius: 0 0 40% 0;
  background-color: #bdcdc6;
  z-index: 1;
}
.cid-uUurKSDyKK .decor_2 {
  right: -35%;
  bottom: 0;
  width: 200vh;
  height: 80%;
  border-radius: 100% 100% 0 0;
  background-color: #efefef;
}
.cid-uUurKSDyKK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUurKSDyKK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUurKSDyKK .row {
  position: relative;
  z-index: 2;
}
.cid-uUurKSDyKK .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uUurKSDyKK .content-wrapper .mbr-section-title {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .cid-uUurKSDyKK .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uUurKSDyKK .content-wrapper .text-wrapper {
  padding-right: 32%;
}
@media (max-width: 992px) {
  .cid-uUurKSDyKK .content-wrapper .text-wrapper {
    padding-right: 0;
  }
}
.cid-uUurKSDyKK .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uUurKSDyKK .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uUurKSDyKK .image-wrapper {
    margin-top: 46px;
  }
}
.cid-uUurKSDyKK .image-wrapper img {
  height: 800px;
  width: 150%;
  transform: rotate(-8deg);
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUurKSDyKK .image-wrapper img {
    height: 350px;
    transform: none;
    width: 100%;
  }
}
.cid-uUurKSDyKK .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uUurKSDyKK .mbr-text {
  color: #51565c;
}
.cid-uUurKSDyKK .mbr-text,
.cid-uUurKSDyKK .text-wrapper {
  text-align: left;
}
.cid-uU9bZq8U2B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uU9bZq8U2B .decor-wrap {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uU9bZq8U2B .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uU9bZq8U2B .decor_1 {
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  border-radius: 0 0 40% 0;
  background-color: #d6e4ff;
  z-index: 1;
}
.cid-uU9bZq8U2B .decor_2 {
  right: -35%;
  bottom: 0;
  width: 200vh;
  height: 80%;
  border-radius: 100% 100% 0 0;
  background-color: #efefef;
}
.cid-uU9bZq8U2B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU9bZq8U2B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU9bZq8U2B .row {
  position: relative;
  z-index: 2;
}
.cid-uU9bZq8U2B .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uU9bZq8U2B .content-wrapper .mbr-section-title {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .cid-uU9bZq8U2B .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uU9bZq8U2B .content-wrapper .text-wrapper {
  padding-right: 32%;
}
@media (max-width: 992px) {
  .cid-uU9bZq8U2B .content-wrapper .text-wrapper {
    padding-right: 0;
  }
}
.cid-uU9bZq8U2B .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uU9bZq8U2B .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uU9bZq8U2B .image-wrapper {
    margin-top: 46px;
  }
}
.cid-uU9bZq8U2B .image-wrapper img {
  height: 800px;
  width: 150%;
  transform: rotate(-8deg);
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uU9bZq8U2B .image-wrapper img {
    height: 350px;
    transform: none;
    width: 100%;
  }
}
.cid-uU9bZq8U2B .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uU9bZq8U2B .mbr-text {
  color: #51565c;
}
.cid-uU9bZq8U2B .mbr-text,
.cid-uU9bZq8U2B .text-wrapper {
  text-align: left;
}
.cid-uU9aeUeLJf {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uU9aeUeLJf .decor-wrap {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uU9aeUeLJf .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uU9aeUeLJf .decor_1 {
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  border-radius: 0 0 40% 0;
  background-color: #fff0eb;
  z-index: 1;
}
.cid-uU9aeUeLJf .decor_2 {
  right: -35%;
  bottom: 0;
  width: 200vh;
  height: 80%;
  border-radius: 100% 100% 0 0;
  background-color: #f4f4f2;
}
.cid-uU9aeUeLJf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU9aeUeLJf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU9aeUeLJf .row {
  position: relative;
  z-index: 2;
}
.cid-uU9aeUeLJf .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uU9aeUeLJf .content-wrapper .mbr-section-title {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .cid-uU9aeUeLJf .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uU9aeUeLJf .content-wrapper .text-wrapper {
  padding-right: 32%;
}
@media (max-width: 992px) {
  .cid-uU9aeUeLJf .content-wrapper .text-wrapper {
    padding-right: 0;
  }
}
.cid-uU9aeUeLJf .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uU9aeUeLJf .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uU9aeUeLJf .image-wrapper {
    margin-top: 46px;
  }
}
.cid-uU9aeUeLJf .image-wrapper img {
  height: 800px;
  width: 150%;
  transform: rotate(-8deg);
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uU9aeUeLJf .image-wrapper img {
    height: 350px;
    transform: none;
    width: 100%;
  }
}
.cid-uU9aeUeLJf .mbr-section-title {
  color: #2c2d87;
}
.cid-uU9aeUeLJf .mbr-text {
  color: #51565c;
}
.cid-uUaBj0XCv1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .content {
    text-align: center;
  }
  .cid-uUaBj0XCv1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uUaBj0XCv1 .logo-subtitle {
  color: #8d97ad;
}
.cid-uUaBj0XCv1 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uUaBj0XCv1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uUaBj0XCv1 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uUaBj0XCv1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uUaBj0XCv1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uUaBj0XCv1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uUaBj0XCv1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUaBj0XCv1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUaBj0XCv1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUaBj0XCv1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUaBj0XCv1 .list-item {
  display: flex;
}
.cid-uUaBj0XCv1 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uUaBj0XCv1 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uUaBj0XCv1 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uUaBj0XCv1 ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uUaBj0XCv1 .copyright > p {
  text-align: left;
}
.cid-uUaBj0XCv1 .mbr-text {
  color: #ffffff;
}
.cid-uUaBj0XCv1 P {
  color: #efefef;
}
.cid-uUaBj0XCv1 .column-title {
  color: #efefef;
}
.cid-uV5uzgcDgg {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uV5uzgcDgg nav.navbar {
  position: fixed;
}
.cid-uV5uzgcDgg .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-uV5uzgcDgg .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uV5uzgcDgg .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uV5uzgcDgg .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uV5uzgcDgg .dropdown-item:hover,
.cid-uV5uzgcDgg .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uV5uzgcDgg .dropdown-item:hover span {
  color: white;
}
.cid-uV5uzgcDgg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV5uzgcDgg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV5uzgcDgg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uV5uzgcDgg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV5uzgcDgg .nav-link {
  position: relative;
}
.cid-uV5uzgcDgg .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uV5uzgcDgg .container {
    flex-wrap: nowrap;
  }
}
.cid-uV5uzgcDgg .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uV5uzgcDgg .navbar-nav {
  padding: 5px !important;
}
.cid-uV5uzgcDgg .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uV5uzgcDgg .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uV5uzgcDgg .dropdown-menu,
.cid-uV5uzgcDgg .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uV5uzgcDgg .nav-item:focus,
.cid-uV5uzgcDgg .nav-link:focus {
  outline: none;
}
.cid-uV5uzgcDgg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV5uzgcDgg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV5uzgcDgg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uV5uzgcDgg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV5uzgcDgg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV5uzgcDgg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV5uzgcDgg .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uV5uzgcDgg .navbar.opened {
  transition: all 0.3s;
}
.cid-uV5uzgcDgg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uV5uzgcDgg .navbar .navbar-logo img {
  width: auto;
}
.cid-uV5uzgcDgg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV5uzgcDgg .navbar.collapsed {
  justify-content: center;
}
.cid-uV5uzgcDgg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV5uzgcDgg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV5uzgcDgg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uV5uzgcDgg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV5uzgcDgg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV5uzgcDgg .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-uV5uzgcDgg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV5uzgcDgg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV5uzgcDgg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV5uzgcDgg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV5uzgcDgg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV5uzgcDgg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV5uzgcDgg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV5uzgcDgg .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-uV5uzgcDgg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV5uzgcDgg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV5uzgcDgg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV5uzgcDgg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV5uzgcDgg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV5uzgcDgg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uV5uzgcDgg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uV5uzgcDgg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV5uzgcDgg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uV5uzgcDgg .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uV5uzgcDgg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV5uzgcDgg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV5uzgcDgg .dropdown-item.active,
.cid-uV5uzgcDgg .dropdown-item:active {
  background-color: transparent;
}
.cid-uV5uzgcDgg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV5uzgcDgg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV5uzgcDgg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV5uzgcDgg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uV5uzgcDgg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV5uzgcDgg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV5uzgcDgg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV5uzgcDgg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV5uzgcDgg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV5uzgcDgg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uV5uzgcDgg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV5uzgcDgg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5uzgcDgg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5uzgcDgg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV5uzgcDgg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5uzgcDgg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV5uzgcDgg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV5uzgcDgg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5uzgcDgg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV5uzgcDgg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV5uzgcDgg .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-uV5uzgcDgg .navbar {
    height: 70px;
  }
  .cid-uV5uzgcDgg .navbar.opened {
    height: auto;
  }
  .cid-uV5uzgcDgg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV5uzgcDgg .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uV5uzgcDgg .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uV5uzgcDgg .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uV5uzgcDgg .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uV5uzgcDgg .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uV5uzgcDgg .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uV5uzgcDgg .container {
    overflow: hidden;
  }
  .cid-uV5uzgcDgg .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uV5uzgcDgg .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uV5uzgcDgg .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uV5uzgcDgg .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uV5uzgcDgg .navbar-nav {
    padding: 0 !important;
  }
  .cid-uV5uzgcDgg .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uV5uzgcDgg .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uV5uzgcDgg .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uV5uzgcDgg .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uV5uzgcDgg .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uV5uzgcDgg .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uV5uzgcDgg .container {
    padding: 25px 15px !important;
  }
  .cid-uV5uzgcDgg .container-head {
    padding: 10px !important;
  }
  .cid-uV5uzgcDgg .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uV5uzgcDgg .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uV5uzgcDgg .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uV5uzgI37G {
  background-image: url("../../../assets/images/vista-frontal-del-terapeuta-osteopatico-comprobando-la-espalda-del-paciente-femenino-2000x1125.webp");
}
.cid-uV5uzgI37G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5uzgI37G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uV5uzgI37G .col-content {
    text-align: center;
  }
}
.cid-uV5uzgI37G .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uV5uzgI37G .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uV5uzgI37G .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uV5uzgI37G .mbr-section-btn {
  margin-top: 22px;
}
.cid-uV5uzgI37G .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uV5uzgI37G .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uV5uzgI37G .text-item {
    text-align: center;
  }
}
.cid-uV5uzgI37G .mbr-text {
  color: #24262b;
}
.cid-uV5uzgI37G .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uVKyMVA76I {
  background-color: #e4eedb;
}
.cid-uVKyMVA76I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVKyMVA76I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVKyMVA76I .card {
  justify-content: center;
}
.cid-uVKyMVA76I .image-wrapper {
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-uVKyMVA76I .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uVKyMVA76I .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVKyMVA76I .image-wrapper img {
    height: 350px;
  }
}
.cid-uVKyMVA76I .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVKyMVA76I .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVKyMVA76I .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVKyMVA76I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVKyMVA76I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVKyMVA76I .mbr-section-title {
  color: #000000;
}
.cid-uVKyMVA76I .mbr-section-subtitle {
  color: #000000;
}
.cid-uVKyMVA76I .mbr-text,
.cid-uVKyMVA76I .text-wrapper {
  color: #000000;
}
.cid-uVKTLZOKKv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uVKTLZOKKv .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uVKTLZOKKv .mbr-section-title {
  color: #24262b;
}
.cid-uVKTLZOKKv .mbr-section-subtitle {
  color: #24262b;
}
.cid-uVKTLZOKKv .items-row {
  row-gap: 32px;
}
.cid-uVKTLZOKKv .item {
  cursor: pointer;
}
.cid-uVKTLZOKKv .item:focus,
.cid-uVKTLZOKKv span:focus {
  outline: none;
}
.cid-uVKTLZOKKv .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-uVKTLZOKKv .item-img {
  flex-shrink: 0;
  width: 100%;
}
.cid-uVKTLZOKKv img {
  width: 100%;
  aspect-ratio: calc(305 / (67 * 4));
  object-fit: cover;
}
.cid-uVKTLZOKKv .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem 2rem;
  background: #c1c1c1;
}
.cid-uVKTLZOKKv .item-title {
  color: #24262b;
}
.cid-uVKTLZOKKv .mbr-text {
  margin-top: 10px;
  color: #24262b;
}
.cid-uVKTLZOKKv .mbr-section-btn {
  margin-top: 12px !important;
}
.cid-uVKDm7X9is {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fff0eb;
}
.cid-uVKDm7X9is .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVKDm7X9is .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVKDm7X9is .card {
  justify-content: center;
}
.cid-uVKDm7X9is .image-wrapper {
  padding-right: 70px;
  padding-right: 0;
  padding-left: 70px;
}
@media (max-width: 992px) {
  .cid-uVKDm7X9is .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uVKDm7X9is .image-wrapper {
    padding-left: 0;
  }
}
.cid-uVKDm7X9is .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVKDm7X9is .image-wrapper img {
    height: 350px;
  }
}
.cid-uVKDm7X9is .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVKDm7X9is .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVKDm7X9is .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVKDm7X9is .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVKDm7X9is .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVKDm7X9is .mbr-section-title {
  color: #000000;
}
.cid-uVKDm7X9is .mbr-section-subtitle {
  color: #000000;
}
.cid-uVKDm7X9is .mbr-text,
.cid-uVKDm7X9is .text-wrapper {
  color: #000000;
}
.cid-uVKUs5cEPy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uVKUs5cEPy .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uVKUs5cEPy .mbr-section-title {
  color: #24262b;
}
.cid-uVKUs5cEPy .mbr-section-subtitle {
  color: #24262b;
}
.cid-uVKUs5cEPy .items-row {
  row-gap: 32px;
}
.cid-uVKUs5cEPy .item {
  cursor: pointer;
}
.cid-uVKUs5cEPy .item:focus,
.cid-uVKUs5cEPy span:focus {
  outline: none;
}
.cid-uVKUs5cEPy .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-uVKUs5cEPy .item-img {
  flex-shrink: 0;
  width: 100%;
}
.cid-uVKUs5cEPy img {
  width: 100%;
  aspect-ratio: calc(305 / (67 * 4));
  object-fit: cover;
}
.cid-uVKUs5cEPy .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem 2rem;
  background: #c1c1c1;
}
.cid-uVKUs5cEPy .item-title {
  color: #24262b;
}
.cid-uVKUs5cEPy .mbr-text {
  margin-top: 10px;
  color: #24262b;
}
.cid-uVKUs5cEPy .mbr-section-btn {
  margin-top: 12px !important;
}
.cid-uV5uziruFV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uV5uziruFV .content {
    text-align: center;
  }
  .cid-uV5uziruFV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uV5uziruFV .logo-subtitle {
  color: #8d97ad;
}
.cid-uV5uziruFV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uV5uziruFV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uV5uziruFV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uV5uziruFV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uV5uziruFV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uV5uziruFV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uV5uziruFV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uV5uziruFV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uV5uziruFV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uV5uziruFV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uV5uziruFV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uV5uziruFV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uV5uziruFV .list-item {
  display: flex;
}
.cid-uV5uziruFV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uV5uziruFV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uV5uziruFV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uV5uziruFV ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uV5uziruFV .copyright > p {
  text-align: left;
}
.cid-uV5uziruFV .mbr-text {
  color: #ffffff;
}
.cid-uV5uziruFV P {
  color: #efefef;
}
.cid-uV5uziruFV .column-title {
  color: #efefef;
}
.cid-uV5yYc20OS {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uV5yYc20OS nav.navbar {
  position: fixed;
}
.cid-uV5yYc20OS .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-uV5yYc20OS .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uV5yYc20OS .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uV5yYc20OS .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uV5yYc20OS .dropdown-item:hover,
.cid-uV5yYc20OS .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uV5yYc20OS .dropdown-item:hover span {
  color: white;
}
.cid-uV5yYc20OS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV5yYc20OS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV5yYc20OS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uV5yYc20OS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV5yYc20OS .nav-link {
  position: relative;
}
.cid-uV5yYc20OS .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uV5yYc20OS .container {
    flex-wrap: nowrap;
  }
}
.cid-uV5yYc20OS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uV5yYc20OS .navbar-nav {
  padding: 5px !important;
}
.cid-uV5yYc20OS .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uV5yYc20OS .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uV5yYc20OS .dropdown-menu,
.cid-uV5yYc20OS .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uV5yYc20OS .nav-item:focus,
.cid-uV5yYc20OS .nav-link:focus {
  outline: none;
}
.cid-uV5yYc20OS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV5yYc20OS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV5yYc20OS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uV5yYc20OS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV5yYc20OS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV5yYc20OS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV5yYc20OS .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uV5yYc20OS .navbar.opened {
  transition: all 0.3s;
}
.cid-uV5yYc20OS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uV5yYc20OS .navbar .navbar-logo img {
  width: auto;
}
.cid-uV5yYc20OS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV5yYc20OS .navbar.collapsed {
  justify-content: center;
}
.cid-uV5yYc20OS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV5yYc20OS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV5yYc20OS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uV5yYc20OS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV5yYc20OS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV5yYc20OS .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-uV5yYc20OS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV5yYc20OS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV5yYc20OS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV5yYc20OS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV5yYc20OS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV5yYc20OS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV5yYc20OS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV5yYc20OS .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-uV5yYc20OS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV5yYc20OS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV5yYc20OS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV5yYc20OS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV5yYc20OS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV5yYc20OS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uV5yYc20OS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uV5yYc20OS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV5yYc20OS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uV5yYc20OS .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uV5yYc20OS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV5yYc20OS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV5yYc20OS .dropdown-item.active,
.cid-uV5yYc20OS .dropdown-item:active {
  background-color: transparent;
}
.cid-uV5yYc20OS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV5yYc20OS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV5yYc20OS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV5yYc20OS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uV5yYc20OS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV5yYc20OS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV5yYc20OS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV5yYc20OS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV5yYc20OS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV5yYc20OS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uV5yYc20OS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV5yYc20OS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5yYc20OS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV5yYc20OS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV5yYc20OS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5yYc20OS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV5yYc20OS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV5yYc20OS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV5yYc20OS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV5yYc20OS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV5yYc20OS .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-uV5yYc20OS .navbar {
    height: 70px;
  }
  .cid-uV5yYc20OS .navbar.opened {
    height: auto;
  }
  .cid-uV5yYc20OS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV5yYc20OS .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uV5yYc20OS .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uV5yYc20OS .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uV5yYc20OS .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uV5yYc20OS .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uV5yYc20OS .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uV5yYc20OS .container {
    overflow: hidden;
  }
  .cid-uV5yYc20OS .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uV5yYc20OS .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uV5yYc20OS .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uV5yYc20OS .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uV5yYc20OS .navbar-nav {
    padding: 0 !important;
  }
  .cid-uV5yYc20OS .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uV5yYc20OS .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uV5yYc20OS .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uV5yYc20OS .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uV5yYc20OS .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uV5yYc20OS .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uV5yYc20OS .container {
    padding: 25px 15px !important;
  }
  .cid-uV5yYc20OS .container-head {
    padding: 10px !important;
  }
  .cid-uV5yYc20OS .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uV5yYc20OS .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uV5yYc20OS .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uV5yYcvQqJ {
  background-image: url("../../../assets/images/comunidad-de-primer-plano-tomados-de-la-mano-2000x1333.webp");
}
.cid-uV5yYcvQqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5yYcvQqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uV5yYcvQqJ .col-content {
    text-align: center;
  }
}
.cid-uV5yYcvQqJ .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uV5yYcvQqJ .mbr-section-title {
  color: #2c2d87;
  text-align: right;
}
.cid-uV5yYcvQqJ .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uV5yYcvQqJ .mbr-section-btn {
  margin-top: 22px;
}
.cid-uV5yYcvQqJ .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uV5yYcvQqJ .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uV5yYcvQqJ .text-item {
    text-align: center;
  }
}
.cid-uV5yYcvQqJ .mbr-text {
  color: #24262b;
}
.cid-uV5yYcvQqJ .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uVrwcJ1lys {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-uVrwcJ1lys .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVrwcJ1lys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVrwcJ1lys .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-uVrwcJ1lys .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uVrwcJ1lys .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-uVrwcJ1lys .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-uVrwcJ1lys .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-uVrwcJ1lys .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uVrwcJ1lys .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uVrwcJ1lys .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uVrwcJ1lys .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uVrwcJ1lys .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVrwcJ1lys .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-uVrwcJ1lys .items-wrapper .card {
  padding: 0 12px;
}
@media (max-width: 992px) {
  .cid-uVrwcJ1lys .items-wrapper .card {
    margin-bottom: 18px;
  }
}
.cid-uVrwcJ1lys .items-wrapper .card .card-wrapper {
  height: 100%;
  background-color: #f5f5f5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #9c9c9c;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uVrwcJ1lys .items-wrapper .card .card-wrapper {
    padding: 24px;
  }
}
.cid-uVrwcJ1lys .items-wrapper .card .card-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uVrwcJ1lys .items-wrapper .card .card-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-uVrwcJ1lys .items-wrapper .card .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uVrwcJ1lys .items-wrapper .card .card-wrapper .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uVrwcJ1lys .items-wrapper .card .card-wrapper .image-wrapper {
    height: 300px;
  }
}
.cid-uVrwcJ1lys .items-wrapper .card .card-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
.cid-uVrwcJ1lys .items-wrapper .card .text-wrapper {
  padding: 60px 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uVrwcJ1lys .items-wrapper .card .text-wrapper {
    padding: 24px;
  }
}
.cid-uVrwcJ1lys .mbr-label,
.cid-uVrwcJ1lys .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uVrwcJ1lys .mbr-section-title,
.cid-uVrwcJ1lys .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uVrwcJ1lys .mbr-text,
.cid-uVrwcJ1lys .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-uVrwcJ1lys .item-text {
  color: #000000;
}
.cid-uVrwcJ1lys .item-text,
.cid-uVrwcJ1lys .mbr-section-btn {
  text-align: left;
}
.cid-uVryjTPlic {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #e4eedb;
}
.cid-uVryjTPlic .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVryjTPlic .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVryjTPlic .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
  position: relative;
  background-image: linear-gradient(-180deg, #24262b, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uVryjTPlic .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uVryjTPlic .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
  background-image: linear-gradient(-165deg, #767676, #000000 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uVryjTPlic .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVryjTPlic .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-uVryjTPlic .mbr-section-title {
  color: #000000;
}
.cid-uVryjTPlic .mbr-text,
.cid-uVryjTPlic .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-uVryjTPlic .mbr-section-title,
.cid-uVryjTPlic .title-wrapper,
.cid-uVryjTPlic .mbr-section-btn {
  text-align: center;
}
.cid-uV60fXQ7c3 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fff0eb;
}
.cid-uV60fXQ7c3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV60fXQ7c3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV60fXQ7c3 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uV60fXQ7c3 .mbr-section-title {
  color: #24262b;
}
.cid-uV60fXQ7c3 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uV60fXQ7c3 .items-row {
  row-gap: 32px;
}
.cid-uV60fXQ7c3 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uV60fXQ7c3 .item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #fdddd1;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uV60fXQ7c3 .item-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-uV60fXQ7c3 .item-img {
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-uV60fXQ7c3 .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-uV60fXQ7c3 .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-uV60fXQ7c3 .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-uV60fXQ7c3 .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 80px 40px;
}
@media (max-width: 1199px) {
  .cid-uV60fXQ7c3 .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uV60fXQ7c3 .item-content {
    text-align: center;
  }
}
.cid-uV60fXQ7c3 .card-title {
  margin-bottom: 16px;
  color: #767676;
}
.cid-uV60fXQ7c3 .card-text {
  display: inline;
  color: #24262b;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
}
.cid-uV60fXQ7c3 .card-text:hover {
  color: #b79b6c !important;
  border-bottom: 2px solid #b79b6c;
}
.cid-uV60fXQ7c3 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uV60j7cCkA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uV60j7cCkA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV60j7cCkA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV60j7cCkA .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uV60j7cCkA .mbr-section-title {
  color: #24262b;
}
.cid-uV60j7cCkA .mbr-section-subtitle {
  color: #24262b;
}
.cid-uV60j7cCkA .items-row {
  row-gap: 32px;
}
.cid-uV60j7cCkA .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uV60j7cCkA .item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #e7d8d6;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uV60j7cCkA .item-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-uV60j7cCkA .item-img {
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-uV60j7cCkA .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-uV60j7cCkA .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-uV60j7cCkA .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-uV60j7cCkA .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 80px 40px;
}
@media (max-width: 1199px) {
  .cid-uV60j7cCkA .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uV60j7cCkA .item-content {
    text-align: center;
  }
}
.cid-uV60j7cCkA .card-title {
  margin-bottom: 16px;
  color: #767676;
}
.cid-uV60j7cCkA .card-text {
  display: inline;
  color: #24262b;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
}
.cid-uV60j7cCkA .card-text:hover {
  color: #b79b6c !important;
  border-bottom: 2px solid #b79b6c;
}
.cid-uV60j7cCkA .mbr-section-btn {
  margin-top: 20px;
}
.cid-uV60kye9FX {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #e4eedb;
}
.cid-uV60kye9FX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV60kye9FX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV60kye9FX .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uV60kye9FX .mbr-section-title {
  color: #24262b;
}
.cid-uV60kye9FX .mbr-section-subtitle {
  color: #24262b;
}
.cid-uV60kye9FX .items-row {
  row-gap: 32px;
}
.cid-uV60kye9FX .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uV60kye9FX .item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #bdcdc6;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uV60kye9FX .item-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-uV60kye9FX .item-img {
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-uV60kye9FX .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-uV60kye9FX .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-uV60kye9FX .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-uV60kye9FX .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 80px 40px;
}
@media (max-width: 1199px) {
  .cid-uV60kye9FX .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uV60kye9FX .item-content {
    text-align: center;
  }
}
.cid-uV60kye9FX .card-title {
  margin-bottom: 16px;
  color: #767676;
}
.cid-uV60kye9FX .card-text {
  display: inline;
  color: #24262b;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
}
.cid-uV60kye9FX .card-text:hover {
  color: #b79b6c !important;
  border-bottom: 2px solid #b79b6c;
}
.cid-uV60kye9FX .mbr-section-btn {
  margin-top: 20px;
}
.cid-uVwK9aiS5K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.webp");
}
.cid-uVwK9aiS5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVwK9aiS5K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVwK9aiS5K .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uVwK9aiS5K .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uVwK9aiS5K .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uVwK9aiS5K .mbr-section-title {
  color: #2c2d87;
  margin-bottom: 0;
}
.cid-uVwK9aiS5K .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uVwK9aiS5K .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uVwK9aiS5K form {
  width: 100%;
}
.cid-uVwK9aiS5K form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uVwK9aiS5K form p {
  color: #353535;
}
.cid-uVwK9aiS5K form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uVwK9aiS5K form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-uVwK9aiS5K form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-uVwK9aiS5K form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-uVwK9aiS5K form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #b79b6c !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 0;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  transition: .3s;
}
.cid-uVwK9aiS5K form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-uVwK9aiS5K form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-uVwK9aiS5K form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-uVwK9aiS5K form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-uVwK9aiS5K form select {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-uVwK9aiS5K form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form input,
.cid-uVwK9aiS5K form textarea {
  transition: .4s all;
}
.cid-uVwK9aiS5K form input:active,
.cid-uVwK9aiS5K form textarea:active,
.cid-uVwK9aiS5K form input:focus,
.cid-uVwK9aiS5K form textarea:focus {
  background-color: transparent !important;
  border-color: #b79b6c !important;
  outline: none !important;
}
.cid-uVwK9aiS5K form input:active::-webkit-input-placeholder,
.cid-uVwK9aiS5K form textarea:active::-webkit-input-placeholder,
.cid-uVwK9aiS5K form input:focus::-webkit-input-placeholder,
.cid-uVwK9aiS5K form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form input:active::-moz-placeholder,
.cid-uVwK9aiS5K form textarea:active::-moz-placeholder,
.cid-uVwK9aiS5K form input:focus::-moz-placeholder,
.cid-uVwK9aiS5K form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form input:active:-moz-placeholder,
.cid-uVwK9aiS5K form textarea:active:-moz-placeholder,
.cid-uVwK9aiS5K form input:focus:-moz-placeholder,
.cid-uVwK9aiS5K form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form input:active:-ms-input-placeholder,
.cid-uVwK9aiS5K form textarea:active:-ms-input-placeholder,
.cid-uVwK9aiS5K form input:focus:-ms-input-placeholder,
.cid-uVwK9aiS5K form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uVwK9aiS5K form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-uVwK9aiS5K form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-uVwK9aiS5K form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-uVwK9aiS5K form .form-check label {
  color: #353535;
}
.cid-uVwK9aiS5K form .form-check-input {
  border-color: #b79b6c !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uVwK9aiS5K form .form-check-input:focus,
.cid-uVwK9aiS5K form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #b79b6c !important;
}
.cid-uVwK9aiS5K form .form-check-input:checked {
  border-color: #b79b6c !important;
  background-color: #FFFCF5 !important;
}
.cid-uV5yYd2xCE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uV5yYd2xCE .content {
    text-align: center;
  }
  .cid-uV5yYd2xCE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uV5yYd2xCE .logo-subtitle {
  color: #8d97ad;
}
.cid-uV5yYd2xCE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uV5yYd2xCE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uV5yYd2xCE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uV5yYd2xCE .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uV5yYd2xCE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uV5yYd2xCE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uV5yYd2xCE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uV5yYd2xCE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uV5yYd2xCE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uV5yYd2xCE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uV5yYd2xCE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uV5yYd2xCE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uV5yYd2xCE .list-item {
  display: flex;
}
.cid-uV5yYd2xCE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uV5yYd2xCE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uV5yYd2xCE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uV5yYd2xCE ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uV5yYd2xCE .copyright > p {
  text-align: left;
}
.cid-uV5yYd2xCE .mbr-text {
  color: #ffffff;
}
.cid-uV5yYd2xCE P {
  color: #efefef;
}
.cid-uV5yYd2xCE .column-title {
  color: #efefef;
}
.cid-uVz9yNzNUq {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uVz9yNzNUq nav.navbar {
  position: fixed;
}
.cid-uVz9yNzNUq .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-uVz9yNzNUq .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uVz9yNzNUq .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uVz9yNzNUq .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uVz9yNzNUq .dropdown-item:hover,
.cid-uVz9yNzNUq .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uVz9yNzNUq .dropdown-item:hover span {
  color: white;
}
.cid-uVz9yNzNUq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVz9yNzNUq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVz9yNzNUq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVz9yNzNUq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVz9yNzNUq .nav-link {
  position: relative;
}
.cid-uVz9yNzNUq .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uVz9yNzNUq .container {
    flex-wrap: nowrap;
  }
}
.cid-uVz9yNzNUq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVz9yNzNUq .navbar-nav {
  padding: 5px !important;
}
.cid-uVz9yNzNUq .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uVz9yNzNUq .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uVz9yNzNUq .dropdown-menu,
.cid-uVz9yNzNUq .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uVz9yNzNUq .nav-item:focus,
.cid-uVz9yNzNUq .nav-link:focus {
  outline: none;
}
.cid-uVz9yNzNUq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVz9yNzNUq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVz9yNzNUq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVz9yNzNUq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVz9yNzNUq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVz9yNzNUq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVz9yNzNUq .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uVz9yNzNUq .navbar.opened {
  transition: all 0.3s;
}
.cid-uVz9yNzNUq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uVz9yNzNUq .navbar .navbar-logo img {
  width: auto;
}
.cid-uVz9yNzNUq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVz9yNzNUq .navbar.collapsed {
  justify-content: center;
}
.cid-uVz9yNzNUq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVz9yNzNUq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVz9yNzNUq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uVz9yNzNUq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVz9yNzNUq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVz9yNzNUq .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-uVz9yNzNUq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVz9yNzNUq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVz9yNzNUq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVz9yNzNUq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVz9yNzNUq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVz9yNzNUq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVz9yNzNUq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVz9yNzNUq .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-uVz9yNzNUq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVz9yNzNUq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVz9yNzNUq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVz9yNzNUq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVz9yNzNUq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVz9yNzNUq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVz9yNzNUq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVz9yNzNUq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVz9yNzNUq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uVz9yNzNUq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVz9yNzNUq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVz9yNzNUq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVz9yNzNUq .dropdown-item.active,
.cid-uVz9yNzNUq .dropdown-item:active {
  background-color: transparent;
}
.cid-uVz9yNzNUq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVz9yNzNUq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVz9yNzNUq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVz9yNzNUq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uVz9yNzNUq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVz9yNzNUq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVz9yNzNUq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVz9yNzNUq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVz9yNzNUq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVz9yNzNUq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uVz9yNzNUq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVz9yNzNUq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVz9yNzNUq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVz9yNzNUq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVz9yNzNUq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVz9yNzNUq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVz9yNzNUq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVz9yNzNUq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVz9yNzNUq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVz9yNzNUq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVz9yNzNUq .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-uVz9yNzNUq .navbar {
    height: 70px;
  }
  .cid-uVz9yNzNUq .navbar.opened {
    height: auto;
  }
  .cid-uVz9yNzNUq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVz9yNzNUq .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uVz9yNzNUq .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uVz9yNzNUq .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uVz9yNzNUq .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uVz9yNzNUq .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uVz9yNzNUq .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uVz9yNzNUq .container {
    overflow: hidden;
  }
  .cid-uVz9yNzNUq .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uVz9yNzNUq .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uVz9yNzNUq .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uVz9yNzNUq .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uVz9yNzNUq .navbar-nav {
    padding: 0 !important;
  }
  .cid-uVz9yNzNUq .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uVz9yNzNUq .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uVz9yNzNUq .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVz9yNzNUq .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uVz9yNzNUq .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVz9yNzNUq .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVz9yNzNUq .container {
    padding: 25px 15px !important;
  }
  .cid-uVz9yNzNUq .container-head {
    padding: 10px !important;
  }
  .cid-uVz9yNzNUq .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uVz9yNzNUq .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uVz9yNzNUq .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uVz9yO20uL {
  background-image: url("../../../assets/images/mbr-1-1920x1080.webp");
}
.cid-uVz9yO20uL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVz9yO20uL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uVz9yO20uL .col-content {
    text-align: center;
  }
}
.cid-uVz9yO20uL .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uVz9yO20uL .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uVz9yO20uL .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uVz9yO20uL .mbr-section-btn {
  margin-top: 22px;
}
.cid-uVz9yO20uL .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uVz9yO20uL .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uVz9yO20uL .text-item {
    text-align: center;
  }
}
.cid-uVz9yO20uL .mbr-text {
  color: #24262b;
}
.cid-uVz9yO20uL .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uVKVQO3eVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e4eedb;
}
.cid-uVKVQO3eVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVKVQO3eVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVKVQO3eVR .card {
  justify-content: center;
}
.cid-uVKVQO3eVR .image-wrapper {
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-uVKVQO3eVR .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uVKVQO3eVR .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVKVQO3eVR .image-wrapper img {
    height: 350px;
  }
}
.cid-uVKVQO3eVR .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVKVQO3eVR .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVKVQO3eVR .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVKVQO3eVR .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVKVQO3eVR .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVKVQO3eVR .mbr-section-title {
  color: #000000;
}
.cid-uVKVQO3eVR .mbr-section-subtitle {
  color: #000000;
}
.cid-uVKVQO3eVR .mbr-text,
.cid-uVKVQO3eVR .text-wrapper {
  color: #000000;
}
.cid-uVz9yOtSQN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uVz9yOtSQN .content {
    text-align: center;
  }
  .cid-uVz9yOtSQN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uVz9yOtSQN .logo-subtitle {
  color: #8d97ad;
}
.cid-uVz9yOtSQN .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uVz9yOtSQN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uVz9yOtSQN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uVz9yOtSQN .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uVz9yOtSQN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVz9yOtSQN .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uVz9yOtSQN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uVz9yOtSQN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uVz9yOtSQN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVz9yOtSQN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uVz9yOtSQN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVz9yOtSQN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVz9yOtSQN .list-item {
  display: flex;
}
.cid-uVz9yOtSQN .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uVz9yOtSQN ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uVz9yOtSQN ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uVz9yOtSQN ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uVz9yOtSQN .copyright > p {
  text-align: left;
}
.cid-uVz9yOtSQN .mbr-text {
  color: #ffffff;
}
.cid-uVz9yOtSQN P {
  color: #efefef;
}
.cid-uVz9yOtSQN .column-title {
  color: #efefef;
}
.cid-uVzcRThviV {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uVzcRThviV nav.navbar {
  position: fixed;
}
.cid-uVzcRThviV .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-uVzcRThviV .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uVzcRThviV .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uVzcRThviV .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uVzcRThviV .dropdown-item:hover,
.cid-uVzcRThviV .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uVzcRThviV .dropdown-item:hover span {
  color: white;
}
.cid-uVzcRThviV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVzcRThviV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVzcRThviV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVzcRThviV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVzcRThviV .nav-link {
  position: relative;
}
.cid-uVzcRThviV .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uVzcRThviV .container {
    flex-wrap: nowrap;
  }
}
.cid-uVzcRThviV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVzcRThviV .navbar-nav {
  padding: 5px !important;
}
.cid-uVzcRThviV .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uVzcRThviV .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uVzcRThviV .dropdown-menu,
.cid-uVzcRThviV .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uVzcRThviV .nav-item:focus,
.cid-uVzcRThviV .nav-link:focus {
  outline: none;
}
.cid-uVzcRThviV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVzcRThviV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVzcRThviV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVzcRThviV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVzcRThviV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVzcRThviV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVzcRThviV .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uVzcRThviV .navbar.opened {
  transition: all 0.3s;
}
.cid-uVzcRThviV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uVzcRThviV .navbar .navbar-logo img {
  width: auto;
}
.cid-uVzcRThviV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVzcRThviV .navbar.collapsed {
  justify-content: center;
}
.cid-uVzcRThviV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVzcRThviV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVzcRThviV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uVzcRThviV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVzcRThviV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVzcRThviV .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-uVzcRThviV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVzcRThviV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVzcRThviV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVzcRThviV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVzcRThviV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVzcRThviV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVzcRThviV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVzcRThviV .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-uVzcRThviV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVzcRThviV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVzcRThviV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVzcRThviV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVzcRThviV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVzcRThviV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVzcRThviV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVzcRThviV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVzcRThviV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uVzcRThviV .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVzcRThviV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVzcRThviV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVzcRThviV .dropdown-item.active,
.cid-uVzcRThviV .dropdown-item:active {
  background-color: transparent;
}
.cid-uVzcRThviV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVzcRThviV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVzcRThviV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVzcRThviV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uVzcRThviV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVzcRThviV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVzcRThviV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVzcRThviV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVzcRThviV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVzcRThviV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uVzcRThviV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVzcRThviV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVzcRThviV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVzcRThviV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVzcRThviV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVzcRThviV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVzcRThviV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVzcRThviV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVzcRThviV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVzcRThviV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVzcRThviV .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-uVzcRThviV .navbar {
    height: 70px;
  }
  .cid-uVzcRThviV .navbar.opened {
    height: auto;
  }
  .cid-uVzcRThviV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVzcRThviV .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uVzcRThviV .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uVzcRThviV .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uVzcRThviV .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uVzcRThviV .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uVzcRThviV .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uVzcRThviV .container {
    overflow: hidden;
  }
  .cid-uVzcRThviV .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uVzcRThviV .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uVzcRThviV .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uVzcRThviV .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uVzcRThviV .navbar-nav {
    padding: 0 !important;
  }
  .cid-uVzcRThviV .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uVzcRThviV .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uVzcRThviV .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVzcRThviV .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uVzcRThviV .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVzcRThviV .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVzcRThviV .container {
    padding: 25px 15px !important;
  }
  .cid-uVzcRThviV .container-head {
    padding: 10px !important;
  }
  .cid-uVzcRThviV .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uVzcRThviV .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uVzcRThviV .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uVzcRTOHJZ {
  background-image: url("../../../assets/images/mujer-joven-teniendo-un-tratamiento-facial-2000x1333.webp");
}
.cid-uVzcRTOHJZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVzcRTOHJZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uVzcRTOHJZ .col-content {
    text-align: center;
  }
}
.cid-uVzcRTOHJZ .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uVzcRTOHJZ .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uVzcRTOHJZ .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uVzcRTOHJZ .mbr-section-btn {
  margin-top: 22px;
}
.cid-uVzcRTOHJZ .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uVzcRTOHJZ .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uVzcRTOHJZ .text-item {
    text-align: center;
  }
}
.cid-uVzcRTOHJZ .mbr-text {
  color: #24262b;
}
.cid-uVzcRTOHJZ .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uVL2MK0KFI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e4eedb;
}
.cid-uVL2MK0KFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVL2MK0KFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVL2MK0KFI .card {
  justify-content: center;
}
.cid-uVL2MK0KFI .image-wrapper {
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-uVL2MK0KFI .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uVL2MK0KFI .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVL2MK0KFI .image-wrapper img {
    height: 350px;
  }
}
.cid-uVL2MK0KFI .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVL2MK0KFI .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVL2MK0KFI .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVL2MK0KFI .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVL2MK0KFI .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVL2MK0KFI .mbr-section-title {
  color: #000000;
}
.cid-uVL2MK0KFI .mbr-section-subtitle {
  color: #000000;
}
.cid-uVL2MK0KFI .mbr-text,
.cid-uVL2MK0KFI .text-wrapper {
  color: #000000;
}
.cid-uVL3H4yaAZ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fff0eb;
}
.cid-uVL3H4yaAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVL3H4yaAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVL3H4yaAZ .card {
  justify-content: center;
}
.cid-uVL3H4yaAZ .image-wrapper {
  padding-right: 70px;
  padding-right: 0;
  padding-left: 70px;
}
@media (max-width: 992px) {
  .cid-uVL3H4yaAZ .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uVL3H4yaAZ .image-wrapper {
    padding-left: 0;
  }
}
.cid-uVL3H4yaAZ .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVL3H4yaAZ .image-wrapper img {
    height: 350px;
  }
}
.cid-uVL3H4yaAZ .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVL3H4yaAZ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVL3H4yaAZ .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVL3H4yaAZ .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVL3H4yaAZ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVL3H4yaAZ .mbr-section-title {
  color: #000000;
}
.cid-uVL3H4yaAZ .mbr-section-subtitle {
  color: #000000;
}
.cid-uVL3H4yaAZ .mbr-text,
.cid-uVL3H4yaAZ .text-wrapper {
  color: #000000;
}
.cid-uVzcRUplnS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uVzcRUplnS .content {
    text-align: center;
  }
  .cid-uVzcRUplnS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uVzcRUplnS .logo-subtitle {
  color: #8d97ad;
}
.cid-uVzcRUplnS .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uVzcRUplnS .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uVzcRUplnS .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uVzcRUplnS .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uVzcRUplnS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVzcRUplnS .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uVzcRUplnS .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uVzcRUplnS .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uVzcRUplnS .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVzcRUplnS .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uVzcRUplnS .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVzcRUplnS .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVzcRUplnS .list-item {
  display: flex;
}
.cid-uVzcRUplnS .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uVzcRUplnS ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uVzcRUplnS ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uVzcRUplnS ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uVzcRUplnS .copyright > p {
  text-align: left;
}
.cid-uVzcRUplnS .mbr-text {
  color: #ffffff;
}
.cid-uVzcRUplnS P {
  color: #efefef;
}
.cid-uVzcRUplnS .column-title {
  color: #efefef;
}
.cid-uVzhb6D8fL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uVzhb6D8fL nav.navbar {
  position: fixed;
}
.cid-uVzhb6D8fL .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-uVzhb6D8fL .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uVzhb6D8fL .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uVzhb6D8fL .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uVzhb6D8fL .dropdown-item:hover,
.cid-uVzhb6D8fL .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uVzhb6D8fL .dropdown-item:hover span {
  color: white;
}
.cid-uVzhb6D8fL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVzhb6D8fL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVzhb6D8fL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVzhb6D8fL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVzhb6D8fL .nav-link {
  position: relative;
}
.cid-uVzhb6D8fL .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uVzhb6D8fL .container {
    flex-wrap: nowrap;
  }
}
.cid-uVzhb6D8fL .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVzhb6D8fL .navbar-nav {
  padding: 5px !important;
}
.cid-uVzhb6D8fL .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uVzhb6D8fL .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uVzhb6D8fL .dropdown-menu,
.cid-uVzhb6D8fL .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uVzhb6D8fL .nav-item:focus,
.cid-uVzhb6D8fL .nav-link:focus {
  outline: none;
}
.cid-uVzhb6D8fL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVzhb6D8fL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVzhb6D8fL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVzhb6D8fL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVzhb6D8fL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVzhb6D8fL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVzhb6D8fL .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uVzhb6D8fL .navbar.opened {
  transition: all 0.3s;
}
.cid-uVzhb6D8fL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uVzhb6D8fL .navbar .navbar-logo img {
  width: auto;
}
.cid-uVzhb6D8fL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVzhb6D8fL .navbar.collapsed {
  justify-content: center;
}
.cid-uVzhb6D8fL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVzhb6D8fL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVzhb6D8fL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uVzhb6D8fL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVzhb6D8fL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVzhb6D8fL .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-uVzhb6D8fL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVzhb6D8fL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVzhb6D8fL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVzhb6D8fL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVzhb6D8fL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVzhb6D8fL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVzhb6D8fL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVzhb6D8fL .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-uVzhb6D8fL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVzhb6D8fL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVzhb6D8fL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVzhb6D8fL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVzhb6D8fL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVzhb6D8fL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVzhb6D8fL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVzhb6D8fL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVzhb6D8fL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uVzhb6D8fL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVzhb6D8fL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVzhb6D8fL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVzhb6D8fL .dropdown-item.active,
.cid-uVzhb6D8fL .dropdown-item:active {
  background-color: transparent;
}
.cid-uVzhb6D8fL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVzhb6D8fL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVzhb6D8fL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVzhb6D8fL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uVzhb6D8fL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVzhb6D8fL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVzhb6D8fL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVzhb6D8fL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVzhb6D8fL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVzhb6D8fL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uVzhb6D8fL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVzhb6D8fL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVzhb6D8fL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVzhb6D8fL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVzhb6D8fL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVzhb6D8fL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVzhb6D8fL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVzhb6D8fL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVzhb6D8fL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVzhb6D8fL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVzhb6D8fL .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-uVzhb6D8fL .navbar {
    height: 70px;
  }
  .cid-uVzhb6D8fL .navbar.opened {
    height: auto;
  }
  .cid-uVzhb6D8fL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVzhb6D8fL .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uVzhb6D8fL .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uVzhb6D8fL .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uVzhb6D8fL .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uVzhb6D8fL .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uVzhb6D8fL .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uVzhb6D8fL .container {
    overflow: hidden;
  }
  .cid-uVzhb6D8fL .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uVzhb6D8fL .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uVzhb6D8fL .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uVzhb6D8fL .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uVzhb6D8fL .navbar-nav {
    padding: 0 !important;
  }
  .cid-uVzhb6D8fL .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uVzhb6D8fL .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uVzhb6D8fL .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVzhb6D8fL .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uVzhb6D8fL .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVzhb6D8fL .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVzhb6D8fL .container {
    padding: 25px 15px !important;
  }
  .cid-uVzhb6D8fL .container-head {
    padding: 10px !important;
  }
  .cid-uVzhb6D8fL .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uVzhb6D8fL .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uVzhb6D8fL .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uVzhb75Al4 {
  background-image: url("../../../assets/images/mbr-11-1920x1280.webp");
}
.cid-uVzhb75Al4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVzhb75Al4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uVzhb75Al4 .col-content {
    text-align: center;
  }
}
.cid-uVzhb75Al4 .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uVzhb75Al4 .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uVzhb75Al4 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uVzhb75Al4 .mbr-section-btn {
  margin-top: 22px;
}
.cid-uVzhb75Al4 .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uVzhb75Al4 .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uVzhb75Al4 .text-item {
    text-align: center;
  }
}
.cid-uVzhb75Al4 .mbr-text {
  color: #24262b;
}
.cid-uVzhb75Al4 .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uVL6lchkSv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #e4eedb;
}
.cid-uVL6lchkSv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVL6lchkSv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVL6lchkSv .card {
  justify-content: center;
}
.cid-uVL6lchkSv .image-wrapper {
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-uVL6lchkSv .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uVL6lchkSv .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVL6lchkSv .image-wrapper img {
    height: 350px;
  }
}
.cid-uVL6lchkSv .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVL6lchkSv .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVL6lchkSv .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVL6lchkSv .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVL6lchkSv .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVL6lchkSv .mbr-section-title {
  color: #000000;
}
.cid-uVL6lchkSv .mbr-section-subtitle {
  color: #000000;
}
.cid-uVL6lchkSv .mbr-text,
.cid-uVL6lchkSv .text-wrapper {
  color: #000000;
}
.cid-uVL7UkE05e {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #bdcdc6;
}
.cid-uVL7UkE05e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVL7UkE05e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVL7UkE05e .card {
  justify-content: center;
}
.cid-uVL7UkE05e .image-wrapper {
  padding-right: 70px;
  padding-right: 0;
  padding-left: 70px;
}
@media (max-width: 992px) {
  .cid-uVL7UkE05e .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uVL7UkE05e .image-wrapper {
    padding-left: 0;
  }
}
.cid-uVL7UkE05e .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVL7UkE05e .image-wrapper img {
    height: 350px;
  }
}
.cid-uVL7UkE05e .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVL7UkE05e .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVL7UkE05e .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVL7UkE05e .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVL7UkE05e .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVL7UkE05e .mbr-section-title {
  color: #000000;
}
.cid-uVL7UkE05e .mbr-section-subtitle {
  color: #000000;
}
.cid-uVL7UkE05e .mbr-text,
.cid-uVL7UkE05e .text-wrapper {
  color: #000000;
}
.cid-uVLa7ARUaX {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fff0eb;
}
.cid-uVLa7ARUaX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVLa7ARUaX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVLa7ARUaX .card {
  justify-content: center;
}
.cid-uVLa7ARUaX .image-wrapper {
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-uVLa7ARUaX .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uVLa7ARUaX .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVLa7ARUaX .image-wrapper img {
    height: 350px;
  }
}
.cid-uVLa7ARUaX .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVLa7ARUaX .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVLa7ARUaX .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uVLa7ARUaX .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVLa7ARUaX .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVLa7ARUaX .mbr-section-title {
  color: #000000;
}
.cid-uVLa7ARUaX .mbr-section-subtitle {
  color: #000000;
}
.cid-uVLa7ARUaX .mbr-text,
.cid-uVLa7ARUaX .text-wrapper {
  color: #000000;
}
.cid-uVzhb7BKv3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uVzhb7BKv3 .content {
    text-align: center;
  }
  .cid-uVzhb7BKv3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uVzhb7BKv3 .logo-subtitle {
  color: #8d97ad;
}
.cid-uVzhb7BKv3 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uVzhb7BKv3 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uVzhb7BKv3 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uVzhb7BKv3 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uVzhb7BKv3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVzhb7BKv3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uVzhb7BKv3 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uVzhb7BKv3 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uVzhb7BKv3 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVzhb7BKv3 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uVzhb7BKv3 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVzhb7BKv3 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVzhb7BKv3 .list-item {
  display: flex;
}
.cid-uVzhb7BKv3 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uVzhb7BKv3 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uVzhb7BKv3 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uVzhb7BKv3 ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uVzhb7BKv3 .copyright > p {
  text-align: left;
}
.cid-uVzhb7BKv3 .mbr-text {
  color: #ffffff;
}
.cid-uVzhb7BKv3 P {
  color: #efefef;
}
.cid-uVzhb7BKv3 .column-title {
  color: #efefef;
}
.cid-uVLm8uvFNv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x749.webp");
}
.cid-uVLm8uvFNv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVLm8uvFNv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uVLm8uvFNv .col-content {
    text-align: center;
  }
}
.cid-uVLm8uvFNv .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uVLm8uvFNv .mbr-section-title {
  color: #efefef;
  text-align: left;
}
.cid-uVLm8uvFNv .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uVLm8uvFNv .mbr-section-btn {
  margin-top: 22px;
}
.cid-uVLm8uvFNv .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uVLm8uvFNv .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uVLm8uvFNv .text-item {
    text-align: center;
  }
}
.cid-uVLm8uvFNv .mbr-text {
  color: #24262b;
}
.cid-uVLm8uvFNv .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uVLm8sCc4w {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uVLm8sCc4w nav.navbar {
  position: fixed;
}
.cid-uVLm8sCc4w .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-uVLm8sCc4w .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uVLm8sCc4w .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uVLm8sCc4w .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uVLm8sCc4w .dropdown-item:hover,
.cid-uVLm8sCc4w .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uVLm8sCc4w .dropdown-item:hover span {
  color: white;
}
.cid-uVLm8sCc4w .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVLm8sCc4w .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVLm8sCc4w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVLm8sCc4w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVLm8sCc4w .nav-link {
  position: relative;
}
.cid-uVLm8sCc4w .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uVLm8sCc4w .container {
    flex-wrap: nowrap;
  }
}
.cid-uVLm8sCc4w .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVLm8sCc4w .navbar-nav {
  padding: 5px !important;
}
.cid-uVLm8sCc4w .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uVLm8sCc4w .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uVLm8sCc4w .dropdown-menu,
.cid-uVLm8sCc4w .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uVLm8sCc4w .nav-item:focus,
.cid-uVLm8sCc4w .nav-link:focus {
  outline: none;
}
.cid-uVLm8sCc4w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVLm8sCc4w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVLm8sCc4w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVLm8sCc4w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVLm8sCc4w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVLm8sCc4w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVLm8sCc4w .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uVLm8sCc4w .navbar.opened {
  transition: all 0.3s;
}
.cid-uVLm8sCc4w .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uVLm8sCc4w .navbar .navbar-logo img {
  width: auto;
}
.cid-uVLm8sCc4w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVLm8sCc4w .navbar.collapsed {
  justify-content: center;
}
.cid-uVLm8sCc4w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVLm8sCc4w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVLm8sCc4w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uVLm8sCc4w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVLm8sCc4w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVLm8sCc4w .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-uVLm8sCc4w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVLm8sCc4w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVLm8sCc4w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVLm8sCc4w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVLm8sCc4w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVLm8sCc4w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVLm8sCc4w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVLm8sCc4w .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-uVLm8sCc4w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVLm8sCc4w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVLm8sCc4w .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVLm8sCc4w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVLm8sCc4w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVLm8sCc4w .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVLm8sCc4w .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVLm8sCc4w .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVLm8sCc4w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uVLm8sCc4w .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVLm8sCc4w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVLm8sCc4w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVLm8sCc4w .dropdown-item.active,
.cid-uVLm8sCc4w .dropdown-item:active {
  background-color: transparent;
}
.cid-uVLm8sCc4w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVLm8sCc4w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVLm8sCc4w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVLm8sCc4w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uVLm8sCc4w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVLm8sCc4w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVLm8sCc4w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVLm8sCc4w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVLm8sCc4w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVLm8sCc4w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uVLm8sCc4w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVLm8sCc4w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVLm8sCc4w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVLm8sCc4w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVLm8sCc4w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVLm8sCc4w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVLm8sCc4w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVLm8sCc4w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVLm8sCc4w .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVLm8sCc4w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVLm8sCc4w .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-uVLm8sCc4w .navbar {
    height: 70px;
  }
  .cid-uVLm8sCc4w .navbar.opened {
    height: auto;
  }
  .cid-uVLm8sCc4w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVLm8sCc4w .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uVLm8sCc4w .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uVLm8sCc4w .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uVLm8sCc4w .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uVLm8sCc4w .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uVLm8sCc4w .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uVLm8sCc4w .container {
    overflow: hidden;
  }
  .cid-uVLm8sCc4w .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uVLm8sCc4w .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uVLm8sCc4w .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uVLm8sCc4w .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uVLm8sCc4w .navbar-nav {
    padding: 0 !important;
  }
  .cid-uVLm8sCc4w .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uVLm8sCc4w .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uVLm8sCc4w .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVLm8sCc4w .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uVLm8sCc4w .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVLm8sCc4w .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVLm8sCc4w .container {
    padding: 25px 15px !important;
  }
  .cid-uVLm8sCc4w .container-head {
    padding: 10px !important;
  }
  .cid-uVLm8sCc4w .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uVLm8sCc4w .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uVLm8sCc4w .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uVLnqauB6Q {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-uVLnqauB6Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVLnqauB6Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVLnqauB6Q .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uVLnqauB6Q .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uVLnqauB6Q .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
  background-image: linear-gradient(-165deg, #24262b, #000000 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uVLnqauB6Q .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVLnqauB6Q .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-uVLnqauB6Q .mbr-section-title {
  color: #000000;
}
.cid-uVLnqauB6Q .mbr-text,
.cid-uVLnqauB6Q .text-wrapper {
  color: #2c2d87;
  text-align: left;
}
.cid-uVLnqauB6Q .mbr-section-title,
.cid-uVLnqauB6Q .title-wrapper,
.cid-uVLnqauB6Q .mbr-section-btn {
  text-align: center;
}
.cid-uVLm8vF2xW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uVLm8vF2xW .content {
    text-align: center;
  }
  .cid-uVLm8vF2xW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uVLm8vF2xW .logo-subtitle {
  color: #8d97ad;
}
.cid-uVLm8vF2xW .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uVLm8vF2xW .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uVLm8vF2xW .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uVLm8vF2xW .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uVLm8vF2xW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVLm8vF2xW .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uVLm8vF2xW .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uVLm8vF2xW .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uVLm8vF2xW .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVLm8vF2xW .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uVLm8vF2xW .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVLm8vF2xW .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVLm8vF2xW .list-item {
  display: flex;
}
.cid-uVLm8vF2xW .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uVLm8vF2xW ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uVLm8vF2xW ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uVLm8vF2xW ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uVLm8vF2xW .copyright > p {
  text-align: left;
}
.cid-uVLm8vF2xW .mbr-text {
  color: #ffffff;
}
.cid-uVLm8vF2xW P {
  color: #efefef;
}
.cid-uVLm8vF2xW .column-title {
  color: #efefef;
}
.cid-uVLmNe6Xwh {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uVLmNe6Xwh nav.navbar {
  position: fixed;
}
.cid-uVLmNe6Xwh .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-uVLmNe6Xwh .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uVLmNe6Xwh .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uVLmNe6Xwh .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uVLmNe6Xwh .dropdown-item:hover,
.cid-uVLmNe6Xwh .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uVLmNe6Xwh .dropdown-item:hover span {
  color: white;
}
.cid-uVLmNe6Xwh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVLmNe6Xwh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVLmNe6Xwh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVLmNe6Xwh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVLmNe6Xwh .nav-link {
  position: relative;
}
.cid-uVLmNe6Xwh .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uVLmNe6Xwh .container {
    flex-wrap: nowrap;
  }
}
.cid-uVLmNe6Xwh .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVLmNe6Xwh .navbar-nav {
  padding: 5px !important;
}
.cid-uVLmNe6Xwh .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uVLmNe6Xwh .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uVLmNe6Xwh .dropdown-menu,
.cid-uVLmNe6Xwh .navbar.opened {
  background: #2c2d87 !important;
}
.cid-uVLmNe6Xwh .nav-item:focus,
.cid-uVLmNe6Xwh .nav-link:focus {
  outline: none;
}
.cid-uVLmNe6Xwh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVLmNe6Xwh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVLmNe6Xwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVLmNe6Xwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVLmNe6Xwh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVLmNe6Xwh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVLmNe6Xwh .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2c2d87;
  padding: 0 !important;
  border: none !important;
}
.cid-uVLmNe6Xwh .navbar.opened {
  transition: all 0.3s;
}
.cid-uVLmNe6Xwh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uVLmNe6Xwh .navbar .navbar-logo img {
  width: auto;
}
.cid-uVLmNe6Xwh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVLmNe6Xwh .navbar.collapsed {
  justify-content: center;
}
.cid-uVLmNe6Xwh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVLmNe6Xwh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVLmNe6Xwh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-uVLmNe6Xwh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVLmNe6Xwh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVLmNe6Xwh .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-uVLmNe6Xwh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVLmNe6Xwh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVLmNe6Xwh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVLmNe6Xwh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVLmNe6Xwh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVLmNe6Xwh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVLmNe6Xwh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVLmNe6Xwh .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-uVLmNe6Xwh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVLmNe6Xwh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVLmNe6Xwh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVLmNe6Xwh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVLmNe6Xwh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVLmNe6Xwh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVLmNe6Xwh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVLmNe6Xwh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVLmNe6Xwh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uVLmNe6Xwh .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVLmNe6Xwh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVLmNe6Xwh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVLmNe6Xwh .dropdown-item.active,
.cid-uVLmNe6Xwh .dropdown-item:active {
  background-color: transparent;
}
.cid-uVLmNe6Xwh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVLmNe6Xwh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVLmNe6Xwh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVLmNe6Xwh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c2d87;
}
.cid-uVLmNe6Xwh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVLmNe6Xwh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVLmNe6Xwh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVLmNe6Xwh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVLmNe6Xwh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVLmNe6Xwh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uVLmNe6Xwh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVLmNe6Xwh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVLmNe6Xwh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVLmNe6Xwh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVLmNe6Xwh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVLmNe6Xwh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVLmNe6Xwh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVLmNe6Xwh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVLmNe6Xwh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVLmNe6Xwh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVLmNe6Xwh .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-uVLmNe6Xwh .navbar {
    height: 70px;
  }
  .cid-uVLmNe6Xwh .navbar.opened {
    height: auto;
  }
  .cid-uVLmNe6Xwh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVLmNe6Xwh .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #90afa1;
}
.cid-uVLmNe6Xwh .mbr-section-title {
  color: #2c2d87;
  max-width: 50%;
  margin-right: auto;
}
.cid-uVLmNe6Xwh .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uVLmNe6Xwh .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uVLmNe6Xwh .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uVLmNe6Xwh .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uVLmNe6Xwh .container {
    overflow: hidden;
  }
  .cid-uVLmNe6Xwh .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uVLmNe6Xwh .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uVLmNe6Xwh .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uVLmNe6Xwh .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uVLmNe6Xwh .navbar-nav {
    padding: 0 !important;
  }
  .cid-uVLmNe6Xwh .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uVLmNe6Xwh .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uVLmNe6Xwh .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVLmNe6Xwh .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uVLmNe6Xwh .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uVLmNe6Xwh .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVLmNe6Xwh .container {
    padding: 25px 15px !important;
  }
  .cid-uVLmNe6Xwh .container-head {
    padding: 10px !important;
  }
  .cid-uVLmNe6Xwh .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uVLmNe6Xwh .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uVLmNe6Xwh .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uVLmNg8DK1 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-12-1920x1280.webp");
}
.cid-uVLmNg8DK1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVLmNg8DK1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uVLmNg8DK1 .col-content {
    text-align: center;
  }
}
.cid-uVLmNg8DK1 .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-uVLmNg8DK1 .mbr-section-title {
  color: #2c2d87;
  text-align: left;
}
.cid-uVLmNg8DK1 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uVLmNg8DK1 .mbr-section-btn {
  margin-top: 22px;
}
.cid-uVLmNg8DK1 .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-uVLmNg8DK1 .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uVLmNg8DK1 .text-item {
    text-align: center;
  }
}
.cid-uVLmNg8DK1 .mbr-text {
  color: #24262b;
}
.cid-uVLmNg8DK1 .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uVOhiBSaqY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0eb;
}
.cid-uVOhiBSaqY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVOhiBSaqY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVOhiBSaqY .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uVOhiBSaqY .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uVOhiBSaqY .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
  background-image: linear-gradient(-165deg, #9c9c9c, #000000 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uVOhiBSaqY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVOhiBSaqY .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-uVOhiBSaqY .mbr-section-title {
  color: #000000;
}
.cid-uVOhiBSaqY .mbr-text,
.cid-uVOhiBSaqY .text-wrapper {
  color: #515151;
  text-align: left;
}
.cid-uVOhiBSaqY .mbr-section-title,
.cid-uVOhiBSaqY .title-wrapper,
.cid-uVOhiBSaqY .mbr-section-btn {
  text-align: center;
}
.cid-uVLmNhkmv0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2c2d87;
}
@media (max-width: 767px) {
  .cid-uVLmNhkmv0 .content {
    text-align: center;
  }
  .cid-uVLmNhkmv0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uVLmNhkmv0 .logo-subtitle {
  color: #8d97ad;
}
.cid-uVLmNhkmv0 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uVLmNhkmv0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uVLmNhkmv0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uVLmNhkmv0 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uVLmNhkmv0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVLmNhkmv0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uVLmNhkmv0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uVLmNhkmv0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uVLmNhkmv0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVLmNhkmv0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uVLmNhkmv0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVLmNhkmv0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVLmNhkmv0 .list-item {
  display: flex;
}
.cid-uVLmNhkmv0 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uVLmNhkmv0 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uVLmNhkmv0 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uVLmNhkmv0 ul.list li::none {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uVLmNhkmv0 .copyright > p {
  text-align: left;
}
.cid-uVLmNhkmv0 .mbr-text {
  color: #ffffff;
}
.cid-uVLmNhkmv0 P {
  color: #efefef;
}
.cid-uVLmNhkmv0 .column-title {
  color: #efefef;
}
