body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #a148ff !important;
}
.bg-success {
  background-color: #263d5a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #a148ff !important;
  background: linear-gradient(90deg, #a148ff 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #a148ff;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #ff6f45 !important;
  background: linear-gradient(90deg, #ff6f45 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6f45;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #263d5a !important;
  background: linear-gradient(90deg, #263d5a 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #263d5a;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a148ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #7500f0 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a148ff !important;
  border-color: #a148ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6f45;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ed3600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6f45 !important;
  border-color: #ff6f45 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #263d5a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c141d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #263d5a !important;
  border-color: #263d5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #a148ff !important;
}
.text-secondary {
  color: #ff6f45 !important;
}
.text-success {
  color: #263d5a !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6d00e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #de3200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080c12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #a148ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a148ff;
  border-color: #a148ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a148ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4c7ab3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lexend', 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: #a148ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', 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: #a148ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a148ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a148ff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a148ff;
  border-bottom-color: #a148ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #a148ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6f45 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23a148ff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 445px) {
  .container-banner {
    height: 11.5rem!important;
  }
}
.cid-ukT9xOoX7o {
  z-index: 1000;
  width: 100%;
}
.cid-ukT9xOoX7o nav.navbar {
  position: fixed;
}
.cid-ukT9xOoX7o .navbar-nav {
  margin: auto;
}
.cid-ukT9xOoX7o .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukT9xOoX7o .dropdown-item:hover,
.cid-ukT9xOoX7o .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-ukT9xOoX7o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukT9xOoX7o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukT9xOoX7o .navbar-short,
.cid-ukT9xOoX7o .opened {
  background: #ffffff !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-ukT9xOoX7o .navbar-short .nav-link,
.cid-ukT9xOoX7o .opened .nav-link,
.cid-ukT9xOoX7o .navbar-short .navbar-caption,
.cid-ukT9xOoX7o .opened .navbar-caption,
.cid-ukT9xOoX7o .navbar-short .mbr-iconfont,
.cid-ukT9xOoX7o .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-ukT9xOoX7o .navbar-short .hamburger span,
.cid-ukT9xOoX7o .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ukT9xOoX7o .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-ukT9xOoX7o .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-ukT9xOoX7o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukT9xOoX7o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukT9xOoX7o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukT9xOoX7o .container {
  display: flex;
  margin: auto;
}
.cid-ukT9xOoX7o .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukT9xOoX7o .dropdown-menu,
.cid-ukT9xOoX7o .navbar.opened {
  background: #ffffff !important;
}
.cid-ukT9xOoX7o .nav-item:focus,
.cid-ukT9xOoX7o .nav-link:focus {
  outline: none;
}
.cid-ukT9xOoX7o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukT9xOoX7o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukT9xOoX7o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukT9xOoX7o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukT9xOoX7o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukT9xOoX7o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukT9xOoX7o .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-ukT9xOoX7o .navbar.opened {
  transition: all 0.3s;
}
.cid-ukT9xOoX7o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukT9xOoX7o .navbar .navbar-logo img {
  width: auto;
}
.cid-ukT9xOoX7o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukT9xOoX7o .navbar.collapsed {
  justify-content: center;
}
.cid-ukT9xOoX7o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukT9xOoX7o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukT9xOoX7o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukT9xOoX7o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukT9xOoX7o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukT9xOoX7o .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-ukT9xOoX7o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukT9xOoX7o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukT9xOoX7o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukT9xOoX7o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukT9xOoX7o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukT9xOoX7o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukT9xOoX7o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukT9xOoX7o .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-ukT9xOoX7o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukT9xOoX7o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukT9xOoX7o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukT9xOoX7o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukT9xOoX7o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukT9xOoX7o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ukT9xOoX7o .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukT9xOoX7o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukT9xOoX7o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukT9xOoX7o .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukT9xOoX7o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukT9xOoX7o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukT9xOoX7o .dropdown-item.active,
.cid-ukT9xOoX7o .dropdown-item:active {
  background-color: transparent;
}
.cid-ukT9xOoX7o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukT9xOoX7o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukT9xOoX7o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukT9xOoX7o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukT9xOoX7o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukT9xOoX7o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukT9xOoX7o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukT9xOoX7o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukT9xOoX7o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukT9xOoX7o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ukT9xOoX7o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukT9xOoX7o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukT9xOoX7o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukT9xOoX7o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukT9xOoX7o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukT9xOoX7o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukT9xOoX7o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukT9xOoX7o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukT9xOoX7o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukT9xOoX7o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukT9xOoX7o .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-ukT9xOoX7o .navbar {
    height: 70px;
  }
  .cid-ukT9xOoX7o .navbar.opened {
    height: auto;
  }
  .cid-ukT9xOoX7o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukTdCQogzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukTdCQogzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ukTdCQogzY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukTdCQogzY .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukTdCQogzY .container {
    padding: 0 30px;
  }
}
.cid-ukTdCQogzY .row {
  justify-content: center;
}
.cid-ukTdCQogzY .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-ukTdCQogzY .content-wrapper {
    padding: 80px 0;
  }
}
.cid-ukTdCQogzY .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ukTdCQogzY .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ukTdCQogzY .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ukTdCQogzY .mbr-desc {
  color: #c7fcb5;
}
.cid-ukTdCQogzY .mbr-section-title {
  color: #ffffff;
}
.cid-ukTdCQogzY .mbr-text {
  color: #ffffff;
}
.cid-sz528Lv0MU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/2-1080x717.png");
}
.cid-sz528Lv0MU img {
  border-radius: 30px;
}
.cid-sz528Lv0MU .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sz528Lv0MU .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sz528Lv0MU .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-sz528Lv0MU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz528Lv0MU .mbr-section-title {
  color: #263d5a;
}
.cid-sz528Lv0MU .mbr-text,
.cid-sz528Lv0MU .mbr-section-btn {
  color: #263d5a;
}
.cid-sz528Lv0MU .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ukT94rQ4E8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ukT94rQ4E8 .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ukT94rQ4E8 .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukT94rQ4E8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukT94rQ4E8 .mbr-section-title {
  color: #103178;
}
.cid-ukT94rQ4E8 .mbr-text,
.cid-ukT94rQ4E8 .mbr-section-btn {
  color: #103178;
}
.cid-ukT94rQ4E8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukT94rQ4E8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukSQ3jMTb6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/1-1080x718.png");
}
.cid-ukSQ3jMTb6 img {
  width: 100%;
  border-radius: 30px;
}
.cid-ukSQ3jMTb6 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukSQ3jMTb6 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ukSQ3jMTb6 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ukSQ3jMTb6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukSQ3jMTb6 .mbr-section-title {
  color: #263d5a;
}
.cid-ukSQ3jMTb6 .mbr-text,
.cid-ukSQ3jMTb6 .mbr-section-btn {
  color: #263d5a;
}
.cid-ukSQ3jMTb6 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ukT6taVGN8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ukT6taVGN8 .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ukT6taVGN8 .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukT6taVGN8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukT6taVGN8 .mbr-section-title {
  color: #103178;
}
.cid-ukT6taVGN8 .mbr-text,
.cid-ukT6taVGN8 .mbr-section-btn {
  color: #103178;
}
.cid-ukT6taVGN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukT6taVGN8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukSY7Fm54j {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-ukSY7Fm54j img {
  width: 100%;
  border-radius: 30px;
}
.cid-ukSY7Fm54j .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukSY7Fm54j .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ukSY7Fm54j .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ukSY7Fm54j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukSY7Fm54j .mbr-section-title {
  color: #263d5a;
}
.cid-ukSY7Fm54j .mbr-text,
.cid-ukSY7Fm54j .mbr-section-btn {
  color: #263d5a;
}
.cid-ukSY7Fm54j .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ukT8Yt5AYP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ukT8Yt5AYP .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ukT8Yt5AYP .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukT8Yt5AYP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukT8Yt5AYP .mbr-section-title {
  color: #103178;
}
.cid-ukT8Yt5AYP .mbr-text,
.cid-ukT8Yt5AYP .mbr-section-btn {
  color: #103178;
}
.cid-ukT8Yt5AYP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukT8Yt5AYP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukT087oDOS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-ukT087oDOS img {
  width: 100%;
  border-radius: 30px;
}
.cid-ukT087oDOS .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukT087oDOS .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ukT087oDOS .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ukT087oDOS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukT087oDOS .mbr-section-title {
  color: #263d5a;
}
.cid-ukT087oDOS .mbr-text,
.cid-ukT087oDOS .mbr-section-btn {
  color: #263d5a;
}
.cid-ukT087oDOS .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ukT8Z5Rmpr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ukT8Z5Rmpr .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ukT8Z5Rmpr .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukT8Z5Rmpr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukT8Z5Rmpr .mbr-section-title {
  color: #103178;
}
.cid-ukT8Z5Rmpr .mbr-text,
.cid-ukT8Z5Rmpr .mbr-section-btn {
  color: #103178;
}
.cid-ukT8Z5Rmpr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukT8Z5Rmpr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukT08PFOyN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ukT08PFOyN img {
  width: 100%;
  border-radius: 30px;
}
.cid-ukT08PFOyN .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukT08PFOyN .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ukT08PFOyN .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ukT08PFOyN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukT08PFOyN .mbr-section-title {
  color: #263d5a;
}
.cid-ukT08PFOyN .mbr-text,
.cid-ukT08PFOyN .mbr-section-btn {
  color: #263d5a;
}
.cid-ukT08PFOyN .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ukT8ZGoVpL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ukT8ZGoVpL .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ukT8ZGoVpL .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukT8ZGoVpL .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukT8ZGoVpL .mbr-section-title {
  color: #103178;
}
.cid-ukT8ZGoVpL .mbr-text,
.cid-ukT8ZGoVpL .mbr-section-btn {
  color: #103178;
}
.cid-ukT8ZGoVpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukT8ZGoVpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukT0a6DGln {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-ukT0a6DGln img {
  width: 100%;
  border-radius: 30px;
}
.cid-ukT0a6DGln .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukT0a6DGln .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ukT0a6DGln .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ukT0a6DGln .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukT0a6DGln .mbr-section-title {
  color: #263d5a;
}
.cid-ukT0a6DGln .mbr-text,
.cid-ukT0a6DGln .mbr-section-btn {
  color: #263d5a;
}
.cid-ukT0a6DGln .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ukThgBflNH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/2-1080x717.png");
}
.cid-ukThgBflNH .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-ukThgBflNH .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukThgBflNH .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ukThgBflNH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukThgBflNH .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-ukThgBflNH .row {
  justify-content: center;
}
.cid-ukThgBflNH .card-text {
  color: #263d5a;
}
.cid-ukThgBflNH .card-title,
.cid-ukThgBflNH .iconfont-wrapper {
  color: #263d5a;
}
.cid-ukThgBflNH .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ukThgBflNH .mbr-section-title {
  color: #263d5a;
}
.cid-ulsopLtuND {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-ulsopLtuND .mbr-overlay {
  background: #fafafa;
  opacity: 0.4;
}
.cid-ulsopLtuND img,
.cid-ulsopLtuND .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulsopLtuND .item:focus,
.cid-ulsopLtuND span:focus {
  outline: none;
}
.cid-ulsopLtuND .item-wrapper {
  position: relative;
}
.cid-ulsopLtuND .slide-content {
  position: relative;
  border-radius: 4px;
  background: #4856ff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulsopLtuND .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulsopLtuND .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ulsopLtuND .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulsopLtuND .mbr-section-title {
  color: #f00000;
}
.cid-ulsopLtuND .mbr-text,
.cid-ulsopLtuND .mbr-section-btn {
  text-align: left;
}
.cid-ulsopLtuND .item-title {
  text-align: left;
}
.cid-ulsopLtuND .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ulsopLtuND .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ulsopLtuND .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ulsopLtuND .embla__button--next,
.cid-ulsopLtuND .embla__button--prev {
  display: flex;
}
.cid-ulsopLtuND .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ulsopLtuND .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ulsopLtuND .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ulsopLtuND .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulsopLtuND .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ulsopLtuND .embla__button {
    top: auto;
  }
}
.cid-ulsopLtuND .embla {
  position: relative;
  width: 100%;
}
.cid-ulsopLtuND .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ulsopLtuND .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ulsopLtuND .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ulsopLtuND .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ulsopLtuND .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-ulsopLtuND .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ulsopLtuND .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-ulst58pE2u {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-ulst58pE2u .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulst58pE2u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulst58pE2u .mbr-text,
.cid-ulst58pE2u .mbr-section-btn {
  color: #232323;
}
.cid-ulst58pE2u .card-title,
.cid-ulst58pE2u .card-box {
  color: #ffffff;
}
.cid-ulst58pE2u .mbr-text,
.cid-ulst58pE2u .link-wrap {
  color: #ffffff;
}
.cid-ulsgy5KgGQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsgy5KgGQ [class^='socicon-']:before,
.cid-ulsgy5KgGQ [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-ulsgy5KgGQ .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-ulsgy5KgGQ .btn-social:hover {
  background: #ffffff;
}
.cid-ulsgy5KgGQ .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-ulsgy5KgGQ .btn-social:hover span {
  color: #000000 !important;
}
.cid-ulsgy5KgGQ .mbr-section-title {
  color: #2e6b75;
}
.cid-ulsgy5KgGQ .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-ulsgy5KgGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsgy5KgGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukThhpfv9s {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4856ff;
}
.cid-ukThhpfv9s .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ukThhpfv9s .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ukThhpfv9s .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-ukThhpfv9s .row {
  justify-content: center;
  align-items: center;
}
.cid-ukThhpfv9s .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ukThhpfv9s .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-ukThhpfv9s .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ukThhpfv9s .row .foot-menu {
    justify-content: center;
  }
}
.cid-ukThhpfv9s .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ukThhpfv9s .row .row-copirayt p {
  width: 100%;
}
.cid-ukThhpfv9s .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ukThhpfv9s .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-ulsuxrVMT2 {
  z-index: 1000;
  width: 100%;
}
.cid-ulsuxrVMT2 nav.navbar {
  position: fixed;
}
.cid-ulsuxrVMT2 .navbar-nav {
  margin: auto;
}
.cid-ulsuxrVMT2 .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulsuxrVMT2 .dropdown-item:hover,
.cid-ulsuxrVMT2 .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-ulsuxrVMT2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulsuxrVMT2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulsuxrVMT2 .navbar-short,
.cid-ulsuxrVMT2 .opened {
  background: #ffffff !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-ulsuxrVMT2 .navbar-short .nav-link,
.cid-ulsuxrVMT2 .opened .nav-link,
.cid-ulsuxrVMT2 .navbar-short .navbar-caption,
.cid-ulsuxrVMT2 .opened .navbar-caption,
.cid-ulsuxrVMT2 .navbar-short .mbr-iconfont,
.cid-ulsuxrVMT2 .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-ulsuxrVMT2 .navbar-short .hamburger span,
.cid-ulsuxrVMT2 .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ulsuxrVMT2 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-ulsuxrVMT2 .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-ulsuxrVMT2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulsuxrVMT2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulsuxrVMT2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulsuxrVMT2 .container {
  display: flex;
  margin: auto;
}
.cid-ulsuxrVMT2 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulsuxrVMT2 .dropdown-menu,
.cid-ulsuxrVMT2 .navbar.opened {
  background: #ffffff !important;
}
.cid-ulsuxrVMT2 .nav-item:focus,
.cid-ulsuxrVMT2 .nav-link:focus {
  outline: none;
}
.cid-ulsuxrVMT2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulsuxrVMT2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulsuxrVMT2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulsuxrVMT2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulsuxrVMT2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulsuxrVMT2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulsuxrVMT2 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-ulsuxrVMT2 .navbar.opened {
  transition: all 0.3s;
}
.cid-ulsuxrVMT2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulsuxrVMT2 .navbar .navbar-logo img {
  width: auto;
}
.cid-ulsuxrVMT2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulsuxrVMT2 .navbar.collapsed {
  justify-content: center;
}
.cid-ulsuxrVMT2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulsuxrVMT2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulsuxrVMT2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulsuxrVMT2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulsuxrVMT2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulsuxrVMT2 .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-ulsuxrVMT2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulsuxrVMT2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulsuxrVMT2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulsuxrVMT2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulsuxrVMT2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulsuxrVMT2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulsuxrVMT2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulsuxrVMT2 .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-ulsuxrVMT2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulsuxrVMT2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulsuxrVMT2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulsuxrVMT2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulsuxrVMT2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulsuxrVMT2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ulsuxrVMT2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulsuxrVMT2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulsuxrVMT2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulsuxrVMT2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulsuxrVMT2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulsuxrVMT2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulsuxrVMT2 .dropdown-item.active,
.cid-ulsuxrVMT2 .dropdown-item:active {
  background-color: transparent;
}
.cid-ulsuxrVMT2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulsuxrVMT2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulsuxrVMT2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulsuxrVMT2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ulsuxrVMT2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulsuxrVMT2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulsuxrVMT2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulsuxrVMT2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulsuxrVMT2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulsuxrVMT2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulsuxrVMT2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulsuxrVMT2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsuxrVMT2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsuxrVMT2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulsuxrVMT2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsuxrVMT2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulsuxrVMT2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulsuxrVMT2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsuxrVMT2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulsuxrVMT2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulsuxrVMT2 .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-ulsuxrVMT2 .navbar {
    height: 70px;
  }
  .cid-ulsuxrVMT2 .navbar.opened {
    height: auto;
  }
  .cid-ulsuxrVMT2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulsuxso1wY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ulsuxso1wY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsuxso1wY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ulsuxso1wY .container {
    padding: 0 30px;
  }
}
.cid-ulsuxso1wY .row {
  justify-content: center;
}
.cid-ulsuxso1wY .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-ulsuxso1wY .content-wrapper {
    padding: 80px 0;
  }
}
.cid-ulsuxso1wY .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ulsuxso1wY .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ulsuxso1wY .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ulsuxso1wY .mbr-desc {
  color: #c7fcb5;
}
.cid-ulsuxso1wY .mbr-section-title {
  color: #ffffff;
}
.cid-ulsuxso1wY .mbr-text {
  color: #ffffff;
}
.cid-ulsuxso1wY .mbr-section-title,
.cid-ulsuxso1wY .mbr-section-btn {
  text-align: center;
  color: #f00000;
}
.cid-ulsuxtrH3Z {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/1-1080x718.png");
}
.cid-ulsuxtrH3Z img {
  width: 100%;
  border-radius: 30px;
}
.cid-ulsuxtrH3Z .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulsuxtrH3Z .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulsuxtrH3Z .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ulsuxtrH3Z .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulsuxtrH3Z .mbr-section-title {
  color: #263d5a;
}
.cid-ulsuxtrH3Z .mbr-text,
.cid-ulsuxtrH3Z .mbr-section-btn {
  color: #263d5a;
}
.cid-ulsuxtrH3Z .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulsuxtO64o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ulsuxtO64o .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ulsuxtO64o .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ulsuxtO64o .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ulsuxtO64o .mbr-section-title {
  color: #103178;
}
.cid-ulsuxtO64o .mbr-text,
.cid-ulsuxtO64o .mbr-section-btn {
  color: #103178;
}
.cid-ulsuxtO64o .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsuxtO64o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsyNu9cFH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsyNu9cFH .content-text {
  max-width: 800px;
}
.cid-ulsFclUGHu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsFclUGHu .content-text {
  max-width: 800px;
}
.cid-ulsFddqvI4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsFddqvI4 .content-text {
  max-width: 800px;
}
.cid-ulsG0cJwYk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsG0cJwYk .content-text {
  max-width: 800px;
}
.cid-ulsuxyhxjJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsuxyhxjJ [class^='socicon-']:before,
.cid-ulsuxyhxjJ [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-ulsuxyhxjJ .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-ulsuxyhxjJ .btn-social:hover {
  background: #ffffff;
}
.cid-ulsuxyhxjJ .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-ulsuxyhxjJ .btn-social:hover span {
  color: #000000 !important;
}
.cid-ulsuxyhxjJ .mbr-section-title {
  color: #2e6b75;
}
.cid-ulsuxyhxjJ .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-ulsuxyhxjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsuxyhxjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsuxyKv1J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4856ff;
}
.cid-ulsuxyKv1J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ulsuxyKv1J .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulsuxyKv1J .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-ulsuxyKv1J .row {
  justify-content: center;
  align-items: center;
}
.cid-ulsuxyKv1J .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulsuxyKv1J .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-ulsuxyKv1J .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulsuxyKv1J .row .foot-menu {
    justify-content: center;
  }
}
.cid-ulsuxyKv1J .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ulsuxyKv1J .row .row-copirayt p {
  width: 100%;
}
.cid-ulsuxyKv1J .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ulsuxyKv1J .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-ulsB0aYOj7 {
  z-index: 1000;
  width: 100%;
}
.cid-ulsB0aYOj7 nav.navbar {
  position: fixed;
}
.cid-ulsB0aYOj7 .navbar-nav {
  margin: auto;
}
.cid-ulsB0aYOj7 .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulsB0aYOj7 .dropdown-item:hover,
.cid-ulsB0aYOj7 .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-ulsB0aYOj7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulsB0aYOj7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulsB0aYOj7 .navbar-short,
.cid-ulsB0aYOj7 .opened {
  background: #ffffff !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-ulsB0aYOj7 .navbar-short .nav-link,
.cid-ulsB0aYOj7 .opened .nav-link,
.cid-ulsB0aYOj7 .navbar-short .navbar-caption,
.cid-ulsB0aYOj7 .opened .navbar-caption,
.cid-ulsB0aYOj7 .navbar-short .mbr-iconfont,
.cid-ulsB0aYOj7 .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-ulsB0aYOj7 .navbar-short .hamburger span,
.cid-ulsB0aYOj7 .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ulsB0aYOj7 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-ulsB0aYOj7 .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-ulsB0aYOj7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulsB0aYOj7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulsB0aYOj7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulsB0aYOj7 .container {
  display: flex;
  margin: auto;
}
.cid-ulsB0aYOj7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulsB0aYOj7 .dropdown-menu,
.cid-ulsB0aYOj7 .navbar.opened {
  background: #ffffff !important;
}
.cid-ulsB0aYOj7 .nav-item:focus,
.cid-ulsB0aYOj7 .nav-link:focus {
  outline: none;
}
.cid-ulsB0aYOj7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulsB0aYOj7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulsB0aYOj7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulsB0aYOj7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulsB0aYOj7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulsB0aYOj7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulsB0aYOj7 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-ulsB0aYOj7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ulsB0aYOj7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulsB0aYOj7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ulsB0aYOj7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulsB0aYOj7 .navbar.collapsed {
  justify-content: center;
}
.cid-ulsB0aYOj7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulsB0aYOj7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulsB0aYOj7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulsB0aYOj7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulsB0aYOj7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulsB0aYOj7 .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-ulsB0aYOj7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulsB0aYOj7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulsB0aYOj7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulsB0aYOj7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulsB0aYOj7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulsB0aYOj7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulsB0aYOj7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulsB0aYOj7 .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-ulsB0aYOj7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulsB0aYOj7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulsB0aYOj7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulsB0aYOj7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulsB0aYOj7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulsB0aYOj7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ulsB0aYOj7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulsB0aYOj7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulsB0aYOj7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulsB0aYOj7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulsB0aYOj7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulsB0aYOj7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulsB0aYOj7 .dropdown-item.active,
.cid-ulsB0aYOj7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ulsB0aYOj7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulsB0aYOj7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulsB0aYOj7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulsB0aYOj7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ulsB0aYOj7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulsB0aYOj7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulsB0aYOj7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulsB0aYOj7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulsB0aYOj7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulsB0aYOj7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulsB0aYOj7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulsB0aYOj7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsB0aYOj7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsB0aYOj7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulsB0aYOj7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsB0aYOj7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulsB0aYOj7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulsB0aYOj7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsB0aYOj7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulsB0aYOj7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulsB0aYOj7 .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-ulsB0aYOj7 .navbar {
    height: 70px;
  }
  .cid-ulsB0aYOj7 .navbar.opened {
    height: auto;
  }
  .cid-ulsB0aYOj7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulsB0bkOvv {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/closeup-1-528x589.jpg");
}
.cid-ulsB0bkOvv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB0bkOvv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ulsB0bkOvv .container {
    padding: 0 30px;
  }
}
.cid-ulsB0bkOvv .row {
  justify-content: center;
}
.cid-ulsB0bkOvv .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-ulsB0bkOvv .content-wrapper {
    padding: 80px 0;
  }
}
.cid-ulsB0bkOvv .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ulsB0bkOvv .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ulsB0bkOvv .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ulsB0bkOvv .mbr-desc {
  color: #c7fcb5;
}
.cid-ulsB0bkOvv .mbr-section-title {
  color: #ffffff;
}
.cid-ulsB0bkOvv .mbr-text {
  color: #ffffff;
}
.cid-ulsB0bkOvv .mbr-section-title,
.cid-ulsB0bkOvv .mbr-section-btn {
  text-align: center;
  color: #f00000;
}
.cid-ulsB0c9hlO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-ulsB0c9hlO img {
  width: 100%;
  border-radius: 30px;
}
.cid-ulsB0c9hlO .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulsB0c9hlO .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulsB0c9hlO .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ulsB0c9hlO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulsB0c9hlO .mbr-section-title {
  color: #263d5a;
}
.cid-ulsB0c9hlO .mbr-text,
.cid-ulsB0c9hlO .mbr-section-btn {
  color: #263d5a;
}
.cid-ulsB0c9hlO .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulsB0cqcyr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ulsB0cqcyr .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ulsB0cqcyr .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ulsB0cqcyr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ulsB0cqcyr .mbr-section-title {
  color: #103178;
}
.cid-ulsB0cqcyr .mbr-text,
.cid-ulsB0cqcyr .mbr-section-btn {
  color: #103178;
}
.cid-ulsB0cqcyr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB0cqcyr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsB0eiNah {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsB0eiNah .content-text {
  max-width: 800px;
}
.cid-ulsFHhGksp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsFHhGksp .content-text {
  max-width: 800px;
}
.cid-ulsB0eD7wP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsB0eD7wP [class^='socicon-']:before,
.cid-ulsB0eD7wP [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-ulsB0eD7wP .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-ulsB0eD7wP .btn-social:hover {
  background: #ffffff;
}
.cid-ulsB0eD7wP .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-ulsB0eD7wP .btn-social:hover span {
  color: #000000 !important;
}
.cid-ulsB0eD7wP .mbr-section-title {
  color: #2e6b75;
}
.cid-ulsB0eD7wP .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-ulsB0eD7wP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB0eD7wP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsB0f1wPl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4856ff;
}
.cid-ulsB0f1wPl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ulsB0f1wPl .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulsB0f1wPl .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-ulsB0f1wPl .row {
  justify-content: center;
  align-items: center;
}
.cid-ulsB0f1wPl .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulsB0f1wPl .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-ulsB0f1wPl .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulsB0f1wPl .row .foot-menu {
    justify-content: center;
  }
}
.cid-ulsB0f1wPl .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ulsB0f1wPl .row .row-copirayt p {
  width: 100%;
}
.cid-ulsB0f1wPl .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ulsB0f1wPl .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-ulsB4nIOY3 {
  z-index: 1000;
  width: 100%;
}
.cid-ulsB4nIOY3 nav.navbar {
  position: fixed;
}
.cid-ulsB4nIOY3 .navbar-nav {
  margin: auto;
}
.cid-ulsB4nIOY3 .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulsB4nIOY3 .dropdown-item:hover,
.cid-ulsB4nIOY3 .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-ulsB4nIOY3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulsB4nIOY3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulsB4nIOY3 .navbar-short,
.cid-ulsB4nIOY3 .opened {
  background: #ffffff !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-ulsB4nIOY3 .navbar-short .nav-link,
.cid-ulsB4nIOY3 .opened .nav-link,
.cid-ulsB4nIOY3 .navbar-short .navbar-caption,
.cid-ulsB4nIOY3 .opened .navbar-caption,
.cid-ulsB4nIOY3 .navbar-short .mbr-iconfont,
.cid-ulsB4nIOY3 .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-ulsB4nIOY3 .navbar-short .hamburger span,
.cid-ulsB4nIOY3 .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ulsB4nIOY3 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-ulsB4nIOY3 .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-ulsB4nIOY3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulsB4nIOY3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulsB4nIOY3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulsB4nIOY3 .container {
  display: flex;
  margin: auto;
}
.cid-ulsB4nIOY3 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulsB4nIOY3 .dropdown-menu,
.cid-ulsB4nIOY3 .navbar.opened {
  background: #ffffff !important;
}
.cid-ulsB4nIOY3 .nav-item:focus,
.cid-ulsB4nIOY3 .nav-link:focus {
  outline: none;
}
.cid-ulsB4nIOY3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulsB4nIOY3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulsB4nIOY3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulsB4nIOY3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulsB4nIOY3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulsB4nIOY3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulsB4nIOY3 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-ulsB4nIOY3 .navbar.opened {
  transition: all 0.3s;
}
.cid-ulsB4nIOY3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulsB4nIOY3 .navbar .navbar-logo img {
  width: auto;
}
.cid-ulsB4nIOY3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulsB4nIOY3 .navbar.collapsed {
  justify-content: center;
}
.cid-ulsB4nIOY3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulsB4nIOY3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulsB4nIOY3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulsB4nIOY3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulsB4nIOY3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulsB4nIOY3 .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-ulsB4nIOY3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulsB4nIOY3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulsB4nIOY3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulsB4nIOY3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulsB4nIOY3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulsB4nIOY3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulsB4nIOY3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulsB4nIOY3 .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-ulsB4nIOY3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulsB4nIOY3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulsB4nIOY3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulsB4nIOY3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulsB4nIOY3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulsB4nIOY3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ulsB4nIOY3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulsB4nIOY3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulsB4nIOY3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulsB4nIOY3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulsB4nIOY3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulsB4nIOY3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulsB4nIOY3 .dropdown-item.active,
.cid-ulsB4nIOY3 .dropdown-item:active {
  background-color: transparent;
}
.cid-ulsB4nIOY3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulsB4nIOY3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulsB4nIOY3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulsB4nIOY3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ulsB4nIOY3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulsB4nIOY3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulsB4nIOY3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulsB4nIOY3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulsB4nIOY3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulsB4nIOY3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulsB4nIOY3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulsB4nIOY3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsB4nIOY3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsB4nIOY3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulsB4nIOY3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsB4nIOY3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulsB4nIOY3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulsB4nIOY3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsB4nIOY3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulsB4nIOY3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulsB4nIOY3 .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-ulsB4nIOY3 .navbar {
    height: 70px;
  }
  .cid-ulsB4nIOY3 .navbar.opened {
    height: auto;
  }
  .cid-ulsB4nIOY3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulsB4o33qs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/whatsapp-image-2024-06-25-at-11.35.51-1-1036x582.jpg");
}
.cid-ulsB4o33qs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB4o33qs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ulsB4o33qs .container {
    padding: 0 30px;
  }
}
.cid-ulsB4o33qs .row {
  justify-content: center;
}
.cid-ulsB4o33qs .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-ulsB4o33qs .content-wrapper {
    padding: 80px 0;
  }
}
.cid-ulsB4o33qs .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ulsB4o33qs .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ulsB4o33qs .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ulsB4o33qs .mbr-desc {
  color: #c7fcb5;
}
.cid-ulsB4o33qs .mbr-section-title {
  color: #ffffff;
}
.cid-ulsB4o33qs .mbr-text {
  color: #ffffff;
}
.cid-ulsB4o33qs .mbr-section-title,
.cid-ulsB4o33qs .mbr-section-btn {
  text-align: center;
  color: #f00000;
}
.cid-ulsB4poy1L {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-ulsB4poy1L img {
  width: 100%;
  border-radius: 30px;
}
.cid-ulsB4poy1L .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulsB4poy1L .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulsB4poy1L .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ulsB4poy1L .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulsB4poy1L .mbr-section-title {
  color: #263d5a;
}
.cid-ulsB4poy1L .mbr-text,
.cid-ulsB4poy1L .mbr-section-btn {
  color: #263d5a;
}
.cid-ulsB4poy1L .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulsB4pGrZb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ulsB4pGrZb .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ulsB4pGrZb .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ulsB4pGrZb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ulsB4pGrZb .mbr-section-title {
  color: #103178;
}
.cid-ulsB4pGrZb .mbr-text,
.cid-ulsB4pGrZb .mbr-section-btn {
  color: #103178;
}
.cid-ulsB4pGrZb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB4pGrZb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsB4qY56d {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsB4qY56d .content-text {
  max-width: 800px;
}
.cid-ulsB4riuM2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsB4riuM2 [class^='socicon-']:before,
.cid-ulsB4riuM2 [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-ulsB4riuM2 .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-ulsB4riuM2 .btn-social:hover {
  background: #ffffff;
}
.cid-ulsB4riuM2 .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-ulsB4riuM2 .btn-social:hover span {
  color: #000000 !important;
}
.cid-ulsB4riuM2 .mbr-section-title {
  color: #2e6b75;
}
.cid-ulsB4riuM2 .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-ulsB4riuM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB4riuM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsB4rGUA8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4856ff;
}
.cid-ulsB4rGUA8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ulsB4rGUA8 .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulsB4rGUA8 .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-ulsB4rGUA8 .row {
  justify-content: center;
  align-items: center;
}
.cid-ulsB4rGUA8 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulsB4rGUA8 .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-ulsB4rGUA8 .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulsB4rGUA8 .row .foot-menu {
    justify-content: center;
  }
}
.cid-ulsB4rGUA8 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ulsB4rGUA8 .row .row-copirayt p {
  width: 100%;
}
.cid-ulsB4rGUA8 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ulsB4rGUA8 .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-ulsB8v54og {
  z-index: 1000;
  width: 100%;
}
.cid-ulsB8v54og nav.navbar {
  position: fixed;
}
.cid-ulsB8v54og .navbar-nav {
  margin: auto;
}
.cid-ulsB8v54og .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulsB8v54og .dropdown-item:hover,
.cid-ulsB8v54og .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-ulsB8v54og .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulsB8v54og .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulsB8v54og .navbar-short,
.cid-ulsB8v54og .opened {
  background: #ffffff !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-ulsB8v54og .navbar-short .nav-link,
.cid-ulsB8v54og .opened .nav-link,
.cid-ulsB8v54og .navbar-short .navbar-caption,
.cid-ulsB8v54og .opened .navbar-caption,
.cid-ulsB8v54og .navbar-short .mbr-iconfont,
.cid-ulsB8v54og .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-ulsB8v54og .navbar-short .hamburger span,
.cid-ulsB8v54og .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ulsB8v54og .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-ulsB8v54og .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-ulsB8v54og .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulsB8v54og .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulsB8v54og .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulsB8v54og .container {
  display: flex;
  margin: auto;
}
.cid-ulsB8v54og .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulsB8v54og .dropdown-menu,
.cid-ulsB8v54og .navbar.opened {
  background: #ffffff !important;
}
.cid-ulsB8v54og .nav-item:focus,
.cid-ulsB8v54og .nav-link:focus {
  outline: none;
}
.cid-ulsB8v54og .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulsB8v54og .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulsB8v54og .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulsB8v54og .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulsB8v54og .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulsB8v54og .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulsB8v54og .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-ulsB8v54og .navbar.opened {
  transition: all 0.3s;
}
.cid-ulsB8v54og .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulsB8v54og .navbar .navbar-logo img {
  width: auto;
}
.cid-ulsB8v54og .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulsB8v54og .navbar.collapsed {
  justify-content: center;
}
.cid-ulsB8v54og .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulsB8v54og .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulsB8v54og .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulsB8v54og .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulsB8v54og .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulsB8v54og .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-ulsB8v54og .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulsB8v54og .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulsB8v54og .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulsB8v54og .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulsB8v54og .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulsB8v54og .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulsB8v54og .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulsB8v54og .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-ulsB8v54og .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulsB8v54og .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulsB8v54og .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulsB8v54og .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulsB8v54og .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulsB8v54og .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ulsB8v54og .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulsB8v54og .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulsB8v54og .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulsB8v54og .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulsB8v54og .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulsB8v54og .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulsB8v54og .dropdown-item.active,
.cid-ulsB8v54og .dropdown-item:active {
  background-color: transparent;
}
.cid-ulsB8v54og .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulsB8v54og .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulsB8v54og .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulsB8v54og .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ulsB8v54og .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulsB8v54og .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulsB8v54og ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulsB8v54og .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulsB8v54og button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulsB8v54og button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulsB8v54og button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulsB8v54og button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsB8v54og button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsB8v54og button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulsB8v54og nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsB8v54og nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulsB8v54og nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulsB8v54og nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsB8v54og .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulsB8v54og a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulsB8v54og .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-ulsB8v54og .navbar {
    height: 70px;
  }
  .cid-ulsB8v54og .navbar.opened {
    height: auto;
  }
  .cid-ulsB8v54og .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulsB8vqHGk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/festa-debutante-1036x1434.jpg");
}
.cid-ulsB8vqHGk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB8vqHGk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ulsB8vqHGk .container {
    padding: 0 30px;
  }
}
.cid-ulsB8vqHGk .row {
  justify-content: center;
}
.cid-ulsB8vqHGk .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-ulsB8vqHGk .content-wrapper {
    padding: 80px 0;
  }
}
.cid-ulsB8vqHGk .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ulsB8vqHGk .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ulsB8vqHGk .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ulsB8vqHGk .mbr-desc {
  color: #c7fcb5;
}
.cid-ulsB8vqHGk .mbr-section-title {
  color: #ffffff;
}
.cid-ulsB8vqHGk .mbr-text {
  color: #ffffff;
}
.cid-ulsB8vqHGk .mbr-section-title,
.cid-ulsB8vqHGk .mbr-section-btn {
  text-align: center;
  color: #f00000;
}
.cid-ulsB8xnSSR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ulsB8xnSSR img {
  width: 100%;
  border-radius: 30px;
}
.cid-ulsB8xnSSR .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulsB8xnSSR .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulsB8xnSSR .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ulsB8xnSSR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulsB8xnSSR .mbr-section-title {
  color: #263d5a;
}
.cid-ulsB8xnSSR .mbr-text,
.cid-ulsB8xnSSR .mbr-section-btn {
  color: #263d5a;
}
.cid-ulsB8xnSSR .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulsB8wt3Mn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ulsB8wt3Mn .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ulsB8wt3Mn .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ulsB8wt3Mn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ulsB8wt3Mn .mbr-section-title {
  color: #103178;
}
.cid-ulsB8wt3Mn .mbr-text,
.cid-ulsB8wt3Mn .mbr-section-btn {
  color: #103178;
}
.cid-ulsB8wt3Mn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB8wt3Mn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsB8yj6dV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsB8yj6dV .content-text {
  max-width: 800px;
}
.cid-ulsGp8xvus {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsGp8xvus .content-text {
  max-width: 800px;
}
.cid-ulsB8yDl8p {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsB8yDl8p [class^='socicon-']:before,
.cid-ulsB8yDl8p [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-ulsB8yDl8p .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-ulsB8yDl8p .btn-social:hover {
  background: #ffffff;
}
.cid-ulsB8yDl8p .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-ulsB8yDl8p .btn-social:hover span {
  color: #000000 !important;
}
.cid-ulsB8yDl8p .mbr-section-title {
  color: #2e6b75;
}
.cid-ulsB8yDl8p .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-ulsB8yDl8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsB8yDl8p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsB8z0sgc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4856ff;
}
.cid-ulsB8z0sgc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ulsB8z0sgc .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulsB8z0sgc .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-ulsB8z0sgc .row {
  justify-content: center;
  align-items: center;
}
.cid-ulsB8z0sgc .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulsB8z0sgc .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-ulsB8z0sgc .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulsB8z0sgc .row .foot-menu {
    justify-content: center;
  }
}
.cid-ulsB8z0sgc .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ulsB8z0sgc .row .row-copirayt p {
  width: 100%;
}
.cid-ulsB8z0sgc .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ulsB8z0sgc .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-ulsBd9da2T {
  z-index: 1000;
  width: 100%;
}
.cid-ulsBd9da2T nav.navbar {
  position: fixed;
}
.cid-ulsBd9da2T .navbar-nav {
  margin: auto;
}
.cid-ulsBd9da2T .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulsBd9da2T .dropdown-item:hover,
.cid-ulsBd9da2T .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-ulsBd9da2T .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulsBd9da2T .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulsBd9da2T .navbar-short,
.cid-ulsBd9da2T .opened {
  background: #ffffff !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-ulsBd9da2T .navbar-short .nav-link,
.cid-ulsBd9da2T .opened .nav-link,
.cid-ulsBd9da2T .navbar-short .navbar-caption,
.cid-ulsBd9da2T .opened .navbar-caption,
.cid-ulsBd9da2T .navbar-short .mbr-iconfont,
.cid-ulsBd9da2T .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-ulsBd9da2T .navbar-short .hamburger span,
.cid-ulsBd9da2T .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ulsBd9da2T .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-ulsBd9da2T .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-ulsBd9da2T .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulsBd9da2T .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulsBd9da2T .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulsBd9da2T .container {
  display: flex;
  margin: auto;
}
.cid-ulsBd9da2T .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulsBd9da2T .dropdown-menu,
.cid-ulsBd9da2T .navbar.opened {
  background: #ffffff !important;
}
.cid-ulsBd9da2T .nav-item:focus,
.cid-ulsBd9da2T .nav-link:focus {
  outline: none;
}
.cid-ulsBd9da2T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulsBd9da2T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulsBd9da2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulsBd9da2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulsBd9da2T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulsBd9da2T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulsBd9da2T .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-ulsBd9da2T .navbar.opened {
  transition: all 0.3s;
}
.cid-ulsBd9da2T .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulsBd9da2T .navbar .navbar-logo img {
  width: auto;
}
.cid-ulsBd9da2T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulsBd9da2T .navbar.collapsed {
  justify-content: center;
}
.cid-ulsBd9da2T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulsBd9da2T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulsBd9da2T .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulsBd9da2T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulsBd9da2T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulsBd9da2T .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-ulsBd9da2T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulsBd9da2T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulsBd9da2T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulsBd9da2T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulsBd9da2T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulsBd9da2T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulsBd9da2T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulsBd9da2T .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-ulsBd9da2T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulsBd9da2T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulsBd9da2T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulsBd9da2T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulsBd9da2T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulsBd9da2T .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ulsBd9da2T .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulsBd9da2T .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulsBd9da2T .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulsBd9da2T .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulsBd9da2T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulsBd9da2T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulsBd9da2T .dropdown-item.active,
.cid-ulsBd9da2T .dropdown-item:active {
  background-color: transparent;
}
.cid-ulsBd9da2T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulsBd9da2T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulsBd9da2T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulsBd9da2T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ulsBd9da2T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulsBd9da2T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulsBd9da2T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulsBd9da2T .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulsBd9da2T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulsBd9da2T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulsBd9da2T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulsBd9da2T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsBd9da2T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsBd9da2T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulsBd9da2T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsBd9da2T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulsBd9da2T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulsBd9da2T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsBd9da2T .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulsBd9da2T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulsBd9da2T .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-ulsBd9da2T .navbar {
    height: 70px;
  }
  .cid-ulsBd9da2T .navbar.opened {
    height: auto;
  }
  .cid-ulsBd9da2T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulsBd9xHjQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/ch-revelao-700x511.jpg");
}
.cid-ulsBd9xHjQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsBd9xHjQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ulsBd9xHjQ .container {
    padding: 0 30px;
  }
}
.cid-ulsBd9xHjQ .row {
  justify-content: center;
}
.cid-ulsBd9xHjQ .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-ulsBd9xHjQ .content-wrapper {
    padding: 80px 0;
  }
}
.cid-ulsBd9xHjQ .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ulsBd9xHjQ .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ulsBd9xHjQ .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ulsBd9xHjQ .mbr-desc {
  color: #c7fcb5;
}
.cid-ulsBd9xHjQ .mbr-section-title {
  color: #ffffff;
}
.cid-ulsBd9xHjQ .mbr-text {
  color: #ffffff;
}
.cid-ulsBd9xHjQ .mbr-section-title,
.cid-ulsBd9xHjQ .mbr-section-btn {
  text-align: center;
  color: #f00000;
}
.cid-ulsBdc9von {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-ulsBdc9von img {
  width: 100%;
  border-radius: 30px;
}
.cid-ulsBdc9von .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulsBdc9von .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulsBdc9von .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ulsBdc9von .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulsBdc9von .mbr-section-title {
  color: #263d5a;
}
.cid-ulsBdc9von .mbr-text,
.cid-ulsBdc9von .mbr-section-btn {
  color: #263d5a;
}
.cid-ulsBdc9von .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulsBdbQm64 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ulsBdbQm64 .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ulsBdbQm64 .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ulsBdbQm64 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ulsBdbQm64 .mbr-section-title {
  color: #103178;
}
.cid-ulsBdbQm64 .mbr-text,
.cid-ulsBdbQm64 .mbr-section-btn {
  color: #103178;
}
.cid-ulsBdbQm64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsBdbQm64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsBdctxhz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #40b0bf;
}
.cid-ulsBdctxhz .content-text {
  max-width: 800px;
}
.cid-ulsBdcNzkL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsBdcNzkL [class^='socicon-']:before,
.cid-ulsBdcNzkL [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-ulsBdcNzkL .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-ulsBdcNzkL .btn-social:hover {
  background: #ffffff;
}
.cid-ulsBdcNzkL .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-ulsBdcNzkL .btn-social:hover span {
  color: #000000 !important;
}
.cid-ulsBdcNzkL .mbr-section-title {
  color: #2e6b75;
}
.cid-ulsBdcNzkL .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-ulsBdcNzkL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsBdcNzkL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsBddb69c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4856ff;
}
.cid-ulsBddb69c .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ulsBddb69c .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulsBddb69c .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-ulsBddb69c .row {
  justify-content: center;
  align-items: center;
}
.cid-ulsBddb69c .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulsBddb69c .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-ulsBddb69c .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulsBddb69c .row .foot-menu {
    justify-content: center;
  }
}
.cid-ulsBddb69c .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ulsBddb69c .row .row-copirayt p {
  width: 100%;
}
.cid-ulsBddb69c .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ulsBddb69c .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-ulsBiMv7Au {
  z-index: 1000;
  width: 100%;
}
.cid-ulsBiMv7Au nav.navbar {
  position: fixed;
}
.cid-ulsBiMv7Au .navbar-nav {
  margin: auto;
}
.cid-ulsBiMv7Au .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulsBiMv7Au .dropdown-item:hover,
.cid-ulsBiMv7Au .dropdown-item:focus {
  background: #a148ff !important;
  color: white !important;
}
.cid-ulsBiMv7Au .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulsBiMv7Au .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulsBiMv7Au .navbar-short,
.cid-ulsBiMv7Au .opened {
  background: #ffffff !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-ulsBiMv7Au .navbar-short .nav-link,
.cid-ulsBiMv7Au .opened .nav-link,
.cid-ulsBiMv7Au .navbar-short .navbar-caption,
.cid-ulsBiMv7Au .opened .navbar-caption,
.cid-ulsBiMv7Au .navbar-short .mbr-iconfont,
.cid-ulsBiMv7Au .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-ulsBiMv7Au .navbar-short .hamburger span,
.cid-ulsBiMv7Au .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ulsBiMv7Au .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-ulsBiMv7Au .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-ulsBiMv7Au .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulsBiMv7Au .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulsBiMv7Au .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulsBiMv7Au .container {
  display: flex;
  margin: auto;
}
.cid-ulsBiMv7Au .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulsBiMv7Au .dropdown-menu,
.cid-ulsBiMv7Au .navbar.opened {
  background: #ffffff !important;
}
.cid-ulsBiMv7Au .nav-item:focus,
.cid-ulsBiMv7Au .nav-link:focus {
  outline: none;
}
.cid-ulsBiMv7Au .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulsBiMv7Au .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulsBiMv7Au .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulsBiMv7Au .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulsBiMv7Au .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulsBiMv7Au .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulsBiMv7Au .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-ulsBiMv7Au .navbar.opened {
  transition: all 0.3s;
}
.cid-ulsBiMv7Au .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulsBiMv7Au .navbar .navbar-logo img {
  width: auto;
}
.cid-ulsBiMv7Au .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulsBiMv7Au .navbar.collapsed {
  justify-content: center;
}
.cid-ulsBiMv7Au .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulsBiMv7Au .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulsBiMv7Au .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulsBiMv7Au .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulsBiMv7Au .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulsBiMv7Au .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-ulsBiMv7Au .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulsBiMv7Au .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulsBiMv7Au .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulsBiMv7Au .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulsBiMv7Au .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulsBiMv7Au .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulsBiMv7Au .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulsBiMv7Au .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-ulsBiMv7Au .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulsBiMv7Au .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulsBiMv7Au .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulsBiMv7Au .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulsBiMv7Au .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulsBiMv7Au .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ulsBiMv7Au .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulsBiMv7Au .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulsBiMv7Au .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulsBiMv7Au .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulsBiMv7Au .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulsBiMv7Au .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulsBiMv7Au .dropdown-item.active,
.cid-ulsBiMv7Au .dropdown-item:active {
  background-color: transparent;
}
.cid-ulsBiMv7Au .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulsBiMv7Au .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulsBiMv7Au .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulsBiMv7Au .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ulsBiMv7Au .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulsBiMv7Au .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulsBiMv7Au ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulsBiMv7Au .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulsBiMv7Au button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulsBiMv7Au button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulsBiMv7Au button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulsBiMv7Au button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsBiMv7Au button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulsBiMv7Au button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulsBiMv7Au nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsBiMv7Au nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulsBiMv7Au nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulsBiMv7Au nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulsBiMv7Au .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulsBiMv7Au a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulsBiMv7Au .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-ulsBiMv7Au .navbar {
    height: 70px;
  }
  .cid-ulsBiMv7Au .navbar.opened {
    height: auto;
  }
  .cid-ulsBiMv7Au .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulsBiMRn94 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsBiMRn94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsBiMRn94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ulsBiMRn94 .container {
    padding: 0 30px;
  }
}
.cid-ulsBiMRn94 .row {
  justify-content: center;
}
.cid-ulsBiMRn94 .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-ulsBiMRn94 .content-wrapper {
    padding: 80px 0;
  }
}
.cid-ulsBiMRn94 .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ulsBiMRn94 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ulsBiMRn94 .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ulsBiMRn94 .mbr-desc {
  color: #c7fcb5;
}
.cid-ulsBiMRn94 .mbr-section-title {
  color: #ffffff;
}
.cid-ulsBiMRn94 .mbr-text {
  color: #ffffff;
}
.cid-ulsBiMRn94 .mbr-section-title,
.cid-ulsBiMRn94 .mbr-section-btn {
  text-align: center;
}
.cid-ulsBiQHGcu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/2-1080x717.png");
}
.cid-ulsBiQHGcu .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-ulsBiQHGcu .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulsBiQHGcu .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ulsBiQHGcu .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulsBiQHGcu .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-ulsBiQHGcu .row {
  justify-content: center;
}
.cid-ulsBiQHGcu .card-text {
  color: #263d5a;
}
.cid-ulsBiQHGcu .card-title,
.cid-ulsBiQHGcu .iconfont-wrapper {
  color: #263d5a;
}
.cid-ulsBiQHGcu .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulsBiQHGcu .mbr-section-title {
  color: #263d5a;
}
.cid-ulsBiOE9YY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1360.jpg");
}
.cid-ulsBiOE9YY .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ulsBiOE9YY .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ulsBiOE9YY .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ulsBiOE9YY .mbr-section-title {
  color: #103178;
}
.cid-ulsBiOE9YY .mbr-text,
.cid-ulsBiOE9YY .mbr-section-btn {
  color: #103178;
}
.cid-ulsBiOE9YY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsBiOE9YY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsBiS7Jpd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4856ff;
}
.cid-ulsBiS7Jpd [class^='socicon-']:before,
.cid-ulsBiS7Jpd [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-ulsBiS7Jpd .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-ulsBiS7Jpd .btn-social:hover {
  background: #ffffff;
}
.cid-ulsBiS7Jpd .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-ulsBiS7Jpd .btn-social:hover span {
  color: #000000 !important;
}
.cid-ulsBiS7Jpd .mbr-section-title {
  color: #2e6b75;
}
.cid-ulsBiS7Jpd .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-ulsBiS7Jpd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulsBiS7Jpd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulsBiSzHNl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4856ff;
}
.cid-ulsBiSzHNl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ulsBiSzHNl .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulsBiSzHNl .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-ulsBiSzHNl .row {
  justify-content: center;
  align-items: center;
}
.cid-ulsBiSzHNl .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulsBiSzHNl .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-ulsBiSzHNl .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulsBiSzHNl .row .foot-menu {
    justify-content: center;
  }
}
.cid-ulsBiSzHNl .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ulsBiSzHNl .row .row-copirayt p {
  width: 100%;
}
.cid-ulsBiSzHNl .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ulsBiSzHNl .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
