.btn {
  border-width: 2px;
}
body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #082c4e !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #082c4e !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #082c4e !important;
  border-color: #082c4e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #082c4e !important;
  border-color: #082c4e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-info,
.btn-info:active {
  background-color: #082c4e !important;
  border-color: #082c4e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #082c4e;
  color: #082c4e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #082c4e !important;
  border-color: #082c4e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #082c4e;
  color: #082c4e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #082c4e !important;
  border-color: #082c4e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #082c4e;
  color: #082c4e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #082c4e !important;
  border-color: #082c4e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  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: #ff5f0f !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: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #082c4e !important;
}
.text-secondary {
  color: #082c4e !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #082c4e !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: #082c4e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #082c4e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ffffff !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #082c4e !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffe161 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff9966 !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: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #082c4e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #082c4e;
}
.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: #082c4e;
  border-color: #082c4e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #082c4e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4fa0ed;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4fa0ed;
}
.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: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #082c4e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #082c4e;
}
/* 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: #082c4e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #082c4e;
}
.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: #082c4e;
  border-bottom-color: #082c4e;
}
.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: #082c4e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #082c4e !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='%23082c4e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-ut5bjntPzY {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #11125e;
}
.cid-ut5bjntPzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5bjntPzY .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-ut5bjntPzY .container {
    padding: 0 15px;
  }
}
.cid-ut5bjntPzY .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut5bjntPzY .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut5bjntPzY .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut5bjntPzY .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ut5bjntPzY .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut5bjntPzY .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut5bjntPzY .mbr-section-title {
  color: #131c28;
}
.cid-ut5bjntPzY .mbr-desc {
  color: #131c28;
}
.cid-ut5bjntPzY .mbr-section-title,
.cid-ut5bjntPzY .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut4VMUo3vc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut4VMUo3vc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut4VMUo3vc .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-ut4VMUo3vc .container {
    padding: 0 15px;
  }
}
.cid-ut4VMUo3vc .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut4VMUo3vc .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut4VMUo3vc .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut4VMUo3vc .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut4VMUo3vc .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut4VMUo3vc .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut4VMUo3vc .mbr-section-title {
  color: #131c28;
}
.cid-ut4VMUo3vc .mbr-desc {
  color: #131c28;
}
.cid-ut4VMUo3vc .mbr-section-title,
.cid-ut4VMUo3vc .mbr-section-btn {
  text-align: left;
}
.cid-ut4VMUo3vc .mbr-text {
  text-align: left;
}
.cid-ut5OAbaVSW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut5OAbaVSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5OAbaVSW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5OAbaVSW .row {
    padding: 0 24px;
  }
}
.cid-ut5OAbaVSW .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5OAbaVSW .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5OAbaVSW .mbr-section-title {
  color: #2c0066;
}
.cid-ut5OAbaVSW .mbr-section-title,
.cid-ut5OAbaVSW .mbr-section-btn {
  text-align: center;
}
.cid-ut4VnkNXtm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut4VnkNXtm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut4VnkNXtm .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-ut4VnkNXtm .container {
    padding: 0 15px;
  }
}
.cid-ut4VnkNXtm .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut4VnkNXtm .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut4VnkNXtm .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut4VnkNXtm .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut4VnkNXtm .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut4VnkNXtm .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut4VnkNXtm .mbr-section-title {
  color: #131c28;
}
.cid-ut4VnkNXtm .mbr-desc {
  color: #131c28;
}
.cid-ut4VnkNXtm .mbr-section-title,
.cid-ut4VnkNXtm .mbr-section-btn {
  text-align: left;
}
.cid-ut4VnkNXtm .mbr-text {
  text-align: left;
}
.cid-ut5OB3u4fu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut5OB3u4fu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5OB3u4fu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5OB3u4fu .row {
    padding: 0 24px;
  }
}
.cid-ut5OB3u4fu .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5OB3u4fu .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5OB3u4fu .mbr-section-title {
  color: #2c0066;
}
.cid-ut5OB3u4fu .mbr-section-title,
.cid-ut5OB3u4fu .mbr-section-btn {
  text-align: center;
}
.cid-ut4UZhrn2z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut4UZhrn2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut4UZhrn2z .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-ut4UZhrn2z .container {
    padding: 0 15px;
  }
}
.cid-ut4UZhrn2z .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut4UZhrn2z .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut4UZhrn2z .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut4UZhrn2z .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut4UZhrn2z .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut4UZhrn2z .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut4UZhrn2z .mbr-section-title {
  color: #131c28;
}
.cid-ut4UZhrn2z .mbr-desc {
  color: #131c28;
}
.cid-ut4UZhrn2z .mbr-section-title,
.cid-ut4UZhrn2z .mbr-section-btn {
  text-align: left;
}
.cid-ut4UZhrn2z .mbr-text {
  text-align: left;
}
.cid-ut5OBNMwqH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut5OBNMwqH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5OBNMwqH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5OBNMwqH .row {
    padding: 0 24px;
  }
}
.cid-ut5OBNMwqH .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5OBNMwqH .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5OBNMwqH .mbr-section-title {
  color: #2c0066;
}
.cid-ut5OBNMwqH .mbr-section-title,
.cid-ut5OBNMwqH .mbr-section-btn {
  text-align: center;
}
.cid-ut4Znlx8Pb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut4Znlx8Pb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut4Znlx8Pb .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-ut4Znlx8Pb .container {
    padding: 0 15px;
  }
}
.cid-ut4Znlx8Pb .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut4Znlx8Pb .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut4Znlx8Pb .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut4Znlx8Pb .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut4Znlx8Pb .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut4Znlx8Pb .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut4Znlx8Pb .mbr-section-title {
  color: #131c28;
}
.cid-ut4Znlx8Pb .mbr-desc {
  color: #131c28;
}
.cid-ut4Znlx8Pb .mbr-section-title,
.cid-ut4Znlx8Pb .mbr-section-btn {
  text-align: left;
}
.cid-ut4Znlx8Pb .mbr-text {
  text-align: left;
}
.cid-ut5OCQnioE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5OCQnioE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5OCQnioE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5OCQnioE .row {
    padding: 0 24px;
  }
}
.cid-ut5OCQnioE .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5OCQnioE .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5OCQnioE .mbr-section-title {
  color: #2c0066;
}
.cid-ut5OCQnioE .mbr-section-title,
.cid-ut5OCQnioE .mbr-section-btn {
  text-align: center;
}
.cid-ut5Nw7JqSe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5Nw7JqSe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5Nw7JqSe .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-ut5Nw7JqSe .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5Nw7JqSe .container {
    padding: 0 12px;
  }
}
.cid-ut5Nw7JqSe .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5Nw7JqSe .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5Nw7JqSe .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5Nw7JqSe .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5Nw7JqSe .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5Nw7JqSe .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5Nw7JqSe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5Nw7JqSe .mbr-section-title {
  color: #222222;
}
.cid-ut5Nw7JqSe .mbr-text {
  color: #222222;
}
.cid-ut5NWiZj4L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5NWiZj4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5NWiZj4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5NWiZj4L .row {
    padding: 0 24px;
  }
}
.cid-ut5NWiZj4L .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5NWiZj4L .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5NWiZj4L .mbr-section-title {
  color: #2c0066;
}
.cid-ut5NWiZj4L .mbr-section-title,
.cid-ut5NWiZj4L .mbr-section-btn {
  text-align: center;
}
.cid-ut5NuVv3Lf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5NuVv3Lf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5NuVv3Lf .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-ut5NuVv3Lf .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5NuVv3Lf .container {
    padding: 0 12px;
  }
}
.cid-ut5NuVv3Lf .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5NuVv3Lf .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5NuVv3Lf .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5NuVv3Lf .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5NuVv3Lf .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5NuVv3Lf .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5NuVv3Lf .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5NuVv3Lf .mbr-section-title {
  color: #222222;
}
.cid-ut5NuVv3Lf .mbr-text {
  color: #222222;
}
.cid-ut5NVg2Bjn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5NVg2Bjn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5NVg2Bjn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5NVg2Bjn .row {
    padding: 0 24px;
  }
}
.cid-ut5NVg2Bjn .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5NVg2Bjn .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5NVg2Bjn .mbr-section-title {
  color: #2c0066;
}
.cid-ut5NVg2Bjn .mbr-section-title,
.cid-ut5NVg2Bjn .mbr-section-btn {
  text-align: center;
}
.cid-ut5MLoXZjG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5MLoXZjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5MLoXZjG .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-ut5MLoXZjG .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5MLoXZjG .container {
    padding: 0 12px;
  }
}
.cid-ut5MLoXZjG .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5MLoXZjG .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5MLoXZjG .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5MLoXZjG .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5MLoXZjG .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5MLoXZjG .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5MLoXZjG .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5MLoXZjG .mbr-section-title {
  color: #222222;
}
.cid-ut5MLoXZjG .mbr-text {
  color: #222222;
}
.cid-ut5NU9Fxm0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5NU9Fxm0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5NU9Fxm0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5NU9Fxm0 .row {
    padding: 0 24px;
  }
}
.cid-ut5NU9Fxm0 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5NU9Fxm0 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5NU9Fxm0 .mbr-section-title {
  color: #2c0066;
}
.cid-ut5NU9Fxm0 .mbr-section-title,
.cid-ut5NU9Fxm0 .mbr-section-btn {
  text-align: center;
}
.cid-ut5MIPiurn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5MIPiurn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5MIPiurn .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-ut5MIPiurn .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5MIPiurn .container {
    padding: 0 12px;
  }
}
.cid-ut5MIPiurn .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5MIPiurn .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5MIPiurn .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5MIPiurn .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5MIPiurn .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5MIPiurn .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5MIPiurn .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5MIPiurn .mbr-section-title {
  color: #222222;
}
.cid-ut5MIPiurn .mbr-text {
  color: #222222;
}
.cid-ut5NT7qfLw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5NT7qfLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5NT7qfLw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5NT7qfLw .row {
    padding: 0 24px;
  }
}
.cid-ut5NT7qfLw .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5NT7qfLw .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5NT7qfLw .mbr-section-title {
  color: #2c0066;
}
.cid-ut5NT7qfLw .mbr-section-title,
.cid-ut5NT7qfLw .mbr-section-btn {
  text-align: center;
}
.cid-ut68pNgBvF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut68pNgBvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut68pNgBvF .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-ut68pNgBvF .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut68pNgBvF .container {
    padding: 0 12px;
  }
}
.cid-ut68pNgBvF .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut68pNgBvF .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut68pNgBvF .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut68pNgBvF .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut68pNgBvF .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut68pNgBvF .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut68pNgBvF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut68pNgBvF .mbr-section-title {
  color: #222222;
}
.cid-ut68pNgBvF .mbr-text {
  color: #222222;
}
.cid-ut68rj2f5W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut68rj2f5W .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut68rj2f5W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut68rj2f5W .row {
    padding: 0 24px;
  }
}
.cid-ut68rj2f5W .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut68rj2f5W .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut68rj2f5W .mbr-section-title {
  color: #2c0066;
}
.cid-ut68rj2f5W .mbr-section-title,
.cid-ut68rj2f5W .mbr-section-btn {
  text-align: center;
}
.cid-ut69dt4etO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut69dt4etO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut69dt4etO .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-ut69dt4etO .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut69dt4etO .container {
    padding: 0 12px;
  }
}
.cid-ut69dt4etO .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut69dt4etO .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut69dt4etO .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut69dt4etO .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut69dt4etO .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut69dt4etO .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut69dt4etO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut69dt4etO .mbr-section-title {
  color: #222222;
}
.cid-ut69dt4etO .mbr-text {
  color: #222222;
}
.cid-ut69SaNA4f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut69SaNA4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut69SaNA4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut69SaNA4f .row {
    padding: 0 24px;
  }
}
.cid-ut69SaNA4f .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut69SaNA4f .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut69SaNA4f .mbr-section-title {
  color: #2c0066;
}
.cid-ut69SaNA4f .mbr-section-title,
.cid-ut69SaNA4f .mbr-section-btn {
  text-align: center;
}
.cid-ut5MHHBVCa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5MHHBVCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5MHHBVCa .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-ut5MHHBVCa .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5MHHBVCa .container {
    padding: 0 12px;
  }
}
.cid-ut5MHHBVCa .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5MHHBVCa .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5MHHBVCa .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5MHHBVCa .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5MHHBVCa .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5MHHBVCa .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5MHHBVCa .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5MHHBVCa .mbr-section-title {
  color: #222222;
}
.cid-ut5MHHBVCa .mbr-text {
  color: #222222;
}
.cid-ut5NS5WAc8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5NS5WAc8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5NS5WAc8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5NS5WAc8 .row {
    padding: 0 24px;
  }
}
.cid-ut5NS5WAc8 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5NS5WAc8 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5NS5WAc8 .mbr-section-title {
  color: #2c0066;
}
.cid-ut5NS5WAc8 .mbr-section-title,
.cid-ut5NS5WAc8 .mbr-section-btn {
  text-align: center;
}
.cid-ut5MGnmU3Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5MGnmU3Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5MGnmU3Y .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-ut5MGnmU3Y .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5MGnmU3Y .container {
    padding: 0 12px;
  }
}
.cid-ut5MGnmU3Y .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5MGnmU3Y .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5MGnmU3Y .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5MGnmU3Y .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5MGnmU3Y .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5MGnmU3Y .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5MGnmU3Y .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5MGnmU3Y .mbr-section-title {
  color: #222222;
}
.cid-ut5MGnmU3Y .mbr-text {
  color: #222222;
}
.cid-ut5NQRVjoy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5NQRVjoy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5NQRVjoy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5NQRVjoy .row {
    padding: 0 24px;
  }
}
.cid-ut5NQRVjoy .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5NQRVjoy .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5NQRVjoy .mbr-section-title {
  color: #2c0066;
}
.cid-ut5NQRVjoy .mbr-section-title,
.cid-ut5NQRVjoy .mbr-section-btn {
  text-align: center;
}
.cid-ut5KAtvmhQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5KAtvmhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5KAtvmhQ .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-ut5KAtvmhQ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5KAtvmhQ .container {
    padding: 0 12px;
  }
}
.cid-ut5KAtvmhQ .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5KAtvmhQ .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5KAtvmhQ .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5KAtvmhQ .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5KAtvmhQ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5KAtvmhQ .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5KAtvmhQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5KAtvmhQ .mbr-section-title {
  color: #222222;
}
.cid-ut5KAtvmhQ .mbr-text {
  color: #222222;
}
.cid-ut5L2XE9CD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5L2XE9CD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5L2XE9CD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5L2XE9CD .row {
    padding: 0 24px;
  }
}
.cid-ut5L2XE9CD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5L2XE9CD .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5L2XE9CD .mbr-section-title {
  color: #2c0066;
}
.cid-ut5L2XE9CD .mbr-section-title,
.cid-ut5L2XE9CD .mbr-section-btn {
  text-align: center;
}
.cid-ut6aiFUERN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut6aiFUERN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut6aiFUERN .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-ut6aiFUERN .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut6aiFUERN .container {
    padding: 0 12px;
  }
}
.cid-ut6aiFUERN .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut6aiFUERN .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut6aiFUERN .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut6aiFUERN .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut6aiFUERN .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut6aiFUERN .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut6aiFUERN .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut6aiFUERN .mbr-section-title {
  color: #222222;
}
.cid-ut6aiFUERN .mbr-text {
  color: #222222;
}
.cid-ut6ajSSxLJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut6ajSSxLJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut6ajSSxLJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut6ajSSxLJ .row {
    padding: 0 24px;
  }
}
.cid-ut6ajSSxLJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut6ajSSxLJ .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut6ajSSxLJ .mbr-section-title {
  color: #2c0066;
}
.cid-ut6ajSSxLJ .mbr-section-title,
.cid-ut6ajSSxLJ .mbr-section-btn {
  text-align: center;
}
.cid-ut5MeI2gHp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut5MeI2gHp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5MeI2gHp .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-ut5MeI2gHp .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut5MeI2gHp .container {
    padding: 0 12px;
  }
}
.cid-ut5MeI2gHp .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut5MeI2gHp .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut5MeI2gHp .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut5MeI2gHp .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut5MeI2gHp .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut5MeI2gHp .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut5MeI2gHp .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut5MeI2gHp .mbr-section-title {
  color: #222222;
}
.cid-ut5MeI2gHp .mbr-text {
  color: #222222;
}
.cid-ut5MfHzAT5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut5MfHzAT5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5MfHzAT5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5MfHzAT5 .row {
    padding: 0 24px;
  }
}
.cid-ut5MfHzAT5 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5MfHzAT5 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5MfHzAT5 .mbr-section-title {
  color: #2c0066;
}
.cid-ut5MfHzAT5 .mbr-section-title,
.cid-ut5MfHzAT5 .mbr-section-btn {
  text-align: center;
}
.cid-ut5Q66jEK1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut5Q66jEK1 .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut5Q66jEK1 .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut5Q66jEK1 .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut5Q66jEK1 .link:hover:before {
  background: #082c4e;
}
.cid-ut5Q66jEK1 .mbr-section-title {
  color: #11125e;
}
.cid-ut5Q66jEK1 .mbr-text,
.cid-ut5Q66jEK1 .mbr-section-btn {
  color: #11125e;
}
.cid-ut5Q66jEK1 .link,
.cid-ut5Q66jEK1 .link-wrap {
  color: #000000;
}
.cid-ut5Q66jEK1 .mbr-title {
  color: #11125e;
}
.cid-ut5Q66jEK1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5Q66jEK1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut5R6YXuEY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut5R6YXuEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5R6YXuEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5R6YXuEY .row {
    padding: 0 24px;
  }
}
.cid-ut5R6YXuEY .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5R6YXuEY .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5R6YXuEY .mbr-section-title {
  color: #2c0066;
}
.cid-ut5R6YXuEY .mbr-section-title,
.cid-ut5R6YXuEY .mbr-section-btn {
  text-align: center;
}
.cid-ut52wD5HBe {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut52wD5HBe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut52wD5HBe .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-ut52wD5HBe .container {
    padding: 0 15px;
  }
}
.cid-ut52wD5HBe .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut52wD5HBe .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut52wD5HBe .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut52wD5HBe .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut52wD5HBe .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut52wD5HBe .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut52wD5HBe .mbr-section-title {
  color: #131c28;
}
.cid-ut52wD5HBe .mbr-desc {
  color: #131c28;
}
.cid-ut52wD5HBe .mbr-section-title,
.cid-ut52wD5HBe .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut52wD5HBe .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-ut5OVa0JoG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut5OVa0JoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5OVa0JoG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5OVa0JoG .row {
    padding: 0 24px;
  }
}
.cid-ut5OVa0JoG .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5OVa0JoG .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5OVa0JoG .mbr-section-title {
  color: #2c0066;
}
.cid-ut5OVa0JoG .mbr-section-title,
.cid-ut5OVa0JoG .mbr-section-btn {
  text-align: center;
}
.cid-ut4Xwt3BoE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #11125e;
}
.cid-ut4Xwt3BoE .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-ut4Xwt3BoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut4Xwt3BoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut4Xwt3BoE .items-wrapper {
  margin: 0;
}
.cid-ut4Xwt3BoE .items-wrapper .item {
  padding: 0;
}
.cid-ut4Xwt3BoE .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ut4Xwt3BoE .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ut4Xwt3BoE .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ut4Xwt3BoE .item-title {
  color: #150764;
}
.cid-ut4Xwt3BoE .item-text,
.cid-ut4Xwt3BoE .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ut4Xwt3BoE .item-title,
.cid-ut4Xwt3BoE .mbr-section-btn,
.cid-ut4Xwt3BoE .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ut4Xwt3BoE .item-text {
  color: #ffffff;
}
.cid-ut5RlvOHiU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut5RlvOHiU .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut5RlvOHiU .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut5RlvOHiU .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut5RlvOHiU .link:hover:before {
  background: #082c4e;
}
.cid-ut5RlvOHiU .mbr-section-title {
  color: #ffffff;
}
.cid-ut5RlvOHiU .mbr-text,
.cid-ut5RlvOHiU .mbr-section-btn {
  color: #ffffff;
}
.cid-ut5RlvOHiU .link,
.cid-ut5RlvOHiU .link-wrap {
  color: #000000;
}
.cid-ut5RlvOHiU .mbr-title {
  color: #ffffff;
}
.cid-ut5RlvOHiU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5RlvOHiU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut5RCze7UL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #11125e;
}
.cid-ut5RCze7UL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut5RCze7UL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut5RCze7UL .row {
    padding: 0 24px;
  }
}
.cid-ut5RCze7UL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut5RCze7UL .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut5RCze7UL .mbr-section-title {
  color: #2c0066;
}
.cid-ut5RCze7UL .mbr-section-title,
.cid-ut5RCze7UL .mbr-section-btn {
  text-align: center;
}
.cid-ut55J8O4um {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ut55J8O4um .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut55J8O4um .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut55J8O4um .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut55J8O4um .link:hover:before {
  background: #082c4e;
}
.cid-ut55J8O4um .mbr-section-title {
  color: #000000;
}
.cid-ut55J8O4um .mbr-text,
.cid-ut55J8O4um .mbr-section-btn {
  color: #000000;
}
.cid-ut55J8O4um .link,
.cid-ut55J8O4um .link-wrap {
  color: #000000;
}
.cid-ut55J8O4um .mbr-title {
  color: #000000;
}
.cid-sg6UMLWIYm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2eae2;
}
.cid-sg6UMLWIYm .media-container-row .mbr-text {
  color: #353535;
}
.cid-ut8Ff9aopg {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #11125e;
}
.cid-ut8Ff9aopg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ff9aopg .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-ut8Ff9aopg .container {
    padding: 0 15px;
  }
}
.cid-ut8Ff9aopg .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8Ff9aopg .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8Ff9aopg .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8Ff9aopg .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ut8Ff9aopg .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8Ff9aopg .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8Ff9aopg .mbr-section-title {
  color: #131c28;
}
.cid-ut8Ff9aopg .mbr-desc {
  color: #131c28;
}
.cid-ut8Ff9aopg .mbr-section-title,
.cid-ut8Ff9aopg .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut8Ff9BkLV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8Ff9BkLV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ff9BkLV .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-ut8Ff9BkLV .container {
    padding: 0 15px;
  }
}
.cid-ut8Ff9BkLV .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8Ff9BkLV .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8Ff9BkLV .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8Ff9BkLV .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8Ff9BkLV .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8Ff9BkLV .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8Ff9BkLV .mbr-section-title {
  color: #131c28;
}
.cid-ut8Ff9BkLV .mbr-desc {
  color: #131c28;
}
.cid-ut8Ff9BkLV .mbr-section-title,
.cid-ut8Ff9BkLV .mbr-section-btn {
  text-align: left;
}
.cid-ut8Ff9BkLV .mbr-text {
  text-align: left;
}
.cid-ut8Ff9SRJK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8Ff9SRJK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ff9SRJK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8Ff9SRJK .row {
    padding: 0 24px;
  }
}
.cid-ut8Ff9SRJK .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8Ff9SRJK .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8Ff9SRJK .mbr-section-title {
  color: #2c0066;
}
.cid-ut8Ff9SRJK .mbr-section-title,
.cid-ut8Ff9SRJK .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffa45Eq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8Ffa45Eq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffa45Eq .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-ut8Ffa45Eq .container {
    padding: 0 15px;
  }
}
.cid-ut8Ffa45Eq .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8Ffa45Eq .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8Ffa45Eq .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8Ffa45Eq .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8Ffa45Eq .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8Ffa45Eq .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8Ffa45Eq .mbr-section-title {
  color: #131c28;
}
.cid-ut8Ffa45Eq .mbr-desc {
  color: #131c28;
}
.cid-ut8Ffa45Eq .mbr-section-title,
.cid-ut8Ffa45Eq .mbr-section-btn {
  text-align: left;
}
.cid-ut8Ffa45Eq .mbr-text {
  text-align: left;
}
.cid-ut8Ffal1lp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8Ffal1lp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffal1lp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8Ffal1lp .row {
    padding: 0 24px;
  }
}
.cid-ut8Ffal1lp .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8Ffal1lp .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8Ffal1lp .mbr-section-title {
  color: #2c0066;
}
.cid-ut8Ffal1lp .mbr-section-title,
.cid-ut8Ffal1lp .mbr-section-btn {
  text-align: center;
}
.cid-ut8FfaxUC6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8FfaxUC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfaxUC6 .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-ut8FfaxUC6 .container {
    padding: 0 15px;
  }
}
.cid-ut8FfaxUC6 .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8FfaxUC6 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8FfaxUC6 .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8FfaxUC6 .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8FfaxUC6 .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8FfaxUC6 .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8FfaxUC6 .mbr-section-title {
  color: #131c28;
}
.cid-ut8FfaxUC6 .mbr-desc {
  color: #131c28;
}
.cid-ut8FfaxUC6 .mbr-section-title,
.cid-ut8FfaxUC6 .mbr-section-btn {
  text-align: left;
}
.cid-ut8FfaxUC6 .mbr-text {
  text-align: left;
}
.cid-ut8FfaMCw1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8FfaMCw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfaMCw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfaMCw1 .row {
    padding: 0 24px;
  }
}
.cid-ut8FfaMCw1 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfaMCw1 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfaMCw1 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfaMCw1 .mbr-section-title,
.cid-ut8FfaMCw1 .mbr-section-btn {
  text-align: center;
}
.cid-ut8FfaXSri {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8FfaXSri .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfaXSri .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-ut8FfaXSri .container {
    padding: 0 15px;
  }
}
.cid-ut8FfaXSri .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8FfaXSri .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8FfaXSri .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8FfaXSri .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut8FfaXSri .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8FfaXSri .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8FfaXSri .mbr-section-title {
  color: #131c28;
}
.cid-ut8FfaXSri .mbr-desc {
  color: #131c28;
}
.cid-ut8FfaXSri .mbr-section-title,
.cid-ut8FfaXSri .mbr-section-btn {
  text-align: left;
}
.cid-ut8FfaXSri .mbr-text {
  text-align: left;
}
.cid-ut8FfbbSaT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfbbSaT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfbbSaT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfbbSaT .row {
    padding: 0 24px;
  }
}
.cid-ut8FfbbSaT .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfbbSaT .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfbbSaT .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfbbSaT .mbr-section-title,
.cid-ut8FfbbSaT .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffbn1qP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8Ffbn1qP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffbn1qP .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-ut8Ffbn1qP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8Ffbn1qP .container {
    padding: 0 12px;
  }
}
.cid-ut8Ffbn1qP .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8Ffbn1qP .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8Ffbn1qP .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8Ffbn1qP .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffbn1qP .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8Ffbn1qP .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffbn1qP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8Ffbn1qP .mbr-section-title {
  color: #222222;
}
.cid-ut8Ffbn1qP .mbr-text {
  color: #222222;
}
.cid-ut8FfbANu6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfbANu6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfbANu6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfbANu6 .row {
    padding: 0 24px;
  }
}
.cid-ut8FfbANu6 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfbANu6 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfbANu6 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfbANu6 .mbr-section-title,
.cid-ut8FfbANu6 .mbr-section-btn {
  text-align: center;
}
.cid-ut8FfbPf3c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8FfbPf3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfbPf3c .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-ut8FfbPf3c .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8FfbPf3c .container {
    padding: 0 12px;
  }
}
.cid-ut8FfbPf3c .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8FfbPf3c .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8FfbPf3c .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8FfbPf3c .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8FfbPf3c .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8FfbPf3c .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8FfbPf3c .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8FfbPf3c .mbr-section-title {
  color: #222222;
}
.cid-ut8FfbPf3c .mbr-text {
  color: #222222;
}
.cid-ut8Ffc1PGB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8Ffc1PGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffc1PGB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8Ffc1PGB .row {
    padding: 0 24px;
  }
}
.cid-ut8Ffc1PGB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8Ffc1PGB .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8Ffc1PGB .mbr-section-title {
  color: #2c0066;
}
.cid-ut8Ffc1PGB .mbr-section-title,
.cid-ut8Ffc1PGB .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffcd8NT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8Ffcd8NT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffcd8NT .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-ut8Ffcd8NT .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8Ffcd8NT .container {
    padding: 0 12px;
  }
}
.cid-ut8Ffcd8NT .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8Ffcd8NT .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8Ffcd8NT .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8Ffcd8NT .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffcd8NT .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8Ffcd8NT .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffcd8NT .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8Ffcd8NT .mbr-section-title {
  color: #222222;
}
.cid-ut8Ffcd8NT .mbr-text {
  color: #222222;
}
.cid-ut8FfcqePJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfcqePJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfcqePJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfcqePJ .row {
    padding: 0 24px;
  }
}
.cid-ut8FfcqePJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfcqePJ .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfcqePJ .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfcqePJ .mbr-section-title,
.cid-ut8FfcqePJ .mbr-section-btn {
  text-align: center;
}
.cid-ut8FfcCNZ6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8FfcCNZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfcCNZ6 .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-ut8FfcCNZ6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8FfcCNZ6 .container {
    padding: 0 12px;
  }
}
.cid-ut8FfcCNZ6 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8FfcCNZ6 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8FfcCNZ6 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8FfcCNZ6 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8FfcCNZ6 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8FfcCNZ6 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8FfcCNZ6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8FfcCNZ6 .mbr-section-title {
  color: #222222;
}
.cid-ut8FfcCNZ6 .mbr-text {
  color: #222222;
}
.cid-ut8FfcPZhk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfcPZhk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfcPZhk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfcPZhk .row {
    padding: 0 24px;
  }
}
.cid-ut8FfcPZhk .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfcPZhk .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfcPZhk .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfcPZhk .mbr-section-title,
.cid-ut8FfcPZhk .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffd3yCE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8Ffd3yCE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffd3yCE .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-ut8Ffd3yCE .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8Ffd3yCE .container {
    padding: 0 12px;
  }
}
.cid-ut8Ffd3yCE .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8Ffd3yCE .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8Ffd3yCE .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8Ffd3yCE .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffd3yCE .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8Ffd3yCE .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffd3yCE .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8Ffd3yCE .mbr-section-title {
  color: #222222;
}
.cid-ut8Ffd3yCE .mbr-text {
  color: #222222;
}
.cid-ut8FfdhIVd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfdhIVd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfdhIVd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfdhIVd .row {
    padding: 0 24px;
  }
}
.cid-ut8FfdhIVd .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfdhIVd .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfdhIVd .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfdhIVd .mbr-section-title,
.cid-ut8FfdhIVd .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffdtjah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8Ffdtjah .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffdtjah .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-ut8Ffdtjah .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8Ffdtjah .container {
    padding: 0 12px;
  }
}
.cid-ut8Ffdtjah .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8Ffdtjah .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8Ffdtjah .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8Ffdtjah .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffdtjah .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8Ffdtjah .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffdtjah .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8Ffdtjah .mbr-section-title {
  color: #222222;
}
.cid-ut8Ffdtjah .mbr-text {
  color: #222222;
}
.cid-ut8FfdGkiU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfdGkiU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfdGkiU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfdGkiU .row {
    padding: 0 24px;
  }
}
.cid-ut8FfdGkiU .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfdGkiU .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfdGkiU .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfdGkiU .mbr-section-title,
.cid-ut8FfdGkiU .mbr-section-btn {
  text-align: center;
}
.cid-ut8FfdS9RJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8FfdS9RJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfdS9RJ .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-ut8FfdS9RJ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8FfdS9RJ .container {
    padding: 0 12px;
  }
}
.cid-ut8FfdS9RJ .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8FfdS9RJ .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8FfdS9RJ .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8FfdS9RJ .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8FfdS9RJ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8FfdS9RJ .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8FfdS9RJ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8FfdS9RJ .mbr-section-title {
  color: #222222;
}
.cid-ut8FfdS9RJ .mbr-text {
  color: #222222;
}
.cid-ut8Ffe4rAB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8Ffe4rAB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffe4rAB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8Ffe4rAB .row {
    padding: 0 24px;
  }
}
.cid-ut8Ffe4rAB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8Ffe4rAB .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8Ffe4rAB .mbr-section-title {
  color: #2c0066;
}
.cid-ut8Ffe4rAB .mbr-section-title,
.cid-ut8Ffe4rAB .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffeg0mt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8Ffeg0mt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffeg0mt .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-ut8Ffeg0mt .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8Ffeg0mt .container {
    padding: 0 12px;
  }
}
.cid-ut8Ffeg0mt .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8Ffeg0mt .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8Ffeg0mt .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8Ffeg0mt .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffeg0mt .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8Ffeg0mt .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8Ffeg0mt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8Ffeg0mt .mbr-section-title {
  color: #222222;
}
.cid-ut8Ffeg0mt .mbr-text {
  color: #222222;
}
.cid-ut8FfewLAB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfewLAB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfewLAB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfewLAB .row {
    padding: 0 24px;
  }
}
.cid-ut8FfewLAB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfewLAB .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfewLAB .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfewLAB .mbr-section-title,
.cid-ut8FfewLAB .mbr-section-btn {
  text-align: center;
}
.cid-ut8FfeJLYW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8FfeJLYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfeJLYW .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-ut8FfeJLYW .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8FfeJLYW .container {
    padding: 0 12px;
  }
}
.cid-ut8FfeJLYW .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8FfeJLYW .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8FfeJLYW .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8FfeJLYW .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8FfeJLYW .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8FfeJLYW .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8FfeJLYW .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8FfeJLYW .mbr-section-title {
  color: #222222;
}
.cid-ut8FfeJLYW .mbr-text {
  color: #222222;
}
.cid-ut8FfeXUPd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FfeXUPd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfeXUPd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfeXUPd .row {
    padding: 0 24px;
  }
}
.cid-ut8FfeXUPd .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfeXUPd .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfeXUPd .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfeXUPd .mbr-section-title,
.cid-ut8FfeXUPd .mbr-section-btn {
  text-align: center;
}
.cid-ut8FffbeHM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8FffbeHM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FffbeHM .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-ut8FffbeHM .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8FffbeHM .container {
    padding: 0 12px;
  }
}
.cid-ut8FffbeHM .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8FffbeHM .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8FffbeHM .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8FffbeHM .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8FffbeHM .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8FffbeHM .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8FffbeHM .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8FffbeHM .mbr-section-title {
  color: #222222;
}
.cid-ut8FffbeHM .mbr-text {
  color: #222222;
}
.cid-ut8FffoKK6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FffoKK6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FffoKK6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FffoKK6 .row {
    padding: 0 24px;
  }
}
.cid-ut8FffoKK6 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FffoKK6 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FffoKK6 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FffoKK6 .mbr-section-title,
.cid-ut8FffoKK6 .mbr-section-btn {
  text-align: center;
}
.cid-ut8FffBgRN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8FffBgRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FffBgRN .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-ut8FffBgRN .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8FffBgRN .container {
    padding: 0 12px;
  }
}
.cid-ut8FffBgRN .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8FffBgRN .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8FffBgRN .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8FffBgRN .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8FffBgRN .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8FffBgRN .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8FffBgRN .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8FffBgRN .mbr-section-title {
  color: #222222;
}
.cid-ut8FffBgRN .mbr-text {
  color: #222222;
}
.cid-ut8FffRk1w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8FffRk1w .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FffRk1w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FffRk1w .row {
    padding: 0 24px;
  }
}
.cid-ut8FffRk1w .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FffRk1w .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FffRk1w .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FffRk1w .mbr-section-title,
.cid-ut8FffRk1w .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffg5YqB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8Ffg5YqB .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8Ffg5YqB .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8Ffg5YqB .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8Ffg5YqB .link:hover:before {
  background: #082c4e;
}
.cid-ut8Ffg5YqB .mbr-section-title {
  color: #11125e;
}
.cid-ut8Ffg5YqB .mbr-text,
.cid-ut8Ffg5YqB .mbr-section-btn {
  color: #11125e;
}
.cid-ut8Ffg5YqB .link,
.cid-ut8Ffg5YqB .link-wrap {
  color: #000000;
}
.cid-ut8Ffg5YqB .mbr-title {
  color: #11125e;
}
.cid-ut8Ffg5YqB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffg5YqB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8Ffgjbhu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8Ffgjbhu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffgjbhu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8Ffgjbhu .row {
    padding: 0 24px;
  }
}
.cid-ut8Ffgjbhu .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8Ffgjbhu .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8Ffgjbhu .mbr-section-title {
  color: #2c0066;
}
.cid-ut8Ffgjbhu .mbr-section-title,
.cid-ut8Ffgjbhu .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffgx8eZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8Ffgx8eZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffgx8eZ .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-ut8Ffgx8eZ .container {
    padding: 0 15px;
  }
}
.cid-ut8Ffgx8eZ .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8Ffgx8eZ .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8Ffgx8eZ .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8Ffgx8eZ .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut8Ffgx8eZ .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8Ffgx8eZ .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8Ffgx8eZ .mbr-section-title {
  color: #131c28;
}
.cid-ut8Ffgx8eZ .mbr-desc {
  color: #131c28;
}
.cid-ut8Ffgx8eZ .mbr-section-title,
.cid-ut8Ffgx8eZ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut8Ffgx8eZ .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-ut8FfgNyoB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8FfgNyoB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfgNyoB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfgNyoB .row {
    padding: 0 24px;
  }
}
.cid-ut8FfgNyoB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfgNyoB .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfgNyoB .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfgNyoB .mbr-section-title,
.cid-ut8FfgNyoB .mbr-section-btn {
  text-align: center;
}
.cid-ut8Ffh3E2j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #11125e;
}
.cid-ut8Ffh3E2j .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-ut8Ffh3E2j .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffh3E2j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8Ffh3E2j .items-wrapper {
  margin: 0;
}
.cid-ut8Ffh3E2j .items-wrapper .item {
  padding: 0;
}
.cid-ut8Ffh3E2j .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ut8Ffh3E2j .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ut8Ffh3E2j .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ut8Ffh3E2j .item-title {
  color: #150764;
}
.cid-ut8Ffh3E2j .item-text,
.cid-ut8Ffh3E2j .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ut8Ffh3E2j .item-title,
.cid-ut8Ffh3E2j .mbr-section-btn,
.cid-ut8Ffh3E2j .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ut8Ffh3E2j .item-text {
  color: #ffffff;
}
.cid-ut8Ffhn0Vl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8Ffhn0Vl .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8Ffhn0Vl .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8Ffhn0Vl .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8Ffhn0Vl .link:hover:before {
  background: #082c4e;
}
.cid-ut8Ffhn0Vl .mbr-section-title {
  color: #ffffff;
}
.cid-ut8Ffhn0Vl .mbr-text,
.cid-ut8Ffhn0Vl .mbr-section-btn {
  color: #ffffff;
}
.cid-ut8Ffhn0Vl .link,
.cid-ut8Ffhn0Vl .link-wrap {
  color: #000000;
}
.cid-ut8Ffhn0Vl .mbr-title {
  color: #ffffff;
}
.cid-ut8Ffhn0Vl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8Ffhn0Vl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8FfhCiKI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #11125e;
}
.cid-ut8FfhCiKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8FfhCiKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8FfhCiKI .row {
    padding: 0 24px;
  }
}
.cid-ut8FfhCiKI .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8FfhCiKI .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8FfhCiKI .mbr-section-title {
  color: #2c0066;
}
.cid-ut8FfhCiKI .mbr-section-title,
.cid-ut8FfhCiKI .mbr-section-btn {
  text-align: center;
}
.cid-ut8FfhQN7U {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ut8FfhQN7U .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8FfhQN7U .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8FfhQN7U .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8FfhQN7U .link:hover:before {
  background: #082c4e;
}
.cid-ut8FfhQN7U .mbr-section-title {
  color: #000000;
}
.cid-ut8FfhQN7U .mbr-text,
.cid-ut8FfhQN7U .mbr-section-btn {
  color: #000000;
}
.cid-ut8FfhQN7U .link,
.cid-ut8FfhQN7U .link-wrap {
  color: #000000;
}
.cid-ut8FfhQN7U .mbr-title {
  color: #000000;
}
.cid-ut8Ffi5Rrl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2eae2;
}
.cid-ut8Ffi5Rrl .media-container-row .mbr-text {
  color: #353535;
}
.cid-ut8F5vLWoJ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #11125e;
}
.cid-ut8F5vLWoJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5vLWoJ .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-ut8F5vLWoJ .container {
    padding: 0 15px;
  }
}
.cid-ut8F5vLWoJ .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8F5vLWoJ .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8F5vLWoJ .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8F5vLWoJ .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ut8F5vLWoJ .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8F5vLWoJ .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8F5vLWoJ .mbr-section-title {
  color: #131c28;
}
.cid-ut8F5vLWoJ .mbr-desc {
  color: #131c28;
}
.cid-ut8F5vLWoJ .mbr-section-title,
.cid-ut8F5vLWoJ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut8F5wiVfm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8F5wiVfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5wiVfm .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-ut8F5wiVfm .container {
    padding: 0 15px;
  }
}
.cid-ut8F5wiVfm .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8F5wiVfm .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8F5wiVfm .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8F5wiVfm .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8F5wiVfm .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8F5wiVfm .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8F5wiVfm .mbr-section-title {
  color: #131c28;
}
.cid-ut8F5wiVfm .mbr-desc {
  color: #131c28;
}
.cid-ut8F5wiVfm .mbr-section-title,
.cid-ut8F5wiVfm .mbr-section-btn {
  text-align: left;
}
.cid-ut8F5wiVfm .mbr-text {
  text-align: left;
}
.cid-ut8F5wB0t2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8F5wB0t2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5wB0t2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5wB0t2 .row {
    padding: 0 24px;
  }
}
.cid-ut8F5wB0t2 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5wB0t2 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5wB0t2 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5wB0t2 .mbr-section-title,
.cid-ut8F5wB0t2 .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5x71oE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8F5x71oE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5x71oE .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-ut8F5x71oE .container {
    padding: 0 15px;
  }
}
.cid-ut8F5x71oE .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8F5x71oE .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8F5x71oE .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8F5x71oE .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8F5x71oE .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8F5x71oE .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8F5x71oE .mbr-section-title {
  color: #131c28;
}
.cid-ut8F5x71oE .mbr-desc {
  color: #131c28;
}
.cid-ut8F5x71oE .mbr-section-title,
.cid-ut8F5x71oE .mbr-section-btn {
  text-align: left;
}
.cid-ut8F5x71oE .mbr-text {
  text-align: left;
}
.cid-ut8F5xGgaj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8F5xGgaj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5xGgaj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5xGgaj .row {
    padding: 0 24px;
  }
}
.cid-ut8F5xGgaj .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5xGgaj .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5xGgaj .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5xGgaj .mbr-section-title,
.cid-ut8F5xGgaj .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5xU7B1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8F5xU7B1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5xU7B1 .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-ut8F5xU7B1 .container {
    padding: 0 15px;
  }
}
.cid-ut8F5xU7B1 .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8F5xU7B1 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8F5xU7B1 .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8F5xU7B1 .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8F5xU7B1 .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8F5xU7B1 .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8F5xU7B1 .mbr-section-title {
  color: #131c28;
}
.cid-ut8F5xU7B1 .mbr-desc {
  color: #131c28;
}
.cid-ut8F5xU7B1 .mbr-section-title,
.cid-ut8F5xU7B1 .mbr-section-btn {
  text-align: left;
}
.cid-ut8F5xU7B1 .mbr-text {
  text-align: left;
}
.cid-ut8F5yc9Q2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8F5yc9Q2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5yc9Q2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5yc9Q2 .row {
    padding: 0 24px;
  }
}
.cid-ut8F5yc9Q2 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5yc9Q2 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5yc9Q2 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5yc9Q2 .mbr-section-title,
.cid-ut8F5yc9Q2 .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5yqqwu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8F5yqqwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5yqqwu .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-ut8F5yqqwu .container {
    padding: 0 15px;
  }
}
.cid-ut8F5yqqwu .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8F5yqqwu .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8F5yqqwu .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8F5yqqwu .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut8F5yqqwu .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8F5yqqwu .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8F5yqqwu .mbr-section-title {
  color: #131c28;
}
.cid-ut8F5yqqwu .mbr-desc {
  color: #131c28;
}
.cid-ut8F5yqqwu .mbr-section-title,
.cid-ut8F5yqqwu .mbr-section-btn {
  text-align: left;
}
.cid-ut8F5yqqwu .mbr-text {
  text-align: left;
}
.cid-ut8F5yGVvD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5yGVvD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5yGVvD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5yGVvD .row {
    padding: 0 24px;
  }
}
.cid-ut8F5yGVvD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5yGVvD .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5yGVvD .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5yGVvD .mbr-section-title,
.cid-ut8F5yGVvD .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5yTTDm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5yTTDm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5yTTDm .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-ut8F5yTTDm .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5yTTDm .container {
    padding: 0 12px;
  }
}
.cid-ut8F5yTTDm .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5yTTDm .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5yTTDm .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5yTTDm .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5yTTDm .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5yTTDm .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5yTTDm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5yTTDm .mbr-section-title {
  color: #222222;
}
.cid-ut8F5yTTDm .mbr-text {
  color: #222222;
}
.cid-ut8F5z7bCO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5z7bCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5z7bCO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5z7bCO .row {
    padding: 0 24px;
  }
}
.cid-ut8F5z7bCO .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5z7bCO .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5z7bCO .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5z7bCO .mbr-section-title,
.cid-ut8F5z7bCO .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5zl8Ax {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5zl8Ax .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5zl8Ax .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-ut8F5zl8Ax .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5zl8Ax .container {
    padding: 0 12px;
  }
}
.cid-ut8F5zl8Ax .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5zl8Ax .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5zl8Ax .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5zl8Ax .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5zl8Ax .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5zl8Ax .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5zl8Ax .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5zl8Ax .mbr-section-title {
  color: #222222;
}
.cid-ut8F5zl8Ax .mbr-text {
  color: #222222;
}
.cid-ut8F5zzZRb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5zzZRb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5zzZRb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5zzZRb .row {
    padding: 0 24px;
  }
}
.cid-ut8F5zzZRb .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5zzZRb .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5zzZRb .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5zzZRb .mbr-section-title,
.cid-ut8F5zzZRb .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5zLnWf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5zLnWf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5zLnWf .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-ut8F5zLnWf .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5zLnWf .container {
    padding: 0 12px;
  }
}
.cid-ut8F5zLnWf .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5zLnWf .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5zLnWf .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5zLnWf .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5zLnWf .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5zLnWf .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5zLnWf .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5zLnWf .mbr-section-title {
  color: #222222;
}
.cid-ut8F5zLnWf .mbr-text {
  color: #222222;
}
.cid-ut8F5zYToX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5zYToX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5zYToX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5zYToX .row {
    padding: 0 24px;
  }
}
.cid-ut8F5zYToX .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5zYToX .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5zYToX .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5zYToX .mbr-section-title,
.cid-ut8F5zYToX .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5AbNN6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5AbNN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5AbNN6 .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-ut8F5AbNN6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5AbNN6 .container {
    padding: 0 12px;
  }
}
.cid-ut8F5AbNN6 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5AbNN6 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5AbNN6 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5AbNN6 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5AbNN6 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5AbNN6 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5AbNN6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5AbNN6 .mbr-section-title {
  color: #222222;
}
.cid-ut8F5AbNN6 .mbr-text {
  color: #222222;
}
.cid-ut8F5ApUiF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5ApUiF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5ApUiF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5ApUiF .row {
    padding: 0 24px;
  }
}
.cid-ut8F5ApUiF .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5ApUiF .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5ApUiF .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5ApUiF .mbr-section-title,
.cid-ut8F5ApUiF .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5ACSkf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5ACSkf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5ACSkf .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-ut8F5ACSkf .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5ACSkf .container {
    padding: 0 12px;
  }
}
.cid-ut8F5ACSkf .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5ACSkf .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5ACSkf .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5ACSkf .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5ACSkf .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5ACSkf .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5ACSkf .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5ACSkf .mbr-section-title {
  color: #222222;
}
.cid-ut8F5ACSkf .mbr-text {
  color: #222222;
}
.cid-ut8F5APHDy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5APHDy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5APHDy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5APHDy .row {
    padding: 0 24px;
  }
}
.cid-ut8F5APHDy .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5APHDy .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5APHDy .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5APHDy .mbr-section-title,
.cid-ut8F5APHDy .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5B1ekm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5B1ekm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5B1ekm .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-ut8F5B1ekm .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5B1ekm .container {
    padding: 0 12px;
  }
}
.cid-ut8F5B1ekm .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5B1ekm .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5B1ekm .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5B1ekm .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5B1ekm .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5B1ekm .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5B1ekm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5B1ekm .mbr-section-title {
  color: #222222;
}
.cid-ut8F5B1ekm .mbr-text {
  color: #222222;
}
.cid-ut8F5BeVwn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5BeVwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5BeVwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5BeVwn .row {
    padding: 0 24px;
  }
}
.cid-ut8F5BeVwn .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5BeVwn .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5BeVwn .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5BeVwn .mbr-section-title,
.cid-ut8F5BeVwn .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5Bs0X7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5Bs0X7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5Bs0X7 .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-ut8F5Bs0X7 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5Bs0X7 .container {
    padding: 0 12px;
  }
}
.cid-ut8F5Bs0X7 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5Bs0X7 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5Bs0X7 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5Bs0X7 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5Bs0X7 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5Bs0X7 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5Bs0X7 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5Bs0X7 .mbr-section-title {
  color: #222222;
}
.cid-ut8F5Bs0X7 .mbr-text {
  color: #222222;
}
.cid-ut8F5BGTbj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5BGTbj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5BGTbj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5BGTbj .row {
    padding: 0 24px;
  }
}
.cid-ut8F5BGTbj .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5BGTbj .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5BGTbj .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5BGTbj .mbr-section-title,
.cid-ut8F5BGTbj .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5BTkUa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5BTkUa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5BTkUa .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-ut8F5BTkUa .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5BTkUa .container {
    padding: 0 12px;
  }
}
.cid-ut8F5BTkUa .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5BTkUa .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5BTkUa .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5BTkUa .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5BTkUa .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5BTkUa .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5BTkUa .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5BTkUa .mbr-section-title {
  color: #222222;
}
.cid-ut8F5BTkUa .mbr-text {
  color: #222222;
}
.cid-ut8F5CawJd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5CawJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5CawJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5CawJd .row {
    padding: 0 24px;
  }
}
.cid-ut8F5CawJd .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5CawJd .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5CawJd .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5CawJd .mbr-section-title,
.cid-ut8F5CawJd .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5CnHxO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5CnHxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5CnHxO .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-ut8F5CnHxO .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5CnHxO .container {
    padding: 0 12px;
  }
}
.cid-ut8F5CnHxO .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5CnHxO .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5CnHxO .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5CnHxO .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5CnHxO .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5CnHxO .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5CnHxO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5CnHxO .mbr-section-title {
  color: #222222;
}
.cid-ut8F5CnHxO .mbr-text {
  color: #222222;
}
.cid-ut8F5CCOtD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5CCOtD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5CCOtD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5CCOtD .row {
    padding: 0 24px;
  }
}
.cid-ut8F5CCOtD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5CCOtD .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5CCOtD .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5CCOtD .mbr-section-title,
.cid-ut8F5CCOtD .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5CQ7SP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5CQ7SP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5CQ7SP .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-ut8F5CQ7SP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5CQ7SP .container {
    padding: 0 12px;
  }
}
.cid-ut8F5CQ7SP .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5CQ7SP .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5CQ7SP .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5CQ7SP .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5CQ7SP .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5CQ7SP .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5CQ7SP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5CQ7SP .mbr-section-title {
  color: #222222;
}
.cid-ut8F5CQ7SP .mbr-text {
  color: #222222;
}
.cid-ut8F5D3ejU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5D3ejU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5D3ejU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5D3ejU .row {
    padding: 0 24px;
  }
}
.cid-ut8F5D3ejU .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5D3ejU .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5D3ejU .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5D3ejU .mbr-section-title,
.cid-ut8F5D3ejU .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5Dh345 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8F5Dh345 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5Dh345 .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-ut8F5Dh345 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8F5Dh345 .container {
    padding: 0 12px;
  }
}
.cid-ut8F5Dh345 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8F5Dh345 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8F5Dh345 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8F5Dh345 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8F5Dh345 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8F5Dh345 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8F5Dh345 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8F5Dh345 .mbr-section-title {
  color: #222222;
}
.cid-ut8F5Dh345 .mbr-text {
  color: #222222;
}
.cid-ut8F5Dx3IS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8F5Dx3IS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5Dx3IS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5Dx3IS .row {
    padding: 0 24px;
  }
}
.cid-ut8F5Dx3IS .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5Dx3IS .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5Dx3IS .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5Dx3IS .mbr-section-title,
.cid-ut8F5Dx3IS .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5DKeVs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8F5DKeVs .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8F5DKeVs .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8F5DKeVs .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8F5DKeVs .link:hover:before {
  background: #082c4e;
}
.cid-ut8F5DKeVs .mbr-section-title {
  color: #11125e;
}
.cid-ut8F5DKeVs .mbr-text,
.cid-ut8F5DKeVs .mbr-section-btn {
  color: #11125e;
}
.cid-ut8F5DKeVs .link,
.cid-ut8F5DKeVs .link-wrap {
  color: #000000;
}
.cid-ut8F5DKeVs .mbr-title {
  color: #11125e;
}
.cid-ut8F5DKeVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5DKeVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8F5DZ7u9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8F5DZ7u9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5DZ7u9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5DZ7u9 .row {
    padding: 0 24px;
  }
}
.cid-ut8F5DZ7u9 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5DZ7u9 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5DZ7u9 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5DZ7u9 .mbr-section-title,
.cid-ut8F5DZ7u9 .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5EcSxa {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8F5EcSxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5EcSxa .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-ut8F5EcSxa .container {
    padding: 0 15px;
  }
}
.cid-ut8F5EcSxa .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8F5EcSxa .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8F5EcSxa .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8F5EcSxa .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut8F5EcSxa .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8F5EcSxa .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8F5EcSxa .mbr-section-title {
  color: #131c28;
}
.cid-ut8F5EcSxa .mbr-desc {
  color: #131c28;
}
.cid-ut8F5EcSxa .mbr-section-title,
.cid-ut8F5EcSxa .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut8F5EcSxa .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-ut8F5ErSJd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8F5ErSJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5ErSJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5ErSJd .row {
    padding: 0 24px;
  }
}
.cid-ut8F5ErSJd .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5ErSJd .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5ErSJd .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5ErSJd .mbr-section-title,
.cid-ut8F5ErSJd .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5EJbd1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #11125e;
}
.cid-ut8F5EJbd1 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-ut8F5EJbd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5EJbd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8F5EJbd1 .items-wrapper {
  margin: 0;
}
.cid-ut8F5EJbd1 .items-wrapper .item {
  padding: 0;
}
.cid-ut8F5EJbd1 .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ut8F5EJbd1 .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ut8F5EJbd1 .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ut8F5EJbd1 .item-title {
  color: #150764;
}
.cid-ut8F5EJbd1 .item-text,
.cid-ut8F5EJbd1 .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ut8F5EJbd1 .item-title,
.cid-ut8F5EJbd1 .mbr-section-btn,
.cid-ut8F5EJbd1 .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ut8F5EJbd1 .item-text {
  color: #ffffff;
}
.cid-ut8F5F2oX9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8F5F2oX9 .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8F5F2oX9 .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8F5F2oX9 .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8F5F2oX9 .link:hover:before {
  background: #082c4e;
}
.cid-ut8F5F2oX9 .mbr-section-title {
  color: #ffffff;
}
.cid-ut8F5F2oX9 .mbr-text,
.cid-ut8F5F2oX9 .mbr-section-btn {
  color: #ffffff;
}
.cid-ut8F5F2oX9 .link,
.cid-ut8F5F2oX9 .link-wrap {
  color: #000000;
}
.cid-ut8F5F2oX9 .mbr-title {
  color: #ffffff;
}
.cid-ut8F5F2oX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5F2oX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8F5Fgthp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #11125e;
}
.cid-ut8F5Fgthp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8F5Fgthp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8F5Fgthp .row {
    padding: 0 24px;
  }
}
.cid-ut8F5Fgthp .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8F5Fgthp .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8F5Fgthp .mbr-section-title {
  color: #2c0066;
}
.cid-ut8F5Fgthp .mbr-section-title,
.cid-ut8F5Fgthp .mbr-section-btn {
  text-align: center;
}
.cid-ut8F5FMZnf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ut8F5FMZnf .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8F5FMZnf .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8F5FMZnf .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8F5FMZnf .link:hover:before {
  background: #082c4e;
}
.cid-ut8F5FMZnf .mbr-section-title {
  color: #000000;
}
.cid-ut8F5FMZnf .mbr-text,
.cid-ut8F5FMZnf .mbr-section-btn {
  color: #000000;
}
.cid-ut8F5FMZnf .link,
.cid-ut8F5FMZnf .link-wrap {
  color: #000000;
}
.cid-ut8F5FMZnf .mbr-title {
  color: #000000;
}
.cid-ut8F5Gi0ba {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2eae2;
}
.cid-ut8F5Gi0ba .media-container-row .mbr-text {
  color: #353535;
}
.cid-ut8G5Ddt8U {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #11125e;
}
.cid-ut8G5Ddt8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Ddt8U .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-ut8G5Ddt8U .container {
    padding: 0 15px;
  }
}
.cid-ut8G5Ddt8U .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8G5Ddt8U .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8G5Ddt8U .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8G5Ddt8U .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ut8G5Ddt8U .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8G5Ddt8U .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8G5Ddt8U .mbr-section-title {
  color: #131c28;
}
.cid-ut8G5Ddt8U .mbr-desc {
  color: #131c28;
}
.cid-ut8G5Ddt8U .mbr-section-title,
.cid-ut8G5Ddt8U .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut8G5DMbxf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8G5DMbxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5DMbxf .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-ut8G5DMbxf .container {
    padding: 0 15px;
  }
}
.cid-ut8G5DMbxf .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8G5DMbxf .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8G5DMbxf .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8G5DMbxf .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8G5DMbxf .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8G5DMbxf .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8G5DMbxf .mbr-section-title {
  color: #131c28;
}
.cid-ut8G5DMbxf .mbr-desc {
  color: #131c28;
}
.cid-ut8G5DMbxf .mbr-section-title,
.cid-ut8G5DMbxf .mbr-section-btn {
  text-align: left;
}
.cid-ut8G5DMbxf .mbr-text {
  text-align: left;
}
.cid-ut8G5E06py {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8G5E06py .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5E06py .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5E06py .row {
    padding: 0 24px;
  }
}
.cid-ut8G5E06py .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5E06py .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5E06py .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5E06py .mbr-section-title,
.cid-ut8G5E06py .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5Eft2C {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8G5Eft2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Eft2C .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-ut8G5Eft2C .container {
    padding: 0 15px;
  }
}
.cid-ut8G5Eft2C .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8G5Eft2C .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8G5Eft2C .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8G5Eft2C .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8G5Eft2C .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8G5Eft2C .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8G5Eft2C .mbr-section-title {
  color: #131c28;
}
.cid-ut8G5Eft2C .mbr-desc {
  color: #131c28;
}
.cid-ut8G5Eft2C .mbr-section-title,
.cid-ut8G5Eft2C .mbr-section-btn {
  text-align: left;
}
.cid-ut8G5Eft2C .mbr-text {
  text-align: left;
}
.cid-ut8G5Ewzyr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8G5Ewzyr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Ewzyr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5Ewzyr .row {
    padding: 0 24px;
  }
}
.cid-ut8G5Ewzyr .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5Ewzyr .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5Ewzyr .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5Ewzyr .mbr-section-title,
.cid-ut8G5Ewzyr .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5EKoJk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ut8G5EKoJk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5EKoJk .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-ut8G5EKoJk .container {
    padding: 0 15px;
  }
}
.cid-ut8G5EKoJk .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8G5EKoJk .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8G5EKoJk .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8G5EKoJk .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #11125e;
}
.cid-ut8G5EKoJk .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #11125e;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8G5EKoJk .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8G5EKoJk .mbr-section-title {
  color: #131c28;
}
.cid-ut8G5EKoJk .mbr-desc {
  color: #131c28;
}
.cid-ut8G5EKoJk .mbr-section-title,
.cid-ut8G5EKoJk .mbr-section-btn {
  text-align: left;
}
.cid-ut8G5EKoJk .mbr-text {
  text-align: left;
}
.cid-ut8G5F9cG4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut8G5F9cG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5F9cG4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5F9cG4 .row {
    padding: 0 24px;
  }
}
.cid-ut8G5F9cG4 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5F9cG4 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5F9cG4 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5F9cG4 .mbr-section-title,
.cid-ut8G5F9cG4 .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5Fr6RS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8G5Fr6RS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Fr6RS .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-ut8G5Fr6RS .container {
    padding: 0 15px;
  }
}
.cid-ut8G5Fr6RS .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8G5Fr6RS .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8G5Fr6RS .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8G5Fr6RS .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut8G5Fr6RS .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8G5Fr6RS .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8G5Fr6RS .mbr-section-title {
  color: #131c28;
}
.cid-ut8G5Fr6RS .mbr-desc {
  color: #131c28;
}
.cid-ut8G5Fr6RS .mbr-section-title,
.cid-ut8G5Fr6RS .mbr-section-btn {
  text-align: left;
}
.cid-ut8G5Fr6RS .mbr-text {
  text-align: left;
}
.cid-ut8G5FM7eL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5FM7eL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5FM7eL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5FM7eL .row {
    padding: 0 24px;
  }
}
.cid-ut8G5FM7eL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5FM7eL .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5FM7eL .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5FM7eL .mbr-section-title,
.cid-ut8G5FM7eL .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5G01N5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5G01N5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5G01N5 .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-ut8G5G01N5 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5G01N5 .container {
    padding: 0 12px;
  }
}
.cid-ut8G5G01N5 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5G01N5 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5G01N5 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5G01N5 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5G01N5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5G01N5 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5G01N5 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5G01N5 .mbr-section-title {
  color: #222222;
}
.cid-ut8G5G01N5 .mbr-text {
  color: #222222;
}
.cid-ut8G5GfLYz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5GfLYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5GfLYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5GfLYz .row {
    padding: 0 24px;
  }
}
.cid-ut8G5GfLYz .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5GfLYz .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5GfLYz .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5GfLYz .mbr-section-title,
.cid-ut8G5GfLYz .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5GuaI0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5GuaI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5GuaI0 .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-ut8G5GuaI0 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5GuaI0 .container {
    padding: 0 12px;
  }
}
.cid-ut8G5GuaI0 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5GuaI0 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5GuaI0 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5GuaI0 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5GuaI0 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5GuaI0 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5GuaI0 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5GuaI0 .mbr-section-title {
  color: #222222;
}
.cid-ut8G5GuaI0 .mbr-text {
  color: #222222;
}
.cid-ut8G5GGHJp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5GGHJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5GGHJp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5GGHJp .row {
    padding: 0 24px;
  }
}
.cid-ut8G5GGHJp .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5GGHJp .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5GGHJp .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5GGHJp .mbr-section-title,
.cid-ut8G5GGHJp .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5GTmgE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5GTmgE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5GTmgE .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-ut8G5GTmgE .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5GTmgE .container {
    padding: 0 12px;
  }
}
.cid-ut8G5GTmgE .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5GTmgE .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5GTmgE .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5GTmgE .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5GTmgE .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5GTmgE .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5GTmgE .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5GTmgE .mbr-section-title {
  color: #222222;
}
.cid-ut8G5GTmgE .mbr-text {
  color: #222222;
}
.cid-ut8G5H89JF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5H89JF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5H89JF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5H89JF .row {
    padding: 0 24px;
  }
}
.cid-ut8G5H89JF .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5H89JF .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5H89JF .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5H89JF .mbr-section-title,
.cid-ut8G5H89JF .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5HmCUN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5HmCUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5HmCUN .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-ut8G5HmCUN .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5HmCUN .container {
    padding: 0 12px;
  }
}
.cid-ut8G5HmCUN .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5HmCUN .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5HmCUN .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5HmCUN .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5HmCUN .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5HmCUN .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5HmCUN .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5HmCUN .mbr-section-title {
  color: #222222;
}
.cid-ut8G5HmCUN .mbr-text {
  color: #222222;
}
.cid-ut8G5HzrWL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5HzrWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5HzrWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5HzrWL .row {
    padding: 0 24px;
  }
}
.cid-ut8G5HzrWL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5HzrWL .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5HzrWL .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5HzrWL .mbr-section-title,
.cid-ut8G5HzrWL .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5HMNjD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5HMNjD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5HMNjD .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-ut8G5HMNjD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5HMNjD .container {
    padding: 0 12px;
  }
}
.cid-ut8G5HMNjD .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5HMNjD .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5HMNjD .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5HMNjD .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5HMNjD .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5HMNjD .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5HMNjD .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5HMNjD .mbr-section-title {
  color: #222222;
}
.cid-ut8G5HMNjD .mbr-text {
  color: #222222;
}
.cid-ut8G5HZj3n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5HZj3n .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5HZj3n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5HZj3n .row {
    padding: 0 24px;
  }
}
.cid-ut8G5HZj3n .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5HZj3n .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5HZj3n .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5HZj3n .mbr-section-title,
.cid-ut8G5HZj3n .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5Ia7lJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5Ia7lJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Ia7lJ .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-ut8G5Ia7lJ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5Ia7lJ .container {
    padding: 0 12px;
  }
}
.cid-ut8G5Ia7lJ .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5Ia7lJ .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5Ia7lJ .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5Ia7lJ .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5Ia7lJ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5Ia7lJ .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5Ia7lJ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5Ia7lJ .mbr-section-title {
  color: #222222;
}
.cid-ut8G5Ia7lJ .mbr-text {
  color: #222222;
}
.cid-ut8G5Is4Zs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5Is4Zs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Is4Zs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5Is4Zs .row {
    padding: 0 24px;
  }
}
.cid-ut8G5Is4Zs .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5Is4Zs .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5Is4Zs .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5Is4Zs .mbr-section-title,
.cid-ut8G5Is4Zs .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5IY729 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5IY729 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5IY729 .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-ut8G5IY729 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5IY729 .container {
    padding: 0 12px;
  }
}
.cid-ut8G5IY729 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5IY729 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5IY729 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5IY729 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5IY729 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5IY729 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5IY729 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5IY729 .mbr-section-title {
  color: #222222;
}
.cid-ut8G5IY729 .mbr-text {
  color: #222222;
}
.cid-ut8G5JlkMt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5JlkMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5JlkMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5JlkMt .row {
    padding: 0 24px;
  }
}
.cid-ut8G5JlkMt .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5JlkMt .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5JlkMt .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5JlkMt .mbr-section-title,
.cid-ut8G5JlkMt .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5JElF4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5JElF4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5JElF4 .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-ut8G5JElF4 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5JElF4 .container {
    padding: 0 12px;
  }
}
.cid-ut8G5JElF4 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5JElF4 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5JElF4 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5JElF4 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5JElF4 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5JElF4 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5JElF4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5JElF4 .mbr-section-title {
  color: #222222;
}
.cid-ut8G5JElF4 .mbr-text {
  color: #222222;
}
.cid-ut8G5K4nDP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5K4nDP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5K4nDP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5K4nDP .row {
    padding: 0 24px;
  }
}
.cid-ut8G5K4nDP .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5K4nDP .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5K4nDP .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5K4nDP .mbr-section-title,
.cid-ut8G5K4nDP .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5KjL24 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5KjL24 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5KjL24 .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-ut8G5KjL24 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5KjL24 .container {
    padding: 0 12px;
  }
}
.cid-ut8G5KjL24 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5KjL24 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5KjL24 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5KjL24 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5KjL24 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5KjL24 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5KjL24 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5KjL24 .mbr-section-title {
  color: #222222;
}
.cid-ut8G5KjL24 .mbr-text {
  color: #222222;
}
.cid-ut8G5Kxu9m {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5Kxu9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Kxu9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5Kxu9m .row {
    padding: 0 24px;
  }
}
.cid-ut8G5Kxu9m .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5Kxu9m .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5Kxu9m .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5Kxu9m .mbr-section-title,
.cid-ut8G5Kxu9m .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5KLkc6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5KLkc6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5KLkc6 .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-ut8G5KLkc6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5KLkc6 .container {
    padding: 0 12px;
  }
}
.cid-ut8G5KLkc6 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5KLkc6 .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5KLkc6 .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5KLkc6 .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5KLkc6 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5KLkc6 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5KLkc6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5KLkc6 .mbr-section-title {
  color: #222222;
}
.cid-ut8G5KLkc6 .mbr-text {
  color: #222222;
}
.cid-ut8G5L0gzz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5L0gzz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5L0gzz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5L0gzz .row {
    padding: 0 24px;
  }
}
.cid-ut8G5L0gzz .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5L0gzz .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5L0gzz .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5L0gzz .mbr-section-title,
.cid-ut8G5L0gzz .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5LdWjx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2eae2;
}
.cid-ut8G5LdWjx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5LdWjx .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-ut8G5LdWjx .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ut8G5LdWjx .container {
    padding: 0 12px;
  }
}
.cid-ut8G5LdWjx .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ut8G5LdWjx .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-ut8G5LdWjx .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-ut8G5LdWjx .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-ut8G5LdWjx .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ut8G5LdWjx .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ut8G5LdWjx .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ut8G5LdWjx .mbr-section-title {
  color: #222222;
}
.cid-ut8G5LdWjx .mbr-text {
  color: #222222;
}
.cid-ut8G5Lv4P5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2eae2;
}
.cid-ut8G5Lv4P5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Lv4P5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5Lv4P5 .row {
    padding: 0 24px;
  }
}
.cid-ut8G5Lv4P5 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5Lv4P5 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5Lv4P5 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5Lv4P5 .mbr-section-title,
.cid-ut8G5Lv4P5 .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5LIbnM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8G5LIbnM .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8G5LIbnM .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8G5LIbnM .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8G5LIbnM .link:hover:before {
  background: #082c4e;
}
.cid-ut8G5LIbnM .mbr-section-title {
  color: #11125e;
}
.cid-ut8G5LIbnM .mbr-text,
.cid-ut8G5LIbnM .mbr-section-btn {
  color: #11125e;
}
.cid-ut8G5LIbnM .link,
.cid-ut8G5LIbnM .link-wrap {
  color: #000000;
}
.cid-ut8G5LIbnM .mbr-title {
  color: #11125e;
}
.cid-ut8G5LIbnM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5LIbnM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8G5LYWn9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2eae2;
}
.cid-ut8G5LYWn9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5LYWn9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5LYWn9 .row {
    padding: 0 24px;
  }
}
.cid-ut8G5LYWn9 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5LYWn9 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5LYWn9 .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5LYWn9 .mbr-section-title,
.cid-ut8G5LYWn9 .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5Mdn1Q {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8G5Mdn1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Mdn1Q .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-ut8G5Mdn1Q .container {
    padding: 0 15px;
  }
}
.cid-ut8G5Mdn1Q .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ut8G5Mdn1Q .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ut8G5Mdn1Q .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ut8G5Mdn1Q .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ut8G5Mdn1Q .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ut8G5Mdn1Q .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ut8G5Mdn1Q .mbr-section-title {
  color: #131c28;
}
.cid-ut8G5Mdn1Q .mbr-desc {
  color: #131c28;
}
.cid-ut8G5Mdn1Q .mbr-section-title,
.cid-ut8G5Mdn1Q .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ut8G5Mdn1Q .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-ut8G5Mv72P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8G5Mv72P .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Mv72P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5Mv72P .row {
    padding: 0 24px;
  }
}
.cid-ut8G5Mv72P .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5Mv72P .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5Mv72P .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5Mv72P .mbr-section-title,
.cid-ut8G5Mv72P .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5MJ5ZB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #11125e;
}
.cid-ut8G5MJ5ZB .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-ut8G5MJ5ZB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5MJ5ZB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8G5MJ5ZB .items-wrapper {
  margin: 0;
}
.cid-ut8G5MJ5ZB .items-wrapper .item {
  padding: 0;
}
.cid-ut8G5MJ5ZB .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none !important;
}
@media (max-width: 992px) {
  .cid-ut8G5MJ5ZB .items-wrapper .item:last-child {
    border-bottom: none !important;
  }
}
.cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 32px;
  border-radius: 0 !important;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper {
    border-right: none;
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #e7271c;
  display: inline-flex;
}
.cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 16px;
  }
}
.cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ut8G5MJ5ZB .items-wrapper .item .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-ut8G5MJ5ZB .item-title {
  color: #150764;
}
.cid-ut8G5MJ5ZB .item-text,
.cid-ut8G5MJ5ZB .desc-wrapper {
  color: #150764;
  text-align: center;
}
.cid-ut8G5MJ5ZB .item-title,
.cid-ut8G5MJ5ZB .mbr-section-btn,
.cid-ut8G5MJ5ZB .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ut8G5MJ5ZB .item-text {
  color: #ffffff;
}
.cid-ut8G5N8TxY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #11125e;
}
.cid-ut8G5N8TxY .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8G5N8TxY .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8G5N8TxY .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8G5N8TxY .link:hover:before {
  background: #082c4e;
}
.cid-ut8G5N8TxY .mbr-section-title {
  color: #ffffff;
}
.cid-ut8G5N8TxY .mbr-text,
.cid-ut8G5N8TxY .mbr-section-btn {
  color: #ffffff;
}
.cid-ut8G5N8TxY .link,
.cid-ut8G5N8TxY .link-wrap {
  color: #000000;
}
.cid-ut8G5N8TxY .mbr-title {
  color: #ffffff;
}
.cid-ut8G5N8TxY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5N8TxY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8G5Np0nD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #11125e;
}
.cid-ut8G5Np0nD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8G5Np0nD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8G5Np0nD .row {
    padding: 0 24px;
  }
}
.cid-ut8G5Np0nD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ut8G5Np0nD .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ut8G5Np0nD .mbr-section-title {
  color: #2c0066;
}
.cid-ut8G5Np0nD .mbr-section-title,
.cid-ut8G5Np0nD .mbr-section-btn {
  text-align: center;
}
.cid-ut8G5NEI4y {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ut8G5NEI4y .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ut8G5NEI4y .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ut8G5NEI4y .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #082c4e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ut8G5NEI4y .link:hover:before {
  background: #082c4e;
}
.cid-ut8G5NEI4y .mbr-section-title {
  color: #000000;
}
.cid-ut8G5NEI4y .mbr-text,
.cid-ut8G5NEI4y .mbr-section-btn {
  color: #000000;
}
.cid-ut8G5NEI4y .link,
.cid-ut8G5NEI4y .link-wrap {
  color: #000000;
}
.cid-ut8G5NEI4y .mbr-title {
  color: #000000;
}
.cid-ut8G5NTz6I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2eae2;
}
.cid-ut8G5NTz6I .media-container-row .mbr-text {
  color: #353535;
}
