body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.9rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e43f3f !important;
}
.bg-success {
  background-color: #40b0bf !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: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !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: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !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: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.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-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23e43f3f' %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-ucfU8wyEcI .navbar-dropdown {
  position: relative !important;
}
.cid-ucfU8wyEcI .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-ucfU8wyEcI .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-ucfU8wyEcI .dropdown-item:hover,
.cid-ucfU8wyEcI .dropdown-item:focus {
  color: #e43f3f !important;
}
.cid-ucfU8wyEcI .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucfU8wyEcI .nav-link {
  position: relative;
  padding: 0;
}
.cid-ucfU8wyEcI .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-ucfU8wyEcI .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucfU8wyEcI .dropdown-menu,
.cid-ucfU8wyEcI .navbar.opened {
  background: #ffffff !important;
}
.cid-ucfU8wyEcI .nav-item:focus,
.cid-ucfU8wyEcI .nav-link:focus {
  outline: none;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucfU8wyEcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucfU8wyEcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucfU8wyEcI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ucfU8wyEcI .navbar.opened {
  transition: all 0.3s;
}
.cid-ucfU8wyEcI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucfU8wyEcI .navbar .navbar-logo img {
  width: auto;
}
.cid-ucfU8wyEcI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucfU8wyEcI .navbar.collapsed {
  justify-content: center;
}
.cid-ucfU8wyEcI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucfU8wyEcI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucfU8wyEcI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucfU8wyEcI .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-ucfU8wyEcI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucfU8wyEcI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucfU8wyEcI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucfU8wyEcI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucfU8wyEcI .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-ucfU8wyEcI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucfU8wyEcI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucfU8wyEcI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucfU8wyEcI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucfU8wyEcI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucfU8wyEcI .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucfU8wyEcI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucfU8wyEcI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucfU8wyEcI .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucfU8wyEcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucfU8wyEcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucfU8wyEcI .dropdown-item.active,
.cid-ucfU8wyEcI .dropdown-item:active {
  background-color: transparent;
}
.cid-ucfU8wyEcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucfU8wyEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucfU8wyEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucfU8wyEcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucfU8wyEcI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucfU8wyEcI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucfU8wyEcI button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucfU8wyEcI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucfU8wyEcI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucfU8wyEcI .navbar {
    height: 70px;
  }
  .cid-ucfU8wyEcI .navbar.opened {
    height: auto;
  }
  .cid-ucfU8wyEcI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucfU8wyEcI .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-ucfU8wyEcI .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-ucfU8wyEcI a {
  display: inline;
  font-weight: bold;
}
.cid-ucfU8wyEcI img {
  display: inline;
  padding-right: 10px;
}
.cid-ucfU8wyEcI .dropdown-toggle:after {
  display: none;
}
.cid-ucfU8wyEcI .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-ucfU8wyEcI .dropdown-item:hover {
  color: #ffe161 !important;
}
@media (max-width: 990px) {
  .cid-ucfU8wyEcI .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-ucfUJYJxVI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucfUJYJxVI .pos_rel {
  position: relative;
}
.cid-ucfUJYJxVI .main_section_title {
  display: flex;
}
.cid-ucfUJYJxVI .main_title {
  padding: 0 8.333%;
}
.cid-ucfUJYJxVI .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-ucfUJYJxVI .card_title {
    font-size: 2rem;
  }
}
.cid-ucfUJYJxVI .text-wrapper {
  width: 60%;
  background: #010a44;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-ucfUJYJxVI .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucfUJYJxVI .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucfUJYJxVI .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-ucfUJYJxVI .text-wrapper:hover .card_title a {
  color: #ff6666 !important;
}
.cid-ucfUJYJxVI .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucfUJYJxVI .block-content,
.cid-ucfUJYJxVI .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-ucfUJYJxVI .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucfUJYJxVI .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucfUJYJxVI .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-ucfUJYJxVI .block-content {
  display: flex;
  align-items: center;
}
.cid-ucfUJYJxVI .image-wrapper,
.cid-ucfUJYJxVI img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-ucfUJYJxVI .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-ucfUJYJxVI .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucfUJYJxVI .mbr-section-btn .btn-secondary-outline:hover,
.cid-ucfUJYJxVI .mbr-section-btn .btn-secondary-outline .active,
.cid-ucfUJYJxVI .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
@media (max-width: 991px) {
  .cid-ucfUJYJxVI .block-content {
    flex-direction: column;
  }
  .cid-ucfUJYJxVI .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-ucfUJYJxVI .empty_content {
    display: none;
  }
  .cid-ucfUJYJxVI .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ucfUJYJxVI .text-wrapper,
  .cid-ucfUJYJxVI .main_title {
    padding: 30px 1rem;
  }
}
.cid-ucfUJYJxVI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucfUJYJxVI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucfYmo6bHE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucfYmo6bHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucfYmo6bHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucfYmo6bHE .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucfYmo6bHE .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-ucfYmo6bHE .container {
    padding: 0 6px;
  }
}
.cid-ucfYmo6bHE .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-ucfYmo6bHE .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-ucfYmo6bHE .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-ucfYmo6bHE .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-ucfYmo6bHE .row {
    padding: 0 30px;
  }
}
.cid-ucfYmo6bHE .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-ucfYmo6bHE .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucfYmo6bHE .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-ucfYmo6bHE .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-ucfYmo6bHE .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-ucfYmo6bHE .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-ucfYmo6bHE .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ucfYmo6bHE .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-ucfYmo6bHE .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-ucfYmo6bHE .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-ucfYmo6bHE .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-ucfYmo6bHE .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucfYmo6bHE .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-ucfYmo6bHE .list {
  color: #131313;
}
.cid-ucfk5aof8e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucfk5aof8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucfk5aof8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucfk5aof8e .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ucfk5aof8e .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucfk5aof8e .container {
    padding: 0 12px;
  }
}
.cid-ucfk5aof8e .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucfk5aof8e .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucfk5aof8e .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #fef8f5;
}
@media (max-width: 992px) {
  .cid-ucfk5aof8e .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucfk5aof8e .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ucfk5aof8e .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-ucfk5aof8e .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ucfk5aof8e .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-ucfk5aof8e .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-ucfk5aof8e .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-ucfk5aof8e .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ucfk5aof8e .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucfk5aof8e .mbr-section-subtitle {
  color: #222222;
}
.cid-ucfk5aof8e .mbr-text {
  color: #222222;
}
.cid-ucfk5aof8e .list {
  color: #222222;
}
.cid-ucfVZ288X1 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucfVZ288X1 .row {
  align-items: center;
  width: 100%;
}
.cid-ucfVZ288X1 .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-ucfVZ288X1 .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ucfVZ288X1 .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucfVZ288X1 .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #010a44;
}
.cid-ucfVZ288X1 .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucfVZ288X1 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-ucfVZ288X1 .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-ucfVZ288X1 .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-ucfVZ288X1 .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-ucfVZ288X1 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-ucfVZ288X1 .mbr-section-title {
  width: 100%;
  color: #fef8f5;
  margin-bottom: 4px;
  text-align: center;
}
.cid-ucfVZ288X1 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-ucfVZ288X1 .btn-container {
  width: 100%;
}
.cid-ucfVZ288X1 .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-ucfVZ288X1 .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-ucfVZ288X1 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ucfVZ288X1 .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-ucfkZS9BoX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucfkZS9BoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucfkZS9BoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucfkZS9BoX .container {
    padding: 0 16px;
  }
}
.cid-ucfkZS9BoX .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ucfkZS9BoX .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucfkZS9BoX .title-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-ucfkZS9BoX .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucfkZS9BoX .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-ucfkZS9BoX .mbr-section-title {
  color: #111111;
  text-align: left;
}
.cid-ucfkZS9BoX .mbr-text {
  color: #05051e;
}
.cid-uccGAoHKdD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #010a44;
}
.cid-uccGAoHKdD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccGAoHKdD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccGAoHKdD .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uccGAoHKdD .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uccGAoHKdD .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uccGAoHKdD .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uccGAoHKdD .row .row {
    flex-direction: column-reverse;
  }
  .cid-uccGAoHKdD .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uccGAoHKdD .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uccGAoHKdD .card-subtitle {
  color: #0095ff;
}
.cid-uccGAoHKdD .mbr-text {
  color: #555555;
}
.cid-uccGAoHKdD .mbr-text,
.cid-uccGAoHKdD .mbr-section-btn {
  color: #05051e;
}
.cid-ucfrAP2zTy {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucfrAP2zTy .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-ucfrAP2zTy .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucfrAP2zTy .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-ucfrAP2zTy .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-ucfrAP2zTy .btn:hover,
.cid-ucfrAP2zTy .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-ucfrAP2zTy .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-ucfrAP2zTy .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-ucfrAP2zTy .btn:hover:before,
.cid-ucfrAP2zTy .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-ucfrAP2zTy .btn-secondary {
  color: #000000 !important;
}
.cid-ucfrAP2zTy .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uc76rHRRxA {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-uc76rHRRxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc76rHRRxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc76rHRRxA .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uc76rHRRxA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uc76rHRRxA .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uc76rHRRxA .card-title {
  color: #ffffff;
}
.cid-ucg0K211t7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucg0K211t7 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg0K211t7 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg0K211t7 .container {
    padding: 0 25px;
  }
}
.cid-ucg0K211t7 .row {
  margin: 0;
}
.cid-ucg0K211t7 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-ucg0K211t7 .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-ucg0K211t7 .image-wrapper {
    min-height: 350px;
  }
}
.cid-ucg0K211t7 .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucg0K211t7 .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-ucg0K211t7 .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-ucg0K211t7 .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucg0K211t7 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg0K211t7 .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-ucg0K211t7 .mbr-section-title {
  color: #000000;
}
.cid-ucg0K211t7 .mbr-text {
  color: #000000;
}
.cid-ubV0iDvTBf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ubV0iDvTBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubV0iDvTBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubV0iDvTBf .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .container {
    padding: 0 30px;
  }
}
.cid-ubV0iDvTBf .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ubV0iDvTBf .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uccTmCP50D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-uccTmCP50D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccTmCP50D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccTmCP50D .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}
.cid-uccTmCP50D .mbr-section-title {
  color: #000000;
}
.cid-uccTmCP50D .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-uccTmCP50D .panel-group {
  border: none;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-uccTmCP50D .card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-uccTmCP50D .card:not(:first-child) {
  border-top: 1px solid #fafafa;
}
.cid-uccTmCP50D .mbr-iconfont {
  font-size: 10px !important;
  font-family: 'Moririse2' !important;
  color: #1f1d1a;
  margin-left: 1rem;
  padding: 17px;
  background-color: #fef8f5;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-uccTmCP50D .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-uccTmCP50D .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uccTmCP50D .panel-title {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-uccTmCP50D .panel-title {
    padding: 20px !important;
  }
}
.cid-uccTmCP50D .panel-title:hover {
  text-decoration-line: none !important;
}
.cid-uccTmCP50D .panel-title:hover .panel-title-edit {
  text-decoration: underline !important;
}
.cid-uccTmCP50D .panel-body {
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767px) {
  .cid-uccTmCP50D .panel-body {
    padding: 0 20px 20px 20px;
  }
}
.cid-uccTmCP50D .panel-text {
  margin-bottom: 16px;
  color: #353535;
}
.cid-uccTmCP50D .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uccTmCP50D .panel-title-edit {
  color: #1F1D1A;
  padding-right: 12px;
}
.cid-ucflrc4IKD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucflrc4IKD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucflrc4IKD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucflrc4IKD .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-ucflrc4IKD .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucflrc4IKD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucflrc4IKD .container {
    padding: 0 20px;
  }
  .cid-ucflrc4IKD .container .row {
    padding: 0;
  }
}
.cid-ucflrc4IKD .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ucflrc4IKD .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucflrc4IKD .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucflrc4IKD .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ucflrc4IKD .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-ucflrc4IKD .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ucflrc4IKD .image-wrapper img {
    height: 300px;
  }
}
.cid-ucflrc4IKD .mbr-section-title {
  color: #222222;
}
.cid-ucflrc4IKD .mbr-text {
  color: #fafafa;
}
.cid-ucflrc4IKD .mbr-section-title,
.cid-ucflrc4IKD .mbr-section-btn {
  color: #ffffff;
}
.cid-ucfM6bmJhc {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fef8f5;
}
.cid-ucfM6bmJhc .mbr-text {
  color: #05051e;
}
.cid-ucfM6bmJhc .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-ucfM6bmJhc .mbr-section-title {
  color: #05051e;
  text-align: center;
}
.cid-ucfM6bmJhc .mbr-text2 {
  color: #f3f6f9;
}
.cid-ucfM6bmJhc a {
  text-decoration: underline;
}
.cid-ucfM6bmJhc p {
  line-height: 1.2;
}
.cid-uceC2WzJjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/r182-121-2146-1431-w2328-h1552-fmax.jpg");
}
.cid-uceC2WzJjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uceC2WzJjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uceC2WzJjM .container {
    padding: 0 16px;
  }
}
.cid-uceC2WzJjM .row {
  height: 470px;
}
@media (max-width: 992px) {
  .cid-uceC2WzJjM .row {
    height: 200px;
  }
}
.cid-ucg0rcQTzU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg0rcQTzU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg0rcQTzU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg0rcQTzU .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg0rcQTzU .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg0rcQTzU .container {
    padding: 0 16px;
  }
}
.cid-ucg0rcQTzU .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucg0rcQTzU .row {
    margin: 0 10px;
  }
}
.cid-ucg0rcQTzU .row .card {
  position: relative;
  padding: 0;
}
.cid-ucg0rcQTzU .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #fef8f5;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-ucg0rcQTzU .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg0rcQTzU .row .card .decor-wrapper {
    display: none;
  }
}
.cid-ucg0rcQTzU .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fef8f5;
  color: #010a44;
  border-radius: 100%;
  border: 5px solid #fef8f5;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-ucg0rcQTzU .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg0rcQTzU .row .card .icon-decor {
    display: none;
  }
}
.cid-ucg0rcQTzU .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ucg0rcQTzU .title-wrapper {
    width: 100%;
  }
}
.cid-ucg0rcQTzU .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucg0rcQTzU .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucg0rcQTzU .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg0rcQTzU .mbr-section-title {
  color: #fdfcfc;
}
.cid-ucg0rcQTzU .mbr-text {
  color: #fdfcfc;
}
.cid-uccWmjpsiX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fef8f5;
}
.cid-uccWmjpsiX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccWmjpsiX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccWmjpsiX .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uccWmjpsiX .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uccWmjpsiX .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-uccWmjpsiX .google-map {
  height: 600px;
  position: relative;
}
.cid-uccWmjpsiX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uccWmjpsiX .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uccWmjpsiX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uccWmjpsiX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uccWmjpsiX .mbr-section-title {
  text-align: center;
}
.cid-uccQsmyRmC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-uccQsmyRmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccQsmyRmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccQsmyRmC .row {
  justify-content: space-between;
}
.cid-uccQsmyRmC .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-uccQsmyRmC .list li {
  margin-bottom: 25px;
}
.cid-uccQsmyRmC .list li:last-child {
  margin-bottom: 0;
}
.cid-uccQsmyRmC .mbr-desc {
  margin-bottom: 8px;
}
.cid-uccQsmyRmC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uccQsmyRmC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uccQsmyRmC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-uccQsmyRmC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-uccQsmyRmC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-uccQsmyRmC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uccQsmyRmC .mbr-desc,
.cid-uccQsmyRmC .mbr-iconfont {
  color: #ffffff;
}
.cid-uccQsmyRmC .mbr-text,
.cid-uccQsmyRmC .mbr-section-btn {
  color: #ffffff;
}
.cid-ubZTbY4wm8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fef8f5;
}
.cid-ubZTbY4wm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubZTbY4wm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubZTbY4wm8 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .container {
    padding: 0 24px;
  }
}
.cid-ubZTbY4wm8 .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .content-wrapper {
    padding: 0;
  }
}
.cid-ubZTbY4wm8 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-ubZTbY4wm8 .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ubZTbY4wm8 .mbr-section-title {
  color: #141414;
}
.cid-ubZTbY4wm8 .mbr-desc {
  color: #141414;
}
.cid-ubZTbY4wm8 .mbr-text {
  color: #141414;
}
.cid-ubZTbYmCX9 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ubZTbYBest {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #010a44;
}
.cid-ubZTbYBest .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ubZTbYBest .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #e43f3f;
}
.cid-ubZTbYBest .svg-top .st0 {
  fill: #010a44;
}
@media (max-width: 992px) {
  .cid-ubZTbYBest .svg-top {
    width: 1000px;
  }
}
.cid-ubZTbYBest .google-map {
  height: 35rem;
  position: relative;
}
.cid-ubZTbYBest .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ubZTbYBest .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ubZTbYBest .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ubZTbYBest .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ubZTbYBest .mbr-section-title {
  color: #ffffff;
}
.cid-ubZTbYBest .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uccQsmyRmC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-uccQsmyRmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccQsmyRmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccQsmyRmC .row {
  justify-content: space-between;
}
.cid-uccQsmyRmC .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-uccQsmyRmC .list li {
  margin-bottom: 25px;
}
.cid-uccQsmyRmC .list li:last-child {
  margin-bottom: 0;
}
.cid-uccQsmyRmC .mbr-desc {
  margin-bottom: 8px;
}
.cid-uccQsmyRmC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uccQsmyRmC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uccQsmyRmC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-uccQsmyRmC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-uccQsmyRmC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-uccQsmyRmC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uccQsmyRmC .mbr-desc,
.cid-uccQsmyRmC .mbr-iconfont {
  color: #ffffff;
}
.cid-uccQsmyRmC .mbr-text,
.cid-uccQsmyRmC .mbr-section-btn {
  color: #ffffff;
}
.cid-ucfU8wyEcI .navbar-dropdown {
  position: relative !important;
}
.cid-ucfU8wyEcI .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-ucfU8wyEcI .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-ucfU8wyEcI .dropdown-item:hover,
.cid-ucfU8wyEcI .dropdown-item:focus {
  color: #e43f3f !important;
}
.cid-ucfU8wyEcI .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucfU8wyEcI .nav-link {
  position: relative;
  padding: 0;
}
.cid-ucfU8wyEcI .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-ucfU8wyEcI .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucfU8wyEcI .dropdown-menu,
.cid-ucfU8wyEcI .navbar.opened {
  background: #ffffff !important;
}
.cid-ucfU8wyEcI .nav-item:focus,
.cid-ucfU8wyEcI .nav-link:focus {
  outline: none;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucfU8wyEcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucfU8wyEcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucfU8wyEcI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ucfU8wyEcI .navbar.opened {
  transition: all 0.3s;
}
.cid-ucfU8wyEcI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucfU8wyEcI .navbar .navbar-logo img {
  width: auto;
}
.cid-ucfU8wyEcI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucfU8wyEcI .navbar.collapsed {
  justify-content: center;
}
.cid-ucfU8wyEcI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucfU8wyEcI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucfU8wyEcI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucfU8wyEcI .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-ucfU8wyEcI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucfU8wyEcI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucfU8wyEcI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucfU8wyEcI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucfU8wyEcI .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-ucfU8wyEcI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucfU8wyEcI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucfU8wyEcI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucfU8wyEcI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucfU8wyEcI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucfU8wyEcI .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucfU8wyEcI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucfU8wyEcI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucfU8wyEcI .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucfU8wyEcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucfU8wyEcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucfU8wyEcI .dropdown-item.active,
.cid-ucfU8wyEcI .dropdown-item:active {
  background-color: transparent;
}
.cid-ucfU8wyEcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucfU8wyEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucfU8wyEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucfU8wyEcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucfU8wyEcI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucfU8wyEcI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucfU8wyEcI button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucfU8wyEcI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucfU8wyEcI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucfU8wyEcI .navbar {
    height: 70px;
  }
  .cid-ucfU8wyEcI .navbar.opened {
    height: auto;
  }
  .cid-ucfU8wyEcI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucfU8wyEcI .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-ucfU8wyEcI .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-ucfU8wyEcI a {
  display: inline;
  font-weight: bold;
}
.cid-ucfU8wyEcI img {
  display: inline;
  padding-right: 10px;
}
.cid-ucfU8wyEcI .dropdown-toggle:after {
  display: none;
}
.cid-ucfU8wyEcI .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-ucfU8wyEcI .dropdown-item:hover {
  color: #ffe161 !important;
}
@media (max-width: 990px) {
  .cid-ucfU8wyEcI .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-ubVt9Dx6kH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fef8f5;
}
.cid-ubVt9Dx6kH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubVt9Dx6kH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubVt9Dx6kH .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .container {
    padding: 0 24px;
  }
}
.cid-ubVt9Dx6kH .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .content-wrapper {
    padding: 0;
  }
}
.cid-ubVt9Dx6kH .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-ubVt9Dx6kH .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ubVt9Dx6kH .mbr-section-title {
  color: #141414;
}
.cid-ubVt9Dx6kH .mbr-desc {
  color: #141414;
}
.cid-ubVt9Dx6kH .mbr-text {
  color: #141414;
}
.cid-ucglGoTNY1 {
  display: flex;
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-ucglGoTNY1 {
    align-items: center;
  }
  .cid-ucglGoTNY1 .row {
    justify-content: center;
  }
}
.cid-ucglGoTNY1 p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucglGoTNY1 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucglGoTNY1 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucglGoTNY1 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucglGoTNY1 .content-wrap {
    width: 100%;
  }
}
.cid-ucglGoTNY1 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-ucglGoTNY1 .mbr-text,
.cid-ucglGoTNY1 .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-ucglGoTNY1 .mbr-section-subtitle {
  color: #a1a1a1;
  text-align: center;
}
.cid-ubVtnr2IeO {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #010a44;
}
.cid-ubVtnr2IeO .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ubVtnr2IeO .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #e43f3f;
}
.cid-ubVtnr2IeO .svg-top .st0 {
  fill: #010a44;
}
@media (max-width: 992px) {
  .cid-ubVtnr2IeO .svg-top {
    width: 1000px;
  }
}
.cid-ubVtnr2IeO .google-map {
  height: 35rem;
  position: relative;
}
.cid-ubVtnr2IeO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ubVtnr2IeO .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ubVtnr2IeO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ubVtnr2IeO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ubVtnr2IeO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubVtnr2IeO .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uccQsmyRmC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-uccQsmyRmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccQsmyRmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccQsmyRmC .row {
  justify-content: space-between;
}
.cid-uccQsmyRmC .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-uccQsmyRmC .list li {
  margin-bottom: 25px;
}
.cid-uccQsmyRmC .list li:last-child {
  margin-bottom: 0;
}
.cid-uccQsmyRmC .mbr-desc {
  margin-bottom: 8px;
}
.cid-uccQsmyRmC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uccQsmyRmC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uccQsmyRmC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-uccQsmyRmC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-uccQsmyRmC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-uccQsmyRmC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uccQsmyRmC .mbr-desc,
.cid-uccQsmyRmC .mbr-iconfont {
  color: #ffffff;
}
.cid-uccQsmyRmC .mbr-text,
.cid-uccQsmyRmC .mbr-section-btn {
  color: #ffffff;
}
.cid-ucfU8wyEcI .navbar-dropdown {
  position: relative !important;
}
.cid-ucfU8wyEcI .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-ucfU8wyEcI .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-ucfU8wyEcI .dropdown-item:hover,
.cid-ucfU8wyEcI .dropdown-item:focus {
  color: #e43f3f !important;
}
.cid-ucfU8wyEcI .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucfU8wyEcI .nav-link {
  position: relative;
  padding: 0;
}
.cid-ucfU8wyEcI .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-ucfU8wyEcI .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucfU8wyEcI .dropdown-menu,
.cid-ucfU8wyEcI .navbar.opened {
  background: #ffffff !important;
}
.cid-ucfU8wyEcI .nav-item:focus,
.cid-ucfU8wyEcI .nav-link:focus {
  outline: none;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucfU8wyEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucfU8wyEcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucfU8wyEcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucfU8wyEcI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ucfU8wyEcI .navbar.opened {
  transition: all 0.3s;
}
.cid-ucfU8wyEcI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucfU8wyEcI .navbar .navbar-logo img {
  width: auto;
}
.cid-ucfU8wyEcI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucfU8wyEcI .navbar.collapsed {
  justify-content: center;
}
.cid-ucfU8wyEcI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucfU8wyEcI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucfU8wyEcI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucfU8wyEcI .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-ucfU8wyEcI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucfU8wyEcI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucfU8wyEcI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucfU8wyEcI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucfU8wyEcI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucfU8wyEcI .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-ucfU8wyEcI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucfU8wyEcI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucfU8wyEcI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucfU8wyEcI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucfU8wyEcI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucfU8wyEcI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucfU8wyEcI .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucfU8wyEcI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucfU8wyEcI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucfU8wyEcI .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucfU8wyEcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucfU8wyEcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucfU8wyEcI .dropdown-item.active,
.cid-ucfU8wyEcI .dropdown-item:active {
  background-color: transparent;
}
.cid-ucfU8wyEcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucfU8wyEcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucfU8wyEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucfU8wyEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucfU8wyEcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucfU8wyEcI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucfU8wyEcI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucfU8wyEcI button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucfU8wyEcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucfU8wyEcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucfU8wyEcI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucfU8wyEcI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucfU8wyEcI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucfU8wyEcI .navbar {
    height: 70px;
  }
  .cid-ucfU8wyEcI .navbar.opened {
    height: auto;
  }
  .cid-ucfU8wyEcI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucfU8wyEcI .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-ucfU8wyEcI .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-ucfU8wyEcI a {
  display: inline;
  font-weight: bold;
}
.cid-ucfU8wyEcI img {
  display: inline;
  padding-right: 10px;
}
.cid-ucfU8wyEcI .dropdown-toggle:after {
  display: none;
}
.cid-ucfU8wyEcI .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-ucfU8wyEcI .dropdown-item:hover {
  color: #ffe161 !important;
}
@media (max-width: 990px) {
  .cid-ucfU8wyEcI .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-ucg9sUt1uH .navbar-dropdown {
  position: relative !important;
}
.cid-ucg9sUt1uH .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-ucg9sUt1uH .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-ucg9sUt1uH .dropdown-item:hover,
.cid-ucg9sUt1uH .dropdown-item:focus {
  color: #e43f3f !important;
}
.cid-ucg9sUt1uH .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-ucg9sUt1uH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucg9sUt1uH .nav-link {
  position: relative;
  padding: 0;
}
.cid-ucg9sUt1uH .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-ucg9sUt1uH .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucg9sUt1uH .dropdown-menu,
.cid-ucg9sUt1uH .navbar.opened {
  background: #ffffff !important;
}
.cid-ucg9sUt1uH .nav-item:focus,
.cid-ucg9sUt1uH .nav-link:focus {
  outline: none;
}
.cid-ucg9sUt1uH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucg9sUt1uH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucg9sUt1uH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucg9sUt1uH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucg9sUt1uH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucg9sUt1uH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucg9sUt1uH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ucg9sUt1uH .navbar.opened {
  transition: all 0.3s;
}
.cid-ucg9sUt1uH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucg9sUt1uH .navbar .navbar-logo img {
  width: auto;
}
.cid-ucg9sUt1uH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucg9sUt1uH .navbar.collapsed {
  justify-content: center;
}
.cid-ucg9sUt1uH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucg9sUt1uH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucg9sUt1uH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucg9sUt1uH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucg9sUt1uH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucg9sUt1uH .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-ucg9sUt1uH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucg9sUt1uH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucg9sUt1uH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucg9sUt1uH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucg9sUt1uH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucg9sUt1uH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucg9sUt1uH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucg9sUt1uH .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-ucg9sUt1uH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucg9sUt1uH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucg9sUt1uH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucg9sUt1uH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucg9sUt1uH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucg9sUt1uH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucg9sUt1uH .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucg9sUt1uH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucg9sUt1uH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucg9sUt1uH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucg9sUt1uH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucg9sUt1uH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucg9sUt1uH .dropdown-item.active,
.cid-ucg9sUt1uH .dropdown-item:active {
  background-color: transparent;
}
.cid-ucg9sUt1uH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucg9sUt1uH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucg9sUt1uH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucg9sUt1uH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucg9sUt1uH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucg9sUt1uH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucg9sUt1uH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucg9sUt1uH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucg9sUt1uH button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucg9sUt1uH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-ucg9sUt1uH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucg9sUt1uH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucg9sUt1uH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucg9sUt1uH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucg9sUt1uH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucg9sUt1uH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucg9sUt1uH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucg9sUt1uH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucg9sUt1uH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucg9sUt1uH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucg9sUt1uH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucg9sUt1uH .navbar {
    height: 70px;
  }
  .cid-ucg9sUt1uH .navbar.opened {
    height: auto;
  }
  .cid-ucg9sUt1uH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucg9sUt1uH .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-ucg9sUt1uH .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-ucg9sUt1uH a {
  display: inline;
  font-weight: bold;
}
.cid-ucg9sUt1uH img {
  display: inline;
  padding-right: 10px;
}
.cid-ucg9sUt1uH .dropdown-toggle:after {
  display: none;
}
.cid-ucg9sUt1uH .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-ucg9sUt1uH .dropdown-item:hover {
  color: #ffe161 !important;
}
@media (max-width: 990px) {
  .cid-ucg9sUt1uH .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-ucg9sVvpQj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucg9sVvpQj .pos_rel {
  position: relative;
}
.cid-ucg9sVvpQj .main_section_title {
  display: flex;
}
.cid-ucg9sVvpQj .main_title {
  padding: 0 8.333%;
}
.cid-ucg9sVvpQj .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-ucg9sVvpQj .card_title {
    font-size: 2rem;
  }
}
.cid-ucg9sVvpQj .text-wrapper {
  width: 60%;
  background: #010a44;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-ucg9sVvpQj .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucg9sVvpQj .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucg9sVvpQj .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-ucg9sVvpQj .text-wrapper:hover .card_title a {
  color: #ff6666 !important;
}
.cid-ucg9sVvpQj .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucg9sVvpQj .block-content,
.cid-ucg9sVvpQj .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-ucg9sVvpQj .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucg9sVvpQj .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucg9sVvpQj .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-ucg9sVvpQj .block-content {
  display: flex;
  align-items: center;
}
.cid-ucg9sVvpQj .image-wrapper,
.cid-ucg9sVvpQj img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-ucg9sVvpQj .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-ucg9sVvpQj .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucg9sVvpQj .mbr-section-btn .btn-secondary-outline:hover,
.cid-ucg9sVvpQj .mbr-section-btn .btn-secondary-outline .active,
.cid-ucg9sVvpQj .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
@media (max-width: 991px) {
  .cid-ucg9sVvpQj .block-content {
    flex-direction: column;
  }
  .cid-ucg9sVvpQj .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-ucg9sVvpQj .empty_content {
    display: none;
  }
  .cid-ucg9sVvpQj .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ucg9sVvpQj .text-wrapper,
  .cid-ucg9sVvpQj .main_title {
    padding: 30px 1rem;
  }
}
.cid-ucg9sVvpQj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9sVvpQj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9sWoqI4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucg9sWoqI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9sWoqI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9sWoqI4 .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucg9sWoqI4 .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9sWoqI4 .container {
    padding: 0 6px;
  }
}
.cid-ucg9sWoqI4 .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-ucg9sWoqI4 .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-ucg9sWoqI4 .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9sWoqI4 .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-ucg9sWoqI4 .row {
    padding: 0 30px;
  }
}
.cid-ucg9sWoqI4 .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-ucg9sWoqI4 .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucg9sWoqI4 .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-ucg9sWoqI4 .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-ucg9sWoqI4 .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-ucg9sWoqI4 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-ucg9sWoqI4 .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ucg9sWoqI4 .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-ucg9sWoqI4 .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-ucg9sWoqI4 .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-ucg9sWoqI4 .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-ucg9sWoqI4 .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucg9sWoqI4 .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-ucg9sWoqI4 .list {
  color: #131313;
}
.cid-ucg9sXbJEk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9sXbJEk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9sXbJEk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9sXbJEk .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ucg9sXbJEk .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucg9sXbJEk .container {
    padding: 0 12px;
  }
}
.cid-ucg9sXbJEk .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9sXbJEk .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucg9sXbJEk .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #fef8f5;
}
@media (max-width: 992px) {
  .cid-ucg9sXbJEk .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucg9sXbJEk .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ucg9sXbJEk .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-ucg9sXbJEk .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9sXbJEk .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-ucg9sXbJEk .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-ucg9sXbJEk .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-ucg9sXbJEk .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9sXbJEk .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucg9sXbJEk .mbr-section-subtitle {
  color: #222222;
}
.cid-ucg9sXbJEk .mbr-text {
  color: #222222;
}
.cid-ucg9sXbJEk .list {
  color: #222222;
}
.cid-ucg9sXZ9so {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucg9sXZ9so .row {
  align-items: center;
  width: 100%;
}
.cid-ucg9sXZ9so .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-ucg9sXZ9so .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ucg9sXZ9so .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucg9sXZ9so .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #010a44;
}
.cid-ucg9sXZ9so .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucg9sXZ9so .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-ucg9sXZ9so .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-ucg9sXZ9so .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-ucg9sXZ9so .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-ucg9sXZ9so .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-ucg9sXZ9so .mbr-section-title {
  width: 100%;
  color: #fef8f5;
  margin-bottom: 4px;
  text-align: center;
}
.cid-ucg9sXZ9so .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-ucg9sXZ9so .btn-container {
  width: 100%;
}
.cid-ucg9sXZ9so .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-ucg9sXZ9so .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-ucg9sXZ9so .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ucg9sXZ9so .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-ucg9sZanlt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9sZanlt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9sZanlt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucg9sZanlt .container {
    padding: 0 16px;
  }
}
.cid-ucg9sZanlt .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ucg9sZanlt .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucg9sZanlt .title-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-ucg9sZanlt .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucg9sZanlt .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-ucg9sZanlt .mbr-section-title {
  color: #111111;
}
.cid-ucg9sZanlt .mbr-text {
  color: #05051e;
}
.cid-ucg9t01z16 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #010a44;
}
.cid-ucg9t01z16 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9t01z16 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9t01z16 .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-ucg9t01z16 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucg9t01z16 .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-ucg9t01z16 .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ucg9t01z16 .row .row {
    flex-direction: column-reverse;
  }
  .cid-ucg9t01z16 .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucg9t01z16 .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ucg9t01z16 .card-subtitle {
  color: #0095ff;
}
.cid-ucg9t01z16 .mbr-text {
  color: #555555;
}
.cid-ucg9t01z16 .mbr-text,
.cid-ucg9t01z16 .mbr-section-btn {
  color: #05051e;
}
.cid-ucg9t1cBRH {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9t1cBRH .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-ucg9t1cBRH .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucg9t1cBRH .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-ucg9t1cBRH .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-ucg9t1cBRH .btn:hover,
.cid-ucg9t1cBRH .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-ucg9t1cBRH .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-ucg9t1cBRH .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-ucg9t1cBRH .btn:hover:before,
.cid-ucg9t1cBRH .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-ucg9t1cBRH .btn-secondary {
  color: #000000 !important;
}
.cid-ucg9t1cBRH .btn-secondary:hover {
  color: #000000 !important;
}
.cid-ucg9t23mtp {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9t23mtp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9t23mtp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9t23mtp .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ucg9t23mtp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucg9t23mtp .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-ucg9t23mtp .card-title {
  color: #ffffff;
}
.cid-ucg9t34Bwc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucg9t34Bwc .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9t34Bwc .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg9t34Bwc .container {
    padding: 0 25px;
  }
}
.cid-ucg9t34Bwc .row {
  margin: 0;
}
.cid-ucg9t34Bwc .row .card {
  padding: 0;
  justify-content: center;
}
.cid-ucg9t34Bwc .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-ucg9t34Bwc .image-wrapper {
    min-height: 350px;
  }
}
.cid-ucg9t34Bwc .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucg9t34Bwc .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-ucg9t34Bwc .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-ucg9t34Bwc .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucg9t34Bwc .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9t34Bwc .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-ucg9t34Bwc .mbr-section-title {
  color: #000000;
}
.cid-ucg9t34Bwc .mbr-text {
  color: #000000;
}
.cid-ucg9t3VxwC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9t3VxwC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9t3VxwC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9t3VxwC .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucg9t3VxwC .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9t3VxwC .container {
    padding: 0 30px;
  }
}
.cid-ucg9t3VxwC .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucg9t3VxwC .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucg9t3VxwC .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucg9t3VxwC .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucg9t3VxwC .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ucg9t3VxwC .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucg9t3VxwC .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucg9t4MPZm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9t4MPZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9t4MPZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9t4MPZm .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}
.cid-ucg9t4MPZm .mbr-section-title {
  color: #000000;
}
.cid-ucg9t4MPZm .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-ucg9t4MPZm .panel-group {
  border: none;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-ucg9t4MPZm .card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-ucg9t4MPZm .card:not(:first-child) {
  border-top: 1px solid #fafafa;
}
.cid-ucg9t4MPZm .mbr-iconfont {
  font-size: 10px !important;
  font-family: 'Moririse2' !important;
  color: #1f1d1a;
  margin-left: 1rem;
  padding: 17px;
  background-color: #fef8f5;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-ucg9t4MPZm .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-ucg9t4MPZm .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucg9t4MPZm .panel-title {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-ucg9t4MPZm .panel-title {
    padding: 20px !important;
  }
}
.cid-ucg9t4MPZm .panel-title:hover {
  text-decoration-line: none !important;
}
.cid-ucg9t4MPZm .panel-title:hover .panel-title-edit {
  text-decoration: underline !important;
}
.cid-ucg9t4MPZm .panel-body {
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767px) {
  .cid-ucg9t4MPZm .panel-body {
    padding: 0 20px 20px 20px;
  }
}
.cid-ucg9t4MPZm .panel-text {
  margin-bottom: 16px;
  color: #353535;
}
.cid-ucg9t4MPZm .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucg9t4MPZm .panel-title-edit {
  color: #1F1D1A;
  padding-right: 12px;
}
.cid-ucg9t5TtYp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9t5TtYp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9t5TtYp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9t5TtYp .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-ucg9t5TtYp .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucg9t5TtYp .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9t5TtYp .container {
    padding: 0 20px;
  }
  .cid-ucg9t5TtYp .container .row {
    padding: 0;
  }
}
.cid-ucg9t5TtYp .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ucg9t5TtYp .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucg9t5TtYp .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucg9t5TtYp .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ucg9t5TtYp .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-ucg9t5TtYp .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ucg9t5TtYp .image-wrapper img {
    height: 300px;
  }
}
.cid-ucg9t5TtYp .mbr-section-title {
  color: #222222;
}
.cid-ucg9t5TtYp .mbr-text {
  color: #fafafa;
}
.cid-ucg9t5TtYp .mbr-section-title,
.cid-ucg9t5TtYp .mbr-section-btn {
  color: #ffffff;
}
.cid-ucg9t6RWUz {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fef8f5;
}
.cid-ucg9t6RWUz .mbr-text {
  color: #05051e;
}
.cid-ucg9t6RWUz .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-ucg9t6RWUz .mbr-section-title {
  color: #05051e;
  text-align: center;
}
.cid-ucg9t6RWUz .mbr-text2 {
  color: #f3f6f9;
}
.cid-ucg9t6RWUz a {
  text-decoration: underline;
}
.cid-ucg9t6RWUz p {
  line-height: 1.2;
}
.cid-ucg9t8yoPb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9t8yoPb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9t8yoPb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9t8yoPb .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9t8yoPb .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg9t8yoPb .container {
    padding: 0 16px;
  }
}
.cid-ucg9t8yoPb .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucg9t8yoPb .row {
    margin: 0 10px;
  }
}
.cid-ucg9t8yoPb .row .card {
  position: relative;
  padding: 0;
}
.cid-ucg9t8yoPb .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #fef8f5;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-ucg9t8yoPb .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg9t8yoPb .row .card .decor-wrapper {
    display: none;
  }
}
.cid-ucg9t8yoPb .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fef8f5;
  color: #010a44;
  border-radius: 100%;
  border: 5px solid #fef8f5;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-ucg9t8yoPb .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg9t8yoPb .row .card .icon-decor {
    display: none;
  }
}
.cid-ucg9t8yoPb .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ucg9t8yoPb .title-wrapper {
    width: 100%;
  }
}
.cid-ucg9t8yoPb .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9t8yoPb .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucg9t8yoPb .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9t8yoPb .mbr-section-title {
  color: #fdfcfc;
}
.cid-ucg9t8yoPb .mbr-text {
  color: #fdfcfc;
}
.cid-ucgzQepvyZ {
  background-color: #fafafa;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-ucgzQepvyZ .row {
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (min-width: 992px) {
  .cid-ucgzQepvyZ .content-wrapper {
    max-width: 600px;
    height: 560px;
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucgzQepvyZ .wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .cid-ucgzQepvyZ .wrapper {
    padding: 0 28px;
  }
}
.cid-ucgzQepvyZ .text {
  position: relative;
}
.cid-ucgzQepvyZ .card-header {
  padding: 15px 0 !important;
  border-bottom: none;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-top: 1px solid rgba(61, 61, 61, 0.3);
}
@media (min-width: 768px) {
  .cid-ucgzQepvyZ .card-header {
    padding: 15px 0 15px 0 !important;
  }
}
.cid-ucgzQepvyZ .panel-body {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
.cid-ucgzQepvyZ span {
  transform: rotate(45deg);
  transition: all 0.5s;
  font-size: 20px;
}
.cid-ucgzQepvyZ .collapsed span {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .cid-ucgzQepvyZ .content-block {
    padding-left: 60px;
  }
}
.cid-ucgzQepvyZ .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ucgzQepvyZ .panel-group {
  width: 100%;
}
.cid-ucgzQepvyZ .sign {
  font-family: 'Moririse2' !important;
}
.cid-ucgzQepvyZ .card {
  border-radius: 0px;
}
.cid-ucgzQepvyZ .card .card-header {
  border-radius: 0px;
  padding: 0;
}
.cid-ucgzQepvyZ .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-ucgzQepvyZ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ucgzQepvyZ .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-ucgzQepvyZ .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-ucgzQepvyZ .link-title {
  border-bottom: 1px solid rgba(61, 61, 61, 0.3);
  padding-bottom: 33px;
}
.cid-ucgzQepvyZ .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-ucgzQepvyZ .mbr-text {
  margin-bottom: 84px;
}
.cid-ucgzQepvyZ .header-text,
.cid-ucgzQepvyZ .sign {
  color: #282828;
}
.cid-ucgzQepvyZ .panel-text {
  color: #282828;
  text-align: left;
}
.cid-ucg9t9x70t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fef8f5;
}
.cid-ucg9t9x70t .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9t9x70t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9t9x70t .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ucg9t9x70t .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucg9t9x70t .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-ucg9t9x70t .google-map {
  height: 600px;
  position: relative;
}
.cid-ucg9t9x70t .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucg9t9x70t .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucg9t9x70t .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucg9t9x70t .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucg9t9x70t .mbr-section-title {
  text-align: center;
}
.cid-ucg9taxZqy {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9taxZqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9taxZqy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9taxZqy .row {
  justify-content: space-between;
}
.cid-ucg9taxZqy .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucg9taxZqy .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucg9taxZqy .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucg9taxZqy .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucg9taxZqy .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucg9taxZqy .list li {
  margin-bottom: 25px;
}
.cid-ucg9taxZqy .list li:last-child {
  margin-bottom: 0;
}
.cid-ucg9taxZqy .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucg9taxZqy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucg9taxZqy .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucg9taxZqy .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-ucg9taxZqy .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-ucg9taxZqy .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucg9taxZqy .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucg9taxZqy .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucg9taxZqy .mbr-desc,
.cid-ucg9taxZqy .mbr-iconfont {
  color: #ffffff;
}
.cid-ucg9taxZqy .mbr-text,
.cid-ucg9taxZqy .mbr-section-btn {
  color: #ffffff;
}
.cid-ucg9tOiibl .navbar-dropdown {
  position: relative !important;
}
.cid-ucg9tOiibl .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-ucg9tOiibl .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-ucg9tOiibl .dropdown-item:hover,
.cid-ucg9tOiibl .dropdown-item:focus {
  color: #e43f3f !important;
}
.cid-ucg9tOiibl .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-ucg9tOiibl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucg9tOiibl .nav-link {
  position: relative;
  padding: 0;
}
.cid-ucg9tOiibl .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-ucg9tOiibl .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucg9tOiibl .dropdown-menu,
.cid-ucg9tOiibl .navbar.opened {
  background: #ffffff !important;
}
.cid-ucg9tOiibl .nav-item:focus,
.cid-ucg9tOiibl .nav-link:focus {
  outline: none;
}
.cid-ucg9tOiibl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucg9tOiibl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucg9tOiibl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucg9tOiibl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucg9tOiibl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucg9tOiibl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucg9tOiibl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ucg9tOiibl .navbar.opened {
  transition: all 0.3s;
}
.cid-ucg9tOiibl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucg9tOiibl .navbar .navbar-logo img {
  width: auto;
}
.cid-ucg9tOiibl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucg9tOiibl .navbar.collapsed {
  justify-content: center;
}
.cid-ucg9tOiibl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucg9tOiibl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucg9tOiibl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucg9tOiibl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucg9tOiibl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucg9tOiibl .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-ucg9tOiibl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucg9tOiibl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucg9tOiibl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucg9tOiibl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucg9tOiibl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucg9tOiibl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucg9tOiibl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucg9tOiibl .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-ucg9tOiibl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucg9tOiibl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucg9tOiibl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucg9tOiibl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucg9tOiibl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucg9tOiibl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucg9tOiibl .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucg9tOiibl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucg9tOiibl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucg9tOiibl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucg9tOiibl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucg9tOiibl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucg9tOiibl .dropdown-item.active,
.cid-ucg9tOiibl .dropdown-item:active {
  background-color: transparent;
}
.cid-ucg9tOiibl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucg9tOiibl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucg9tOiibl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucg9tOiibl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucg9tOiibl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucg9tOiibl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucg9tOiibl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucg9tOiibl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucg9tOiibl button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucg9tOiibl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-ucg9tOiibl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucg9tOiibl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucg9tOiibl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucg9tOiibl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucg9tOiibl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucg9tOiibl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucg9tOiibl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucg9tOiibl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucg9tOiibl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucg9tOiibl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucg9tOiibl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucg9tOiibl .navbar {
    height: 70px;
  }
  .cid-ucg9tOiibl .navbar.opened {
    height: auto;
  }
  .cid-ucg9tOiibl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucg9tOiibl .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-ucg9tOiibl .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-ucg9tOiibl a {
  display: inline;
  font-weight: bold;
}
.cid-ucg9tOiibl img {
  display: inline;
  padding-right: 10px;
}
.cid-ucg9tOiibl .dropdown-toggle:after {
  display: none;
}
.cid-ucg9tOiibl .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-ucg9tOiibl .dropdown-item:hover {
  color: #ffe161 !important;
}
@media (max-width: 990px) {
  .cid-ucg9tOiibl .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-ucg9tP4Ric {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucg9tP4Ric .pos_rel {
  position: relative;
}
.cid-ucg9tP4Ric .main_section_title {
  display: flex;
}
.cid-ucg9tP4Ric .main_title {
  padding: 0 8.333%;
}
.cid-ucg9tP4Ric .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-ucg9tP4Ric .card_title {
    font-size: 2rem;
  }
}
.cid-ucg9tP4Ric .text-wrapper {
  width: 60%;
  background: #010a44;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-ucg9tP4Ric .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucg9tP4Ric .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucg9tP4Ric .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-ucg9tP4Ric .text-wrapper:hover .card_title a {
  color: #ff6666 !important;
}
.cid-ucg9tP4Ric .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucg9tP4Ric .block-content,
.cid-ucg9tP4Ric .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-ucg9tP4Ric .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucg9tP4Ric .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucg9tP4Ric .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-ucg9tP4Ric .block-content {
  display: flex;
  align-items: center;
}
.cid-ucg9tP4Ric .image-wrapper,
.cid-ucg9tP4Ric img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-ucg9tP4Ric .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-ucg9tP4Ric .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucg9tP4Ric .mbr-section-btn .btn-secondary-outline:hover,
.cid-ucg9tP4Ric .mbr-section-btn .btn-secondary-outline .active,
.cid-ucg9tP4Ric .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
@media (max-width: 991px) {
  .cid-ucg9tP4Ric .block-content {
    flex-direction: column;
  }
  .cid-ucg9tP4Ric .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-ucg9tP4Ric .empty_content {
    display: none;
  }
  .cid-ucg9tP4Ric .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ucg9tP4Ric .text-wrapper,
  .cid-ucg9tP4Ric .main_title {
    padding: 30px 1rem;
  }
}
.cid-ucg9tP4Ric .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tP4Ric .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tPLwZt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucg9tPLwZt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tPLwZt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tPLwZt .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucg9tPLwZt .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9tPLwZt .container {
    padding: 0 6px;
  }
}
.cid-ucg9tPLwZt .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-ucg9tPLwZt .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-ucg9tPLwZt .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9tPLwZt .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-ucg9tPLwZt .row {
    padding: 0 30px;
  }
}
.cid-ucg9tPLwZt .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-ucg9tPLwZt .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucg9tPLwZt .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-ucg9tPLwZt .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-ucg9tPLwZt .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-ucg9tPLwZt .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-ucg9tPLwZt .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ucg9tPLwZt .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-ucg9tPLwZt .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-ucg9tPLwZt .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-ucg9tPLwZt .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-ucg9tPLwZt .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucg9tPLwZt .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-ucg9tPLwZt .list {
  color: #131313;
}
.cid-ucg9tQyY7h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9tQyY7h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tQyY7h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tQyY7h .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ucg9tQyY7h .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucg9tQyY7h .container {
    padding: 0 12px;
  }
}
.cid-ucg9tQyY7h .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9tQyY7h .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucg9tQyY7h .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #fef8f5;
}
@media (max-width: 992px) {
  .cid-ucg9tQyY7h .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucg9tQyY7h .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ucg9tQyY7h .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-ucg9tQyY7h .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9tQyY7h .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-ucg9tQyY7h .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-ucg9tQyY7h .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-ucg9tQyY7h .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9tQyY7h .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucg9tQyY7h .mbr-section-subtitle {
  color: #222222;
}
.cid-ucg9tQyY7h .mbr-text {
  color: #222222;
}
.cid-ucg9tQyY7h .list {
  color: #222222;
}
.cid-ucg9tRhgNG {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucg9tRhgNG .row {
  align-items: center;
  width: 100%;
}
.cid-ucg9tRhgNG .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-ucg9tRhgNG .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ucg9tRhgNG .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucg9tRhgNG .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #010a44;
}
.cid-ucg9tRhgNG .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucg9tRhgNG .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-ucg9tRhgNG .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-ucg9tRhgNG .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-ucg9tRhgNG .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-ucg9tRhgNG .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-ucg9tRhgNG .mbr-section-title {
  width: 100%;
  color: #fef8f5;
  margin-bottom: 4px;
  text-align: center;
}
.cid-ucg9tRhgNG .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-ucg9tRhgNG .btn-container {
  width: 100%;
}
.cid-ucg9tRhgNG .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-ucg9tRhgNG .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-ucg9tRhgNG .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ucg9tRhgNG .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-ucg9tSk2tD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9tSk2tD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tSk2tD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucg9tSk2tD .container {
    padding: 0 16px;
  }
}
.cid-ucg9tSk2tD .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ucg9tSk2tD .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucg9tSk2tD .title-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-ucg9tSk2tD .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucg9tSk2tD .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-ucg9tSk2tD .mbr-section-title {
  color: #111111;
}
.cid-ucg9tSk2tD .mbr-text {
  color: #05051e;
}
.cid-ucg9tT8GHo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #010a44;
}
.cid-ucg9tT8GHo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tT8GHo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tT8GHo .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-ucg9tT8GHo .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucg9tT8GHo .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-ucg9tT8GHo .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ucg9tT8GHo .row .row {
    flex-direction: column-reverse;
  }
  .cid-ucg9tT8GHo .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucg9tT8GHo .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ucg9tT8GHo .card-subtitle {
  color: #0095ff;
}
.cid-ucg9tT8GHo .mbr-text {
  color: #555555;
}
.cid-ucg9tT8GHo .mbr-text,
.cid-ucg9tT8GHo .mbr-section-btn {
  color: #05051e;
}
.cid-ucg9tU3yot {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9tU3yot .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-ucg9tU3yot .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucg9tU3yot .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-ucg9tU3yot .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-ucg9tU3yot .btn:hover,
.cid-ucg9tU3yot .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-ucg9tU3yot .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-ucg9tU3yot .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-ucg9tU3yot .btn:hover:before,
.cid-ucg9tU3yot .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-ucg9tU3yot .btn-secondary {
  color: #000000 !important;
}
.cid-ucg9tU3yot .btn-secondary:hover {
  color: #000000 !important;
}
.cid-ucg9tUS5ER {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9tUS5ER .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tUS5ER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tUS5ER .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ucg9tUS5ER .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucg9tUS5ER .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-ucg9tUS5ER .card-title {
  color: #ffffff;
}
.cid-ucg9tVXITm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucg9tVXITm .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9tVXITm .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg9tVXITm .container {
    padding: 0 25px;
  }
}
.cid-ucg9tVXITm .row {
  margin: 0;
}
.cid-ucg9tVXITm .row .card {
  padding: 0;
  justify-content: center;
}
.cid-ucg9tVXITm .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-ucg9tVXITm .image-wrapper {
    min-height: 350px;
  }
}
.cid-ucg9tVXITm .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucg9tVXITm .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-ucg9tVXITm .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-ucg9tVXITm .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucg9tVXITm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9tVXITm .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-ucg9tVXITm .mbr-section-title {
  color: #000000;
}
.cid-ucg9tVXITm .mbr-text {
  color: #000000;
}
.cid-ucg9tWL5bc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9tWL5bc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tWL5bc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tWL5bc .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucg9tWL5bc .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9tWL5bc .container {
    padding: 0 30px;
  }
}
.cid-ucg9tWL5bc .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucg9tWL5bc .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucg9tWL5bc .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucg9tWL5bc .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucg9tWL5bc .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ucg9tWL5bc .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucg9tWL5bc .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucg9tXzSJW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9tXzSJW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tXzSJW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tXzSJW .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}
.cid-ucg9tXzSJW .mbr-section-title {
  color: #000000;
}
.cid-ucg9tXzSJW .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-ucg9tXzSJW .panel-group {
  border: none;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-ucg9tXzSJW .card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-ucg9tXzSJW .card:not(:first-child) {
  border-top: 1px solid #fafafa;
}
.cid-ucg9tXzSJW .mbr-iconfont {
  font-size: 10px !important;
  font-family: 'Moririse2' !important;
  color: #1f1d1a;
  margin-left: 1rem;
  padding: 17px;
  background-color: #fef8f5;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-ucg9tXzSJW .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-ucg9tXzSJW .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucg9tXzSJW .panel-title {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-ucg9tXzSJW .panel-title {
    padding: 20px !important;
  }
}
.cid-ucg9tXzSJW .panel-title:hover {
  text-decoration-line: none !important;
}
.cid-ucg9tXzSJW .panel-title:hover .panel-title-edit {
  text-decoration: underline !important;
}
.cid-ucg9tXzSJW .panel-body {
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767px) {
  .cid-ucg9tXzSJW .panel-body {
    padding: 0 20px 20px 20px;
  }
}
.cid-ucg9tXzSJW .panel-text {
  margin-bottom: 16px;
  color: #353535;
}
.cid-ucg9tXzSJW .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucg9tXzSJW .panel-title-edit {
  color: #1F1D1A;
  padding-right: 12px;
}
.cid-ucg9tYDgcg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9tYDgcg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9tYDgcg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9tYDgcg .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-ucg9tYDgcg .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucg9tYDgcg .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9tYDgcg .container {
    padding: 0 20px;
  }
  .cid-ucg9tYDgcg .container .row {
    padding: 0;
  }
}
.cid-ucg9tYDgcg .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ucg9tYDgcg .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucg9tYDgcg .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucg9tYDgcg .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ucg9tYDgcg .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-ucg9tYDgcg .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ucg9tYDgcg .image-wrapper img {
    height: 300px;
  }
}
.cid-ucg9tYDgcg .mbr-section-title {
  color: #222222;
}
.cid-ucg9tYDgcg .mbr-text {
  color: #fafafa;
}
.cid-ucg9tYDgcg .mbr-section-title,
.cid-ucg9tYDgcg .mbr-section-btn {
  color: #ffffff;
}
.cid-ucg9tZuvPP {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fef8f5;
}
.cid-ucg9tZuvPP .mbr-text {
  color: #05051e;
}
.cid-ucg9tZuvPP .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-ucg9tZuvPP .mbr-section-title {
  color: #05051e;
  text-align: center;
}
.cid-ucg9tZuvPP .mbr-text2 {
  color: #f3f6f9;
}
.cid-ucg9tZuvPP a {
  text-decoration: underline;
}
.cid-ucg9tZuvPP p {
  line-height: 1.2;
}
.cid-ucg9u168NC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9u168NC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9u168NC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9u168NC .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9u168NC .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg9u168NC .container {
    padding: 0 16px;
  }
}
.cid-ucg9u168NC .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucg9u168NC .row {
    margin: 0 10px;
  }
}
.cid-ucg9u168NC .row .card {
  position: relative;
  padding: 0;
}
.cid-ucg9u168NC .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #fef8f5;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-ucg9u168NC .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg9u168NC .row .card .decor-wrapper {
    display: none;
  }
}
.cid-ucg9u168NC .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fef8f5;
  color: #010a44;
  border-radius: 100%;
  border: 5px solid #fef8f5;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-ucg9u168NC .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg9u168NC .row .card .icon-decor {
    display: none;
  }
}
.cid-ucg9u168NC .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ucg9u168NC .title-wrapper {
    width: 100%;
  }
}
.cid-ucg9u168NC .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9u168NC .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucg9u168NC .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9u168NC .mbr-section-title {
  color: #fdfcfc;
}
.cid-ucg9u168NC .mbr-text {
  color: #fdfcfc;
}
.cid-ucgB4uqFZL {
  background-color: #fafafa;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-ucgB4uqFZL .row {
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (min-width: 992px) {
  .cid-ucgB4uqFZL .content-wrapper {
    max-width: 600px;
    height: 560px;
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucgB4uqFZL .wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .cid-ucgB4uqFZL .wrapper {
    padding: 0 28px;
  }
}
.cid-ucgB4uqFZL .text {
  position: relative;
}
.cid-ucgB4uqFZL .card-header {
  padding: 15px 0 !important;
  border-bottom: none;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-top: 1px solid rgba(61, 61, 61, 0.3);
}
@media (min-width: 768px) {
  .cid-ucgB4uqFZL .card-header {
    padding: 15px 0 15px 0 !important;
  }
}
.cid-ucgB4uqFZL .panel-body {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
.cid-ucgB4uqFZL span {
  transform: rotate(45deg);
  transition: all 0.5s;
  font-size: 20px;
}
.cid-ucgB4uqFZL .collapsed span {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .cid-ucgB4uqFZL .content-block {
    padding-left: 60px;
  }
}
.cid-ucgB4uqFZL .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ucgB4uqFZL .panel-group {
  width: 100%;
}
.cid-ucgB4uqFZL .sign {
  font-family: 'Moririse2' !important;
}
.cid-ucgB4uqFZL .card {
  border-radius: 0px;
}
.cid-ucgB4uqFZL .card .card-header {
  border-radius: 0px;
  padding: 0;
}
.cid-ucgB4uqFZL .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-ucgB4uqFZL .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ucgB4uqFZL .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-ucgB4uqFZL .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-ucgB4uqFZL .link-title {
  border-bottom: 1px solid rgba(61, 61, 61, 0.3);
  padding-bottom: 33px;
}
.cid-ucgB4uqFZL .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-ucgB4uqFZL .mbr-text {
  margin-bottom: 84px;
}
.cid-ucgB4uqFZL .header-text,
.cid-ucgB4uqFZL .sign {
  color: #282828;
}
.cid-ucgB4uqFZL .panel-text {
  color: #282828;
  text-align: left;
}
.cid-ucg9u20wu1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fef8f5;
}
.cid-ucg9u20wu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9u20wu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9u20wu1 .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ucg9u20wu1 .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucg9u20wu1 .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-ucg9u20wu1 .google-map {
  height: 600px;
  position: relative;
}
.cid-ucg9u20wu1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucg9u20wu1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucg9u20wu1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucg9u20wu1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucg9u20wu1 .mbr-section-title {
  text-align: center;
}
.cid-ucg9u2UmfT {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9u2UmfT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9u2UmfT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9u2UmfT .row {
  justify-content: space-between;
}
.cid-ucg9u2UmfT .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucg9u2UmfT .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucg9u2UmfT .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucg9u2UmfT .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucg9u2UmfT .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucg9u2UmfT .list li {
  margin-bottom: 25px;
}
.cid-ucg9u2UmfT .list li:last-child {
  margin-bottom: 0;
}
.cid-ucg9u2UmfT .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucg9u2UmfT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucg9u2UmfT .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucg9u2UmfT .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-ucg9u2UmfT .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-ucg9u2UmfT .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucg9u2UmfT .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucg9u2UmfT .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucg9u2UmfT .mbr-desc,
.cid-ucg9u2UmfT .mbr-iconfont {
  color: #ffffff;
}
.cid-ucg9u2UmfT .mbr-text,
.cid-ucg9u2UmfT .mbr-section-btn {
  color: #ffffff;
}
.cid-ucg9ukiXJH .navbar-dropdown {
  position: relative !important;
}
.cid-ucg9ukiXJH .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-ucg9ukiXJH .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-ucg9ukiXJH .dropdown-item:hover,
.cid-ucg9ukiXJH .dropdown-item:focus {
  color: #e43f3f !important;
}
.cid-ucg9ukiXJH .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-ucg9ukiXJH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucg9ukiXJH .nav-link {
  position: relative;
  padding: 0;
}
.cid-ucg9ukiXJH .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-ucg9ukiXJH .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucg9ukiXJH .dropdown-menu,
.cid-ucg9ukiXJH .navbar.opened {
  background: #ffffff !important;
}
.cid-ucg9ukiXJH .nav-item:focus,
.cid-ucg9ukiXJH .nav-link:focus {
  outline: none;
}
.cid-ucg9ukiXJH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucg9ukiXJH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucg9ukiXJH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucg9ukiXJH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucg9ukiXJH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucg9ukiXJH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucg9ukiXJH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ucg9ukiXJH .navbar.opened {
  transition: all 0.3s;
}
.cid-ucg9ukiXJH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucg9ukiXJH .navbar .navbar-logo img {
  width: auto;
}
.cid-ucg9ukiXJH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucg9ukiXJH .navbar.collapsed {
  justify-content: center;
}
.cid-ucg9ukiXJH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucg9ukiXJH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucg9ukiXJH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucg9ukiXJH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucg9ukiXJH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucg9ukiXJH .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-ucg9ukiXJH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucg9ukiXJH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucg9ukiXJH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucg9ukiXJH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucg9ukiXJH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucg9ukiXJH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucg9ukiXJH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucg9ukiXJH .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-ucg9ukiXJH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucg9ukiXJH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucg9ukiXJH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucg9ukiXJH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucg9ukiXJH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucg9ukiXJH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucg9ukiXJH .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucg9ukiXJH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucg9ukiXJH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucg9ukiXJH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucg9ukiXJH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucg9ukiXJH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucg9ukiXJH .dropdown-item.active,
.cid-ucg9ukiXJH .dropdown-item:active {
  background-color: transparent;
}
.cid-ucg9ukiXJH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucg9ukiXJH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucg9ukiXJH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucg9ukiXJH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucg9ukiXJH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucg9ukiXJH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucg9ukiXJH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucg9ukiXJH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucg9ukiXJH button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucg9ukiXJH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-ucg9ukiXJH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucg9ukiXJH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucg9ukiXJH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucg9ukiXJH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucg9ukiXJH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucg9ukiXJH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucg9ukiXJH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucg9ukiXJH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucg9ukiXJH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucg9ukiXJH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucg9ukiXJH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucg9ukiXJH .navbar {
    height: 70px;
  }
  .cid-ucg9ukiXJH .navbar.opened {
    height: auto;
  }
  .cid-ucg9ukiXJH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucg9ukiXJH .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-ucg9ukiXJH .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-ucg9ukiXJH a {
  display: inline;
  font-weight: bold;
}
.cid-ucg9ukiXJH img {
  display: inline;
  padding-right: 10px;
}
.cid-ucg9ukiXJH .dropdown-toggle:after {
  display: none;
}
.cid-ucg9ukiXJH .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-ucg9ukiXJH .dropdown-item:hover {
  color: #ffe161 !important;
}
@media (max-width: 990px) {
  .cid-ucg9ukiXJH .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-ucg9ulheOk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucg9ulheOk .pos_rel {
  position: relative;
}
.cid-ucg9ulheOk .main_section_title {
  display: flex;
}
.cid-ucg9ulheOk .main_title {
  padding: 0 8.333%;
}
.cid-ucg9ulheOk .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-ucg9ulheOk .card_title {
    font-size: 2rem;
  }
}
.cid-ucg9ulheOk .text-wrapper {
  width: 60%;
  background: #010a44;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-ucg9ulheOk .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucg9ulheOk .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucg9ulheOk .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-ucg9ulheOk .text-wrapper:hover .card_title a {
  color: #ff6666 !important;
}
.cid-ucg9ulheOk .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucg9ulheOk .block-content,
.cid-ucg9ulheOk .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-ucg9ulheOk .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ucg9ulheOk .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ucg9ulheOk .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-ucg9ulheOk .block-content {
  display: flex;
  align-items: center;
}
.cid-ucg9ulheOk .image-wrapper,
.cid-ucg9ulheOk img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-ucg9ulheOk .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-ucg9ulheOk .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ucg9ulheOk .mbr-section-btn .btn-secondary-outline:hover,
.cid-ucg9ulheOk .mbr-section-btn .btn-secondary-outline .active,
.cid-ucg9ulheOk .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
@media (max-width: 991px) {
  .cid-ucg9ulheOk .block-content {
    flex-direction: column;
  }
  .cid-ucg9ulheOk .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-ucg9ulheOk .empty_content {
    display: none;
  }
  .cid-ucg9ulheOk .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ucg9ulheOk .text-wrapper,
  .cid-ucg9ulheOk .main_title {
    padding: 30px 1rem;
  }
}
.cid-ucg9ulheOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9ulheOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9um5syb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucg9um5syb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9um5syb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9um5syb .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucg9um5syb .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9um5syb .container {
    padding: 0 6px;
  }
}
.cid-ucg9um5syb .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-ucg9um5syb .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-ucg9um5syb .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9um5syb .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-ucg9um5syb .row {
    padding: 0 30px;
  }
}
.cid-ucg9um5syb .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-ucg9um5syb .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucg9um5syb .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-ucg9um5syb .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-ucg9um5syb .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-ucg9um5syb .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-ucg9um5syb .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ucg9um5syb .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-ucg9um5syb .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-ucg9um5syb .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-ucg9um5syb .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-ucg9um5syb .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucg9um5syb .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-ucg9um5syb .list {
  color: #131313;
}
.cid-ucg9umRGFa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9umRGFa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9umRGFa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9umRGFa .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ucg9umRGFa .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucg9umRGFa .container {
    padding: 0 12px;
  }
}
.cid-ucg9umRGFa .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9umRGFa .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucg9umRGFa .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #fef8f5;
}
@media (max-width: 992px) {
  .cid-ucg9umRGFa .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucg9umRGFa .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ucg9umRGFa .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-ucg9umRGFa .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9umRGFa .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-ucg9umRGFa .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-ucg9umRGFa .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-ucg9umRGFa .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9umRGFa .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucg9umRGFa .mbr-section-subtitle {
  color: #222222;
}
.cid-ucg9umRGFa .mbr-text {
  color: #222222;
}
.cid-ucg9umRGFa .list {
  color: #222222;
}
.cid-ucg9unAEsw {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucg9unAEsw .row {
  align-items: center;
  width: 100%;
}
.cid-ucg9unAEsw .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-ucg9unAEsw .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ucg9unAEsw .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucg9unAEsw .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #010a44;
}
.cid-ucg9unAEsw .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucg9unAEsw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-ucg9unAEsw .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-ucg9unAEsw .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-ucg9unAEsw .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-ucg9unAEsw .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-ucg9unAEsw .mbr-section-title {
  width: 100%;
  color: #fef8f5;
  margin-bottom: 4px;
  text-align: center;
}
.cid-ucg9unAEsw .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-ucg9unAEsw .btn-container {
  width: 100%;
}
.cid-ucg9unAEsw .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-ucg9unAEsw .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-ucg9unAEsw .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ucg9unAEsw .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-ucg9uoOi5I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9uoOi5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9uoOi5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucg9uoOi5I .container {
    padding: 0 16px;
  }
}
.cid-ucg9uoOi5I .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ucg9uoOi5I .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucg9uoOi5I .title-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-ucg9uoOi5I .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucg9uoOi5I .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-ucg9uoOi5I .mbr-section-title {
  color: #111111;
}
.cid-ucg9uoOi5I .mbr-text {
  color: #05051e;
}
.cid-ucg9upAsw2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #010a44;
}
.cid-ucg9upAsw2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9upAsw2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9upAsw2 .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-ucg9upAsw2 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucg9upAsw2 .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-ucg9upAsw2 .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ucg9upAsw2 .row .row {
    flex-direction: column-reverse;
  }
  .cid-ucg9upAsw2 .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucg9upAsw2 .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ucg9upAsw2 .card-subtitle {
  color: #0095ff;
}
.cid-ucg9upAsw2 .mbr-text {
  color: #555555;
}
.cid-ucg9upAsw2 .mbr-text,
.cid-ucg9upAsw2 .mbr-section-btn {
  color: #05051e;
}
.cid-ucg9uqu8iW {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9uqu8iW .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-ucg9uqu8iW .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucg9uqu8iW .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-ucg9uqu8iW .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-ucg9uqu8iW .btn:hover,
.cid-ucg9uqu8iW .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-ucg9uqu8iW .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-ucg9uqu8iW .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-ucg9uqu8iW .btn:hover:before,
.cid-ucg9uqu8iW .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-ucg9uqu8iW .btn-secondary {
  color: #000000 !important;
}
.cid-ucg9uqu8iW .btn-secondary:hover {
  color: #000000 !important;
}
.cid-ucg9uriGK9 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9uriGK9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9uriGK9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9uriGK9 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ucg9uriGK9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucg9uriGK9 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-ucg9uriGK9 .card-title {
  color: #ffffff;
}
.cid-ucg9ushqsg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ucg9ushqsg .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9ushqsg .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg9ushqsg .container {
    padding: 0 25px;
  }
}
.cid-ucg9ushqsg .row {
  margin: 0;
}
.cid-ucg9ushqsg .row .card {
  padding: 0;
  justify-content: center;
}
.cid-ucg9ushqsg .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-ucg9ushqsg .image-wrapper {
    min-height: 350px;
  }
}
.cid-ucg9ushqsg .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucg9ushqsg .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-ucg9ushqsg .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-ucg9ushqsg .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucg9ushqsg .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9ushqsg .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-ucg9ushqsg .mbr-section-title {
  color: #000000;
}
.cid-ucg9ushqsg .mbr-text {
  color: #000000;
}
.cid-ucg9ut2Y1Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010a44;
}
.cid-ucg9ut2Y1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9ut2Y1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9ut2Y1Q .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucg9ut2Y1Q .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucg9ut2Y1Q .container {
    padding: 0 30px;
  }
}
.cid-ucg9ut2Y1Q .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucg9ut2Y1Q .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucg9ut2Y1Q .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucg9ut2Y1Q .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucg9ut2Y1Q .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ucg9ut2Y1Q .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucg9ut2Y1Q .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucg9utR4FN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fef8f5;
}
.cid-ucg9utR4FN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9utR4FN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9utR4FN .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}
.cid-ucg9utR4FN .mbr-section-title {
  color: #000000;
}
.cid-ucg9utR4FN .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-ucg9utR4FN .panel-group {
  border: none;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-ucg9utR4FN .card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-ucg9utR4FN .card:not(:first-child) {
  border-top: 1px solid #fafafa;
}
.cid-ucg9utR4FN .mbr-iconfont {
  font-size: 10px !important;
  font-family: 'Moririse2' !important;
  color: #1f1d1a;
  margin-left: 1rem;
  padding: 17px;
  background-color: #fef8f5;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-ucg9utR4FN .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-ucg9utR4FN .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucg9utR4FN .panel-title {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-ucg9utR4FN .panel-title {
    padding: 20px !important;
  }
}
.cid-ucg9utR4FN .panel-title:hover {
  text-decoration-line: none !important;
}
.cid-ucg9utR4FN .panel-title:hover .panel-title-edit {
  text-decoration: underline !important;
}
.cid-ucg9utR4FN .panel-body {
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767px) {
  .cid-ucg9utR4FN .panel-body {
    padding: 0 20px 20px 20px;
  }
}
.cid-ucg9utR4FN .panel-text {
  margin-bottom: 16px;
  color: #353535;
}
.cid-ucg9utR4FN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucg9utR4FN .panel-title-edit {
  color: #1F1D1A;
  padding-right: 12px;
}
.cid-ucg9uuSByU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9uuSByU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9uuSByU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9uuSByU .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-ucg9uuSByU .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucg9uuSByU .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9uuSByU .container {
    padding: 0 20px;
  }
  .cid-ucg9uuSByU .container .row {
    padding: 0;
  }
}
.cid-ucg9uuSByU .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ucg9uuSByU .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucg9uuSByU .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucg9uuSByU .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ucg9uuSByU .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-ucg9uuSByU .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ucg9uuSByU .image-wrapper img {
    height: 300px;
  }
}
.cid-ucg9uuSByU .mbr-section-title {
  color: #222222;
}
.cid-ucg9uuSByU .mbr-text {
  color: #fafafa;
}
.cid-ucg9uuSByU .mbr-section-title,
.cid-ucg9uuSByU .mbr-section-btn {
  color: #ffffff;
}
.cid-ucg9uvG6Ml {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fef8f5;
}
.cid-ucg9uvG6Ml .mbr-text {
  color: #05051e;
}
.cid-ucg9uvG6Ml .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-ucg9uvG6Ml .mbr-section-title {
  color: #05051e;
  text-align: center;
}
.cid-ucg9uvG6Ml .mbr-text2 {
  color: #f3f6f9;
}
.cid-ucg9uvG6Ml a {
  text-decoration: underline;
}
.cid-ucg9uvG6Ml p {
  line-height: 1.2;
}
.cid-ucg9uxiAbE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9uxiAbE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9uxiAbE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9uxiAbE .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucg9uxiAbE .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucg9uxiAbE .container {
    padding: 0 16px;
  }
}
.cid-ucg9uxiAbE .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucg9uxiAbE .row {
    margin: 0 10px;
  }
}
.cid-ucg9uxiAbE .row .card {
  position: relative;
  padding: 0;
}
.cid-ucg9uxiAbE .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #fef8f5;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-ucg9uxiAbE .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg9uxiAbE .row .card .decor-wrapper {
    display: none;
  }
}
.cid-ucg9uxiAbE .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fef8f5;
  color: #010a44;
  border-radius: 100%;
  border: 5px solid #fef8f5;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-ucg9uxiAbE .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-ucg9uxiAbE .row .card .icon-decor {
    display: none;
  }
}
.cid-ucg9uxiAbE .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-ucg9uxiAbE .title-wrapper {
    width: 100%;
  }
}
.cid-ucg9uxiAbE .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucg9uxiAbE .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucg9uxiAbE .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucg9uxiAbE .mbr-section-title {
  color: #fdfcfc;
}
.cid-ucg9uxiAbE .mbr-text {
  color: #fdfcfc;
}
.cid-ucgBTCzdoX {
  background-color: #fafafa;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-ucgBTCzdoX .row {
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (min-width: 992px) {
  .cid-ucgBTCzdoX .content-wrapper {
    max-width: 600px;
    height: 560px;
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucgBTCzdoX .wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .cid-ucgBTCzdoX .wrapper {
    padding: 0 28px;
  }
}
.cid-ucgBTCzdoX .text {
  position: relative;
}
.cid-ucgBTCzdoX .card-header {
  padding: 15px 0 !important;
  border-bottom: none;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-top: 1px solid rgba(61, 61, 61, 0.3);
}
@media (min-width: 768px) {
  .cid-ucgBTCzdoX .card-header {
    padding: 15px 0 15px 0 !important;
  }
}
.cid-ucgBTCzdoX .panel-body {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
.cid-ucgBTCzdoX span {
  transform: rotate(45deg);
  transition: all 0.5s;
  font-size: 20px;
}
.cid-ucgBTCzdoX .collapsed span {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .cid-ucgBTCzdoX .content-block {
    padding-left: 60px;
  }
}
.cid-ucgBTCzdoX .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ucgBTCzdoX .panel-group {
  width: 100%;
}
.cid-ucgBTCzdoX .sign {
  font-family: 'Moririse2' !important;
}
.cid-ucgBTCzdoX .card {
  border-radius: 0px;
}
.cid-ucgBTCzdoX .card .card-header {
  border-radius: 0px;
  padding: 0;
}
.cid-ucgBTCzdoX .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-ucgBTCzdoX .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ucgBTCzdoX .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-ucgBTCzdoX .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-ucgBTCzdoX .link-title {
  border-bottom: 1px solid rgba(61, 61, 61, 0.3);
  padding-bottom: 33px;
}
.cid-ucgBTCzdoX .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-ucgBTCzdoX .mbr-text {
  margin-bottom: 84px;
}
.cid-ucgBTCzdoX .header-text,
.cid-ucgBTCzdoX .sign {
  color: #282828;
}
.cid-ucgBTCzdoX .panel-text {
  color: #282828;
  text-align: left;
}
.cid-ucg9uybGqw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fef8f5;
}
.cid-ucg9uybGqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9uybGqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9uybGqw .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ucg9uybGqw .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucg9uybGqw .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-ucg9uybGqw .google-map {
  height: 600px;
  position: relative;
}
.cid-ucg9uybGqw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucg9uybGqw .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucg9uybGqw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucg9uybGqw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucg9uybGqw .mbr-section-title {
  text-align: center;
}
.cid-ucg9uz9xWV {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #010a44;
}
.cid-ucg9uz9xWV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucg9uz9xWV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucg9uz9xWV .row {
  justify-content: space-between;
}
.cid-ucg9uz9xWV .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucg9uz9xWV .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucg9uz9xWV .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucg9uz9xWV .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucg9uz9xWV .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucg9uz9xWV .list li {
  margin-bottom: 25px;
}
.cid-ucg9uz9xWV .list li:last-child {
  margin-bottom: 0;
}
.cid-ucg9uz9xWV .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucg9uz9xWV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucg9uz9xWV .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucg9uz9xWV .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-ucg9uz9xWV .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-ucg9uz9xWV .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucg9uz9xWV .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucg9uz9xWV .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucg9uz9xWV .mbr-desc,
.cid-ucg9uz9xWV .mbr-iconfont {
  color: #ffffff;
}
.cid-ucg9uz9xWV .mbr-text,
.cid-ucg9uz9xWV .mbr-section-btn {
  color: #ffffff;
}
