.btn {
  border-width: 2px;
}
body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 1.6rem;
  }
}
@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.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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 3rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #281dcd !important;
}
.bg-success {
  background-color: #d5c409 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #281dcd !important;
  border-color: #281dcd !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #191281 !important;
  border-color: #191281 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #191281 !important;
  border-color: #191281 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1d5356 !important;
  border-color: #1d5356 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #071415 !important;
  border-color: #071415 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #071415 !important;
  border-color: #071415 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #d5c409 !important;
  border-color: #d5c409 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #827705 !important;
  border-color: #827705 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #827705 !important;
  border-color: #827705 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #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: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #281dcd;
  color: #281dcd;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #191281 !important;
  background-color: transparent !important;
  border-color: #191281 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #281dcd !important;
  border-color: #281dcd !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #1d5356;
  color: #1d5356;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #071415 !important;
  background-color: transparent !important;
  border-color: #071415 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1d5356 !important;
  border-color: #1d5356 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #d5c409;
  color: #d5c409;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #827705 !important;
  background-color: transparent !important;
  border-color: #827705 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #d5c409 !important;
  border-color: #d5c409 !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: #281dcd !important;
}
.text-secondary {
  color: #1d5356 !important;
}
.text-success {
  color: #d5c409 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #171074 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #03090a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #736a05 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #281dcd;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #281dcd;
  border-color: #281dcd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #281dcd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c3c0f6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fcf5ae;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #281dcd !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #281dcd;
}
/* 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: #281dcd;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #281dcd;
}
.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: #281dcd;
  border-bottom-color: #281dcd;
}
.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: #281dcd !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: #1d5356 !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='%23281dcd' %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-toEkkhFSpv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toEkkhFSpv nav.navbar {
  position: fixed;
}
.cid-toEkkhFSpv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toEkkhFSpv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toEkkhFSpv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toEkkhFSpv .dropdown-item:hover,
.cid-toEkkhFSpv .dropdown-item:focus {
  background: #281dcd !important;
  color: white !important;
}
.cid-toEkkhFSpv .dropdown-item:hover span {
  color: white;
}
.cid-toEkkhFSpv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toEkkhFSpv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toEkkhFSpv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toEkkhFSpv .nav-link {
  position: relative;
}
.cid-toEkkhFSpv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toEkkhFSpv .container {
    flex-wrap: nowrap;
  }
}
.cid-toEkkhFSpv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toEkkhFSpv .dropdown-menu,
.cid-toEkkhFSpv .navbar.opened {
  background: #ffe161 !important;
}
.cid-toEkkhFSpv .nav-item:focus,
.cid-toEkkhFSpv .nav-link:focus {
  outline: none;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toEkkhFSpv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toEkkhFSpv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toEkkhFSpv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toEkkhFSpv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffe161;
}
.cid-toEkkhFSpv .navbar.opened {
  transition: all 0.3s;
}
.cid-toEkkhFSpv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toEkkhFSpv .navbar .navbar-logo img {
  width: auto;
}
.cid-toEkkhFSpv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toEkkhFSpv .navbar.collapsed {
  justify-content: center;
}
.cid-toEkkhFSpv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toEkkhFSpv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toEkkhFSpv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-toEkkhFSpv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toEkkhFSpv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toEkkhFSpv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toEkkhFSpv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toEkkhFSpv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-toEkkhFSpv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toEkkhFSpv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toEkkhFSpv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toEkkhFSpv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toEkkhFSpv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toEkkhFSpv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toEkkhFSpv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toEkkhFSpv .navbar.navbar-short {
  min-height: 60px;
}
.cid-toEkkhFSpv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toEkkhFSpv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toEkkhFSpv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-toEkkhFSpv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toEkkhFSpv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toEkkhFSpv .dropdown-item.active,
.cid-toEkkhFSpv .dropdown-item:active {
  background-color: transparent;
}
.cid-toEkkhFSpv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toEkkhFSpv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toEkkhFSpv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-toEkkhFSpv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toEkkhFSpv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toEkkhFSpv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toEkkhFSpv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toEkkhFSpv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toEkkhFSpv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toEkkhFSpv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toEkkhFSpv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toEkkhFSpv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toEkkhFSpv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toEkkhFSpv .navbar {
    height: 70px;
  }
  .cid-toEkkhFSpv .navbar.opened {
    height: auto;
  }
  .cid-toEkkhFSpv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMvnPyegjQ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uMvnPyegjQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvnPyegjQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvnPyegjQ .content-wrap {
  margin: 0;
}
.cid-uMvnPyegjQ .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.cid-uMvnPyegjQ .content-wrapper {
  padding: 0 112px;
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uMvnPyegjQ .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uMvnPyegjQ .content-wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 992px) {
  .cid-uMvnPyegjQ .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-uMvnPyegjQ .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uMvnPyegjQ .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMvnPyegjQ .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uMvnPyegjQ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uMvnPyegjQ .content-wrapper .mbr-desc {
  margin-top: 122px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMvnPyegjQ .content-wrapper .mbr-desc {
    margin-top: 32px;
  }
}
.cid-uMvnPyegjQ .image-wrapper {
  height: 100%;
  padding-left: 112px;
  border-left: 3px dashed #491414;
  padding-left: 64px;
}
@media (max-width: 1440px) {
  .cid-uMvnPyegjQ .image-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uMvnPyegjQ .image-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uMvnPyegjQ .image-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #491414;
    padding-top: 22px;
  }
}
.cid-uMvnPyegjQ .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMvnPyegjQ .image-wrapper img {
    height: 350px;
  }
}
.cid-uMvnPyegjQ .mbr-section-title {
  color: #c10b02;
}
.cid-uMvnPyegjQ .mbr-text,
.cid-uMvnPyegjQ .text-wrapper {
  color: #491414;
  text-align: center;
}
.cid-uMvnPyegjQ .mbr-desc {
  color: #4b4949;
  text-align: center;
}
.cid-uMvnPyegjQ .mbr-section-title,
.cid-uMvnPyegjQ .mbr-section-btn {
  text-align: center;
  color: #491414;
}
.cid-uMvotBdnaO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-uMvotBdnaO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvotBdnaO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvotBdnaO .mbr-section-subtitle {
  color: #491414;
}
.cid-uMvotBdnaO .mbr-section-title {
  color: #491414;
}
.cid-uMvrzg23ee {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #491414;
  background-image: linear-gradient(45deg, #ffe161 -20%, #491414 40%, #d5c409 200%);
}
@media (max-width: 768px) {
  .cid-uMvrzg23ee {
    background-image: linear-gradient(45deg, #ffe161 -60%, #491414 40%, #d5c409 200%);
  }
}
.cid-uMvrzg23ee .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvrzg23ee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvrzg23ee .row {
  justify-content: space-between;
}
.cid-uMvrzg23ee .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uMvrzg23ee .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-uMvrzg23ee .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMvrzg23ee .items-wrapper .item {
    margin-bottom: 22px;
  }
}
.cid-uMvrzg23ee .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uMvrzg23ee .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uMvrzg23ee .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-uMvrzg23ee .mbr-section-title {
  color: #ffffff;
}
.cid-uMvrzg23ee .item-title {
  color: #ffffff;
}
.cid-uMvrzg23ee .item-text {
  color: #ffffff;
}
.cid-uMvoAi2S2I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMvoAi2S2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvoAi2S2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1400px) {
  .cid-uMvoAi2S2I .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uMvoAi2S2I img {
  border-radius: 3rem;
}
.cid-uMvoAi2S2I .row {
  align-items: center;
}
.cid-uMvoAi2S2I .mbr-section-title {
  color: #491414;
}
.cid-uMvoAi2S2I .mbr-text,
.cid-uMvoAi2S2I .mbr-section-btn {
  color: #491414;
}
.cid-uMvoAi2S2I .mbr-section-subtitle {
  color: #491414;
}
.cid-uMvqhViewX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #491414;
}
.cid-uMvqhViewX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvqhViewX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvqhViewX .row {
  justify-content: center;
}
.cid-uMvqhViewX .mbr-section-title {
  margin-bottom: 0;
  color: #8e73fe;
}
.cid-uMvqhViewX .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -1.6rem;
}
@media (max-width: 1440px) {
  .cid-uMvqhViewX .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uMvqhViewX .card-wrapper {
    padding: 24px;
    margin-top: 24px;
  }
}
.cid-uMvqhViewX .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-uMvqhViewX .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .5;
  pointer-events: none;
}
.cid-uMvqhViewX .card-wrapper .mbr-section-subtitle {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uMvqhViewX .card-wrapper .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-uMvqhViewX .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uMvqhViewX .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uMvqhViewX .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uMvqhViewX .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uMvqhViewX .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uMvqhViewX .mbr-section-subtitle {
  color: #2c2c26;
  text-align: center;
}
.cid-uMvqhViewX .mbr-text,
.cid-uMvqhViewX .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uMvqhViewX .mbr-section-title,
.cid-uMvqhViewX .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uMvqBjNNne {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMvqBjNNne .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvqBjNNne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvqBjNNne .row {
  justify-content: center;
}
.cid-uMvqBjNNne .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uMvqBjNNne .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-uMvqBjNNne .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uMvqBjNNne .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
}
.cid-uMvqBjNNne .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-uMvqBjNNne .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMvqBjNNne .mbr-section-title,
.cid-uMvqBjNNne .mbr-iconfont {
  color: #FFBE0D;
}
.cid-uMvqBjNNne .mbr-desc {
  color: #000000;
}
.cid-uMvqBjNNne .mbr-text {
  color: #000000;
}
.cid-uMvqBjNNne .mbr-section-title,
.cid-uMvqBjNNne .title-wrapper,
.cid-uMvqBjNNne .mbr-iconfont {
  color: #491414;
}
.cid-uMvuQscpQv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMvuQscpQv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvuQscpQv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvuQscpQv .card-wrapper {
  padding: 100px 120px;
  background-color: #491414;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cid-uMvuQscpQv .card-wrapper {
    padding: 100px 80px;
  }
}
@media (max-width: 992px) {
  .cid-uMvuQscpQv .card-wrapper {
    display: block;
    padding: 40px 20px 20px;
  }
}
.cid-uMvuQscpQv .card-wrapper .content-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uMvuQscpQv .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uMvuQscpQv .card-wrapper .content-wrapper .iconfont-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uMvuQscpQv .card-wrapper .content-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uMvuQscpQv .card-wrapper .content-wrapper .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 52px;
  color: #19171c;
}
.cid-uMvuQscpQv .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uMvuQscpQv .card-wrapper .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uMvuQscpQv .card-wrapper .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uMvuQscpQv .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uMvuQscpQv .card-wrapper .image-wrapper {
  width: 30%;
}
@media (max-width: 992px) {
  .cid-uMvuQscpQv .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uMvuQscpQv .card-wrapper .image-wrapper img {
  height: 300px;
  object-fit: cover;
  box-shadow: 5px 40px 50px 0 #dddddd;
}
@media (max-width: 992px) {
  .cid-uMvuQscpQv .card-wrapper .image-wrapper img {
    box-shadow: none;
  }
}
.cid-uMvuQscpQv .mbr-section-title {
  color: #19171c;
}
.cid-uMvuQscpQv .mbr-text,
.cid-uMvuQscpQv .text-wrapper {
  color: #ecede8;
}
.cid-uMvuQscpQv .mbr-section-title,
.cid-uMvuQscpQv .mbr-section-btn,
.cid-uMvuQscpQv .iconfont-wrapper {
  color: #ffffff;
}
.cid-uMvvqaLhtG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3-1.jpg");
}
.cid-uMvvqaLhtG .container {
  display: flex;
  justify-content: center;
}
.cid-uMvvqaLhtG .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-uMvvqaLhtG .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #491414;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-uMvvqaLhtG .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-uMvvqaLhtG .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-uMvvqaLhtG .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uMvvqaLhtG .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uMvvqaLhtG .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uMvvqaLhtG .icon-box {
    margin-right: 20px;
  }
}
.cid-uMvvqaLhtG .icon-box .mbr-iconfont {
  color: #ffe161;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-uMvvqaLhtG .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uMvvqaLhtG .text-container {
  flex-grow: 1;
}
.cid-uMvvqaLhtG .mbr-section-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uMvvqaLhtG .mbr-text {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uMvvqaLhtG .link-text {
  margin-bottom: 0;
  margin-top: 5px;
  color: #ffffff;
}
.cid-uMvvqaLhtG .link-text a:hover {
  text-decoration: underline;
}
.cid-uMvvqaLhtG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvvqaLhtG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toEnwKcUBk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-toEnwKcUBk .media-container-row .mbr-text {
  text-align: center;
}
.cid-uMv9oyFZdH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMv9oyFZdH nav.navbar {
  position: fixed;
}
.cid-uMv9oyFZdH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMv9oyFZdH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMv9oyFZdH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMv9oyFZdH .dropdown-item:hover,
.cid-uMv9oyFZdH .dropdown-item:focus {
  background: #281dcd !important;
  color: white !important;
}
.cid-uMv9oyFZdH .dropdown-item:hover span {
  color: white;
}
.cid-uMv9oyFZdH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMv9oyFZdH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMv9oyFZdH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMv9oyFZdH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMv9oyFZdH .nav-link {
  position: relative;
}
.cid-uMv9oyFZdH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMv9oyFZdH .container {
    flex-wrap: nowrap;
  }
}
.cid-uMv9oyFZdH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMv9oyFZdH .dropdown-menu,
.cid-uMv9oyFZdH .navbar.opened {
  background: #ffe161 !important;
}
.cid-uMv9oyFZdH .nav-item:focus,
.cid-uMv9oyFZdH .nav-link:focus {
  outline: none;
}
.cid-uMv9oyFZdH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMv9oyFZdH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMv9oyFZdH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMv9oyFZdH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMv9oyFZdH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMv9oyFZdH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMv9oyFZdH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffe161;
}
.cid-uMv9oyFZdH .navbar.opened {
  transition: all 0.3s;
}
.cid-uMv9oyFZdH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMv9oyFZdH .navbar .navbar-logo img {
  width: auto;
}
.cid-uMv9oyFZdH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMv9oyFZdH .navbar.collapsed {
  justify-content: center;
}
.cid-uMv9oyFZdH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMv9oyFZdH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMv9oyFZdH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uMv9oyFZdH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMv9oyFZdH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMv9oyFZdH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMv9oyFZdH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMv9oyFZdH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMv9oyFZdH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMv9oyFZdH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMv9oyFZdH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMv9oyFZdH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMv9oyFZdH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMv9oyFZdH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMv9oyFZdH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMv9oyFZdH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMv9oyFZdH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMv9oyFZdH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMv9oyFZdH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMv9oyFZdH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uMv9oyFZdH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uMv9oyFZdH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMv9oyFZdH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMv9oyFZdH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMv9oyFZdH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMv9oyFZdH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMv9oyFZdH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMv9oyFZdH .dropdown-item.active,
.cid-uMv9oyFZdH .dropdown-item:active {
  background-color: transparent;
}
.cid-uMv9oyFZdH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMv9oyFZdH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMv9oyFZdH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMv9oyFZdH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-uMv9oyFZdH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMv9oyFZdH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMv9oyFZdH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMv9oyFZdH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMv9oyFZdH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMv9oyFZdH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-uMv9oyFZdH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMv9oyFZdH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMv9oyFZdH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMv9oyFZdH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMv9oyFZdH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMv9oyFZdH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMv9oyFZdH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMv9oyFZdH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMv9oyFZdH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMv9oyFZdH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMv9oyFZdH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMv9oyFZdH .navbar {
    height: 70px;
  }
  .cid-uMv9oyFZdH .navbar.opened {
    height: auto;
  }
  .cid-uMv9oyFZdH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMvySVltPz {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #491414;
}
.cid-uMvySVltPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvySVltPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvySVltPz .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMvySVltPz .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMvySVltPz .container {
    padding: 0 16px;
  }
}
.cid-uMvySVltPz .row {
  border-radius: 20px;
  background-color: #fdfcfc;
  padding: 90px 45px 75px;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uMvySVltPz .row {
    padding: 45px 32px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .cid-uMvySVltPz .row {
    padding: 45px 4px;
  }
}
.cid-uMvySVltPz .row .card {
  justify-content: center;
}
.cid-uMvySVltPz .title-wrapper {
  padding-right: 100px;
}
@media (max-width: 992px) {
  .cid-uMvySVltPz .title-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.cid-uMvySVltPz .title-wrapper .subtitle-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-uMvySVltPz .title-wrapper .subtitle-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uMvySVltPz .title-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uMvySVltPz .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-section-subtitle {
  margin: 0 20px 0 0;
}
.cid-uMvySVltPz .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-iconfont {
  font-size: 30px;
  color: #d1cece;
}
.cid-uMvySVltPz .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMvySVltPz .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMvySVltPz .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMvySVltPz .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uMvySVltPz .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uMvySVltPz .image-wrapper img {
  height: 590px;
  width: 70%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14rem !important;
  border: 5px solid #491414;
}
@media (max-width: 1440px) {
  .cid-uMvySVltPz .image-wrapper img {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .cid-uMvySVltPz .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uMvySVltPz .image-wrapper img {
    height: 350px;
  }
}
.cid-uMvySVltPz .mbr-section-subtitle {
  color: #d1cece;
}
.cid-uMvySVltPz .mbr-section-title {
  color: #192227;
}
.cid-uMvySVltPz .mbr-text {
  color: #192227;
}
.cid-uMvySVltPz .mbr-text,
.cid-uMvySVltPz .mbr-section-btn {
  color: #000000;
}
.cid-uMv9ozkzBK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ecede8;
}
.cid-uMv9ozkzBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMv9ozkzBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv9ozkzBK .mbr-section-subtitle {
  color: #000000;
}
.cid-uMv9ozkzBK .mbr-section-title {
  color: #491414;
}
.cid-uMvzf9flFg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uMvzf9flFg .container {
  display: flex;
  justify-content: center;
}
.cid-uMvzf9flFg .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-uMvzf9flFg .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #491414;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-uMvzf9flFg .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-uMvzf9flFg .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-uMvzf9flFg .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uMvzf9flFg .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uMvzf9flFg .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uMvzf9flFg .icon-box {
    margin-right: 20px;
  }
}
.cid-uMvzf9flFg .icon-box .mbr-iconfont {
  color: #ffe161;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-uMvzf9flFg .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uMvzf9flFg .text-container {
  flex-grow: 1;
}
.cid-uMvzf9flFg .mbr-section-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uMvzf9flFg .mbr-text {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uMvzf9flFg .link-text {
  margin-bottom: 0;
  margin-top: 5px;
  color: #ffffff;
}
.cid-uMvzf9flFg .link-text a:hover {
  text-decoration: underline;
}
.cid-uMvzf9flFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzf9flFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv9oA0Ul4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMv9oA0Ul4 .media-container-row .mbr-text {
  text-align: center;
}
.cid-uMvama9DA8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMvama9DA8 nav.navbar {
  position: fixed;
}
.cid-uMvama9DA8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvama9DA8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMvama9DA8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMvama9DA8 .dropdown-item:hover,
.cid-uMvama9DA8 .dropdown-item:focus {
  background: #281dcd !important;
  color: white !important;
}
.cid-uMvama9DA8 .dropdown-item:hover span {
  color: white;
}
.cid-uMvama9DA8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMvama9DA8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMvama9DA8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMvama9DA8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMvama9DA8 .nav-link {
  position: relative;
}
.cid-uMvama9DA8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMvama9DA8 .container {
    flex-wrap: nowrap;
  }
}
.cid-uMvama9DA8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMvama9DA8 .dropdown-menu,
.cid-uMvama9DA8 .navbar.opened {
  background: #ffe161 !important;
}
.cid-uMvama9DA8 .nav-item:focus,
.cid-uMvama9DA8 .nav-link:focus {
  outline: none;
}
.cid-uMvama9DA8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMvama9DA8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMvama9DA8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMvama9DA8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvama9DA8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMvama9DA8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMvama9DA8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffe161;
}
.cid-uMvama9DA8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMvama9DA8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMvama9DA8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uMvama9DA8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMvama9DA8 .navbar.collapsed {
  justify-content: center;
}
.cid-uMvama9DA8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMvama9DA8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMvama9DA8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uMvama9DA8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMvama9DA8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMvama9DA8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMvama9DA8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMvama9DA8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMvama9DA8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMvama9DA8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMvama9DA8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMvama9DA8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMvama9DA8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMvama9DA8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMvama9DA8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMvama9DA8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMvama9DA8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMvama9DA8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMvama9DA8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMvama9DA8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uMvama9DA8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uMvama9DA8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMvama9DA8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMvama9DA8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMvama9DA8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMvama9DA8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMvama9DA8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMvama9DA8 .dropdown-item.active,
.cid-uMvama9DA8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMvama9DA8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMvama9DA8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMvama9DA8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMvama9DA8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-uMvama9DA8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMvama9DA8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMvama9DA8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMvama9DA8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMvama9DA8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMvama9DA8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-uMvama9DA8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMvama9DA8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvama9DA8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvama9DA8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMvama9DA8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvama9DA8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMvama9DA8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMvama9DA8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvama9DA8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMvama9DA8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMvama9DA8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMvama9DA8 .navbar {
    height: 70px;
  }
  .cid-uMvama9DA8 .navbar.opened {
    height: auto;
  }
  .cid-uMvama9DA8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMvzq5VLTH {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #491414;
}
.cid-uMvzq5VLTH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzq5VLTH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvzq5VLTH .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMvzq5VLTH .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMvzq5VLTH .container {
    padding: 0 16px;
  }
}
.cid-uMvzq5VLTH .row {
  border-radius: 20px;
  background-color: #fdfcfc;
  padding: 90px 45px 75px;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uMvzq5VLTH .row {
    padding: 45px 32px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .cid-uMvzq5VLTH .row {
    padding: 45px 4px;
  }
}
.cid-uMvzq5VLTH .row .card {
  justify-content: center;
}
.cid-uMvzq5VLTH .title-wrapper {
  padding-right: 100px;
}
@media (max-width: 992px) {
  .cid-uMvzq5VLTH .title-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.cid-uMvzq5VLTH .title-wrapper .subtitle-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-uMvzq5VLTH .title-wrapper .subtitle-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uMvzq5VLTH .title-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uMvzq5VLTH .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-section-subtitle {
  margin: 0 20px 0 0;
}
.cid-uMvzq5VLTH .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-iconfont {
  font-size: 30px;
  color: #d1cece;
}
.cid-uMvzq5VLTH .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMvzq5VLTH .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMvzq5VLTH .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMvzq5VLTH .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uMvzq5VLTH .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uMvzq5VLTH .image-wrapper img {
  height: 590px;
  width: 70%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14rem !important;
  border: 5px solid #491414;
}
@media (max-width: 1440px) {
  .cid-uMvzq5VLTH .image-wrapper img {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .cid-uMvzq5VLTH .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uMvzq5VLTH .image-wrapper img {
    height: 350px;
  }
}
.cid-uMvzq5VLTH .mbr-section-subtitle {
  color: #d1cece;
}
.cid-uMvzq5VLTH .mbr-section-title {
  color: #192227;
}
.cid-uMvzq5VLTH .mbr-text {
  color: #192227;
}
.cid-uMvzq5VLTH .mbr-text,
.cid-uMvzq5VLTH .mbr-section-btn {
  color: #000000;
}
.cid-uMvamaRcZZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ecede8;
}
.cid-uMvamaRcZZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvamaRcZZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvamaRcZZ .mbr-section-subtitle {
  color: #000000;
}
.cid-uMvamaRcZZ .mbr-section-title {
  color: #491414;
}
.cid-uMvzDarrJb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uMvzDarrJb .container {
  display: flex;
  justify-content: center;
}
.cid-uMvzDarrJb .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-uMvzDarrJb .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #491414;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-uMvzDarrJb .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-uMvzDarrJb .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-uMvzDarrJb .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uMvzDarrJb .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uMvzDarrJb .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uMvzDarrJb .icon-box {
    margin-right: 20px;
  }
}
.cid-uMvzDarrJb .icon-box .mbr-iconfont {
  color: #ffe161;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-uMvzDarrJb .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uMvzDarrJb .text-container {
  flex-grow: 1;
}
.cid-uMvzDarrJb .mbr-section-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uMvzDarrJb .mbr-text {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uMvzDarrJb .link-text {
  margin-bottom: 0;
  margin-top: 5px;
  color: #ffffff;
}
.cid-uMvzDarrJb .link-text a:hover {
  text-decoration: underline;
}
.cid-uMvzDarrJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzDarrJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvambagDw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMvambagDw .media-container-row .mbr-text {
  text-align: center;
}
.cid-uMvca1dfkw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMvca1dfkw nav.navbar {
  position: fixed;
}
.cid-uMvca1dfkw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvca1dfkw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMvca1dfkw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMvca1dfkw .dropdown-item:hover,
.cid-uMvca1dfkw .dropdown-item:focus {
  background: #281dcd !important;
  color: white !important;
}
.cid-uMvca1dfkw .dropdown-item:hover span {
  color: white;
}
.cid-uMvca1dfkw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMvca1dfkw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMvca1dfkw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMvca1dfkw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMvca1dfkw .nav-link {
  position: relative;
}
.cid-uMvca1dfkw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMvca1dfkw .container {
    flex-wrap: nowrap;
  }
}
.cid-uMvca1dfkw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMvca1dfkw .dropdown-menu,
.cid-uMvca1dfkw .navbar.opened {
  background: #ffe161 !important;
}
.cid-uMvca1dfkw .nav-item:focus,
.cid-uMvca1dfkw .nav-link:focus {
  outline: none;
}
.cid-uMvca1dfkw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMvca1dfkw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMvca1dfkw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMvca1dfkw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvca1dfkw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMvca1dfkw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMvca1dfkw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffe161;
}
.cid-uMvca1dfkw .navbar.opened {
  transition: all 0.3s;
}
.cid-uMvca1dfkw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMvca1dfkw .navbar .navbar-logo img {
  width: auto;
}
.cid-uMvca1dfkw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMvca1dfkw .navbar.collapsed {
  justify-content: center;
}
.cid-uMvca1dfkw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMvca1dfkw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMvca1dfkw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uMvca1dfkw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMvca1dfkw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMvca1dfkw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMvca1dfkw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMvca1dfkw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMvca1dfkw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMvca1dfkw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMvca1dfkw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMvca1dfkw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMvca1dfkw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMvca1dfkw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMvca1dfkw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMvca1dfkw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMvca1dfkw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMvca1dfkw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMvca1dfkw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMvca1dfkw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uMvca1dfkw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uMvca1dfkw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMvca1dfkw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMvca1dfkw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMvca1dfkw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMvca1dfkw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMvca1dfkw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMvca1dfkw .dropdown-item.active,
.cid-uMvca1dfkw .dropdown-item:active {
  background-color: transparent;
}
.cid-uMvca1dfkw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMvca1dfkw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMvca1dfkw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMvca1dfkw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-uMvca1dfkw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMvca1dfkw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMvca1dfkw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMvca1dfkw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMvca1dfkw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMvca1dfkw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-uMvca1dfkw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMvca1dfkw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvca1dfkw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvca1dfkw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMvca1dfkw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvca1dfkw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMvca1dfkw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMvca1dfkw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvca1dfkw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMvca1dfkw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMvca1dfkw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMvca1dfkw .navbar {
    height: 70px;
  }
  .cid-uMvca1dfkw .navbar.opened {
    height: auto;
  }
  .cid-uMvca1dfkw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMvwADseSj {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f1f1f1;
  overflow: hidden;
}
.cid-uMvwADseSj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvwADseSj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvwADseSj .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uMvwADseSj .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uMvwADseSj .container {
    padding: 0 14px;
  }
}
.cid-uMvwADseSj .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uMvwADseSj .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMvwADseSj .image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #01004c;
  transform: rotate(5deg);
  pointer-events: none;
}
.cid-uMvwADseSj .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 600px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .image-wrapper img {
    height: 300px;
  }
}
.cid-uMvwADseSj .content-wrapper {
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .content-wrapper {
    margin: 0;
  }
}
.cid-uMvwADseSj .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .content-wrapper .mbr-name {
    margin-bottom: 22px;
  }
}
.cid-uMvwADseSj .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 65%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uMvwADseSj .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uMvwADseSj .mbr-section-title {
  color: #01004c;
  text-align: center;
}
.cid-uMvwADseSj .mbr-name {
  color: #01004c;
}
.cid-uMvwADseSj .mbr-text {
  color: #01004c;
}
.cid-uMvwADseSj .mbr-section-title,
.cid-uMvwADseSj .mbr-section-btn {
  color: #491414;
}
.cid-uMvwADseSj .mbr-text,
.cid-uMvwADseSj .text-wrapper {
  color: #491414;
}
.cid-uMvca20NY7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ecede8;
}
.cid-uMvca20NY7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvca20NY7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvca20NY7 .mbr-section-subtitle {
  color: #000000;
}
.cid-uMvca20NY7 .mbr-section-title {
  color: #491414;
}
.cid-uMvwt6Okmq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uMvwt6Okmq .container {
  display: flex;
  justify-content: center;
}
.cid-uMvwt6Okmq .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-uMvwt6Okmq .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #491414;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-uMvwt6Okmq .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-uMvwt6Okmq .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-uMvwt6Okmq .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uMvwt6Okmq .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uMvwt6Okmq .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uMvwt6Okmq .icon-box {
    margin-right: 20px;
  }
}
.cid-uMvwt6Okmq .icon-box .mbr-iconfont {
  color: #ffe161;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-uMvwt6Okmq .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uMvwt6Okmq .text-container {
  flex-grow: 1;
}
.cid-uMvwt6Okmq .mbr-section-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uMvwt6Okmq .mbr-text {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uMvwt6Okmq .link-text {
  margin-bottom: 0;
  margin-top: 5px;
  color: #ffffff;
}
.cid-uMvwt6Okmq .link-text a:hover {
  text-decoration: underline;
}
.cid-uMvwt6Okmq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvwt6Okmq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvca2Pxk5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMvca2Pxk5 .media-container-row .mbr-text {
  text-align: center;
}
.cid-uMvzH4hl6x {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMvzH4hl6x nav.navbar {
  position: fixed;
}
.cid-uMvzH4hl6x .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvzH4hl6x .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMvzH4hl6x .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMvzH4hl6x .dropdown-item:hover,
.cid-uMvzH4hl6x .dropdown-item:focus {
  background: #281dcd !important;
  color: white !important;
}
.cid-uMvzH4hl6x .dropdown-item:hover span {
  color: white;
}
.cid-uMvzH4hl6x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMvzH4hl6x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMvzH4hl6x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMvzH4hl6x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMvzH4hl6x .nav-link {
  position: relative;
}
.cid-uMvzH4hl6x .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMvzH4hl6x .container {
    flex-wrap: nowrap;
  }
}
.cid-uMvzH4hl6x .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMvzH4hl6x .dropdown-menu,
.cid-uMvzH4hl6x .navbar.opened {
  background: #ffe161 !important;
}
.cid-uMvzH4hl6x .nav-item:focus,
.cid-uMvzH4hl6x .nav-link:focus {
  outline: none;
}
.cid-uMvzH4hl6x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMvzH4hl6x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMvzH4hl6x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMvzH4hl6x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvzH4hl6x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMvzH4hl6x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMvzH4hl6x .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffe161;
}
.cid-uMvzH4hl6x .navbar.opened {
  transition: all 0.3s;
}
.cid-uMvzH4hl6x .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMvzH4hl6x .navbar .navbar-logo img {
  width: auto;
}
.cid-uMvzH4hl6x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMvzH4hl6x .navbar.collapsed {
  justify-content: center;
}
.cid-uMvzH4hl6x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMvzH4hl6x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMvzH4hl6x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uMvzH4hl6x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMvzH4hl6x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMvzH4hl6x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMvzH4hl6x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMvzH4hl6x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMvzH4hl6x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMvzH4hl6x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMvzH4hl6x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMvzH4hl6x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMvzH4hl6x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMvzH4hl6x .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMvzH4hl6x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMvzH4hl6x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMvzH4hl6x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMvzH4hl6x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMvzH4hl6x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMvzH4hl6x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uMvzH4hl6x .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uMvzH4hl6x .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMvzH4hl6x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMvzH4hl6x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMvzH4hl6x .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMvzH4hl6x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMvzH4hl6x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMvzH4hl6x .dropdown-item.active,
.cid-uMvzH4hl6x .dropdown-item:active {
  background-color: transparent;
}
.cid-uMvzH4hl6x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMvzH4hl6x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMvzH4hl6x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMvzH4hl6x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-uMvzH4hl6x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMvzH4hl6x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMvzH4hl6x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMvzH4hl6x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMvzH4hl6x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMvzH4hl6x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-uMvzH4hl6x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMvzH4hl6x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvzH4hl6x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvzH4hl6x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMvzH4hl6x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvzH4hl6x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMvzH4hl6x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMvzH4hl6x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvzH4hl6x .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMvzH4hl6x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMvzH4hl6x .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMvzH4hl6x .navbar {
    height: 70px;
  }
  .cid-uMvzH4hl6x .navbar.opened {
    height: auto;
  }
  .cid-uMvzH4hl6x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMvzH599Ca {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f1f1f1;
  overflow: hidden;
}
.cid-uMvzH599Ca .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzH599Ca .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvzH599Ca .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uMvzH599Ca .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uMvzH599Ca .container {
    padding: 0 14px;
  }
}
.cid-uMvzH599Ca .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uMvzH599Ca .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMvzH599Ca .image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #01004c;
  transform: rotate(5deg);
  pointer-events: none;
}
.cid-uMvzH599Ca .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 600px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .image-wrapper img {
    height: 300px;
  }
}
.cid-uMvzH599Ca .content-wrapper {
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .content-wrapper {
    margin: 0;
  }
}
.cid-uMvzH599Ca .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .content-wrapper .mbr-name {
    margin-bottom: 22px;
  }
}
.cid-uMvzH599Ca .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 65%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uMvzH599Ca .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uMvzH599Ca .mbr-section-title {
  color: #01004c;
  text-align: center;
}
.cid-uMvzH599Ca .mbr-name {
  color: #01004c;
}
.cid-uMvzH599Ca .mbr-text {
  color: #01004c;
}
.cid-uMvzH599Ca .mbr-section-title,
.cid-uMvzH599Ca .mbr-section-btn {
  color: #491414;
}
.cid-uMvzH599Ca .mbr-text,
.cid-uMvzH599Ca .text-wrapper {
  color: #491414;
}
.cid-uMvzH63k9m {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ecede8;
}
.cid-uMvzH63k9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzH63k9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvzH63k9m .mbr-section-subtitle {
  color: #000000;
}
.cid-uMvzH63k9m .mbr-section-title {
  color: #491414;
}
.cid-uMvzH6RnM7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uMvzH6RnM7 .container {
  display: flex;
  justify-content: center;
}
.cid-uMvzH6RnM7 .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-uMvzH6RnM7 .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #491414;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-uMvzH6RnM7 .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-uMvzH6RnM7 .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-uMvzH6RnM7 .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uMvzH6RnM7 .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uMvzH6RnM7 .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uMvzH6RnM7 .icon-box {
    margin-right: 20px;
  }
}
.cid-uMvzH6RnM7 .icon-box .mbr-iconfont {
  color: #ffe161;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-uMvzH6RnM7 .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uMvzH6RnM7 .text-container {
  flex-grow: 1;
}
.cid-uMvzH6RnM7 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uMvzH6RnM7 .mbr-text {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uMvzH6RnM7 .link-text {
  margin-bottom: 0;
  margin-top: 5px;
  color: #ffffff;
}
.cid-uMvzH6RnM7 .link-text a:hover {
  text-decoration: underline;
}
.cid-uMvzH6RnM7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzH6RnM7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvzH7Au0d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMvzH7Au0d .media-container-row .mbr-text {
  text-align: center;
}
.cid-uMvzHuQ55d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMvzHuQ55d nav.navbar {
  position: fixed;
}
.cid-uMvzHuQ55d .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvzHuQ55d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMvzHuQ55d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMvzHuQ55d .dropdown-item:hover,
.cid-uMvzHuQ55d .dropdown-item:focus {
  background: #281dcd !important;
  color: white !important;
}
.cid-uMvzHuQ55d .dropdown-item:hover span {
  color: white;
}
.cid-uMvzHuQ55d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMvzHuQ55d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMvzHuQ55d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMvzHuQ55d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMvzHuQ55d .nav-link {
  position: relative;
}
.cid-uMvzHuQ55d .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMvzHuQ55d .container {
    flex-wrap: nowrap;
  }
}
.cid-uMvzHuQ55d .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMvzHuQ55d .dropdown-menu,
.cid-uMvzHuQ55d .navbar.opened {
  background: #ffe161 !important;
}
.cid-uMvzHuQ55d .nav-item:focus,
.cid-uMvzHuQ55d .nav-link:focus {
  outline: none;
}
.cid-uMvzHuQ55d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMvzHuQ55d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMvzHuQ55d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMvzHuQ55d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMvzHuQ55d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMvzHuQ55d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMvzHuQ55d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffe161;
}
.cid-uMvzHuQ55d .navbar.opened {
  transition: all 0.3s;
}
.cid-uMvzHuQ55d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMvzHuQ55d .navbar .navbar-logo img {
  width: auto;
}
.cid-uMvzHuQ55d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMvzHuQ55d .navbar.collapsed {
  justify-content: center;
}
.cid-uMvzHuQ55d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMvzHuQ55d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMvzHuQ55d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uMvzHuQ55d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMvzHuQ55d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMvzHuQ55d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMvzHuQ55d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMvzHuQ55d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMvzHuQ55d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMvzHuQ55d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMvzHuQ55d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMvzHuQ55d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMvzHuQ55d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMvzHuQ55d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMvzHuQ55d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMvzHuQ55d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMvzHuQ55d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMvzHuQ55d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMvzHuQ55d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMvzHuQ55d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uMvzHuQ55d .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uMvzHuQ55d .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMvzHuQ55d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMvzHuQ55d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMvzHuQ55d .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMvzHuQ55d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMvzHuQ55d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMvzHuQ55d .dropdown-item.active,
.cid-uMvzHuQ55d .dropdown-item:active {
  background-color: transparent;
}
.cid-uMvzHuQ55d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMvzHuQ55d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMvzHuQ55d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMvzHuQ55d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-uMvzHuQ55d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMvzHuQ55d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMvzHuQ55d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMvzHuQ55d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMvzHuQ55d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMvzHuQ55d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-uMvzHuQ55d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMvzHuQ55d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvzHuQ55d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMvzHuQ55d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMvzHuQ55d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvzHuQ55d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMvzHuQ55d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMvzHuQ55d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMvzHuQ55d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMvzHuQ55d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMvzHuQ55d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMvzHuQ55d .navbar {
    height: 70px;
  }
  .cid-uMvzHuQ55d .navbar.opened {
    height: auto;
  }
  .cid-uMvzHuQ55d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMvzHvY7Qa {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f1f1f1;
  overflow: hidden;
}
.cid-uMvzHvY7Qa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzHvY7Qa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvzHvY7Qa .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uMvzHvY7Qa .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uMvzHvY7Qa .container {
    padding: 0 14px;
  }
}
.cid-uMvzHvY7Qa .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uMvzHvY7Qa .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMvzHvY7Qa .image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #01004c;
  transform: rotate(5deg);
  pointer-events: none;
}
.cid-uMvzHvY7Qa .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 600px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .image-wrapper img {
    height: 300px;
  }
}
.cid-uMvzHvY7Qa .content-wrapper {
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .content-wrapper {
    margin: 0;
  }
}
.cid-uMvzHvY7Qa .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .content-wrapper .mbr-name {
    margin-bottom: 22px;
  }
}
.cid-uMvzHvY7Qa .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 65%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uMvzHvY7Qa .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uMvzHvY7Qa .mbr-section-title {
  color: #01004c;
  text-align: center;
}
.cid-uMvzHvY7Qa .mbr-name {
  color: #01004c;
}
.cid-uMvzHvY7Qa .mbr-text {
  color: #01004c;
}
.cid-uMvzHvY7Qa .mbr-section-title,
.cid-uMvzHvY7Qa .mbr-section-btn {
  color: #491414;
}
.cid-uMvzHvY7Qa .mbr-text,
.cid-uMvzHvY7Qa .text-wrapper {
  color: #491414;
}
.cid-uMvzHx8aZJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ecede8;
}
.cid-uMvzHx8aZJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzHx8aZJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvzHx8aZJ .mbr-section-subtitle {
  color: #000000;
}
.cid-uMvzHx8aZJ .mbr-section-title {
  color: #491414;
}
.cid-uMvzHxZpTx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uMvzHxZpTx .container {
  display: flex;
  justify-content: center;
}
.cid-uMvzHxZpTx .main-row {
  align-items: center;
  max-width: 1170px;
  width: 100%;
}
.cid-uMvzHxZpTx .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #491414;
  box-shadow: 0 -30px 100px rgba(0, 37, 133, 0.03);
  border-radius: 30px;
  padding: 0 !important;
}
.cid-uMvzHxZpTx .col-text {
  display: flex;
  padding: 50px 15px 60px 70px;
}
@media (max-width: 1199px) {
  .cid-uMvzHxZpTx .col-text {
    padding: 40px 15px 30px;
  }
}
.cid-uMvzHxZpTx .col-text1 {
  border-right: 1px solid #dfeaf9;
}
@media (max-width: 767px) {
  .cid-uMvzHxZpTx .col-text1 {
    border-right: none;
    border-bottom: 1px solid #dfeaf9;
  }
}
.cid-uMvzHxZpTx .icon-box {
  display: flex;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uMvzHxZpTx .icon-box {
    margin-right: 20px;
  }
}
.cid-uMvzHxZpTx .icon-box .mbr-iconfont {
  color: #ffe161;
  font-size: 68px;
}
@media (max-width: 1199px) {
  .cid-uMvzHxZpTx .icon-box .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uMvzHxZpTx .text-container {
  flex-grow: 1;
}
.cid-uMvzHxZpTx .mbr-section-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uMvzHxZpTx .mbr-text {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uMvzHxZpTx .link-text {
  margin-bottom: 0;
  margin-top: 5px;
  color: #ffffff;
}
.cid-uMvzHxZpTx .link-text a:hover {
  text-decoration: underline;
}
.cid-uMvzHxZpTx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMvzHxZpTx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMvzHyzAMm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uMvzHyzAMm .media-container-row .mbr-text {
  text-align: center;
}
