body {
  font-family: 'Manrope', sans-serif;
}
.display-1 {
  font-family: 'Manrope', sans-serif;
  font-size: 7rem;
  line-height: 0.9;
  letter-spacing: .0625rem;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'Manrope', sans-serif;
  font-size: 4.5rem;
  line-height: 0.8;
}
.display-2 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-5 {
  font-family: 'Manrope', sans-serif;
  font-size: 3.25rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 4.0625rem;
}
.display-7 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 0.9 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 0.8 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((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.3 * (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: #1b4965 !important;
}
.bg-success {
  background-color: #20ac6b !important;
}
.bg-info {
  background-color: #0aa3c2 !important;
}
.bg-warning {
  background-color: #cc9900 !important;
}
.bg-danger {
  background-color: #ae1e2c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1b4965 !important;
  border-color: #1b4965 !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: #091821 !important;
  border-color: #091821 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #091821 !important;
  border-color: #091821 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #62b6cb !important;
  border-color: #62b6cb !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: #358ba1 !important;
  border-color: #358ba1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #358ba1 !important;
  border-color: #358ba1 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0aa3c2 !important;
  border-color: #0aa3c2 !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: #065e70 !important;
  border-color: #065e70 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #065e70 !important;
  border-color: #065e70 !important;
}
.btn-success,
.btn-success:active {
  background-color: #20ac6b !important;
  border-color: #20ac6b !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: #12633e !important;
  border-color: #12633e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #12633e !important;
  border-color: #12633e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ae1e2c !important;
  border-color: #ae1e2c !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: #641119 !important;
  border-color: #641119 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #641119 !important;
  border-color: #641119 !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: #1b4965;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #091821 !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: #1b4965 !important;
  border-color: #1b4965 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #62b6cb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #358ba1 !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: #62b6cb !important;
  border-color: #62b6cb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0aa3c2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #065e70 !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: #0aa3c2 !important;
  border-color: #0aa3c2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #20ac6b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #12633e !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: #20ac6b !important;
  border-color: #20ac6b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cc9900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #755800 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ae1e2c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #641119 !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: #ae1e2c !important;
  border-color: #ae1e2c !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: #1b4965 !important;
}
.text-secondary {
  color: #62b6cb !important;
}
.text-success {
  color: #20ac6b !important;
}
.text-info {
  color: #0aa3c2 !important;
}
.text-warning {
  color: #cc9900 !important;
}
.text-danger {
  color: #ae1e2c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #050f15 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #328195 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #105636 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #055161 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #664d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #570f16 !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: #1b4965;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0aa3c2;
}
.alert-warning {
  background-color: #cc9900;
}
.alert-danger {
  background-color: #ae1e2c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1b4965;
  border-color: #1b4965;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1b4965;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3692c9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #68e3aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #55dbf6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe599;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e56773;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.125rem;
}
.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: #1b4965 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.125rem;
}
blockquote {
  border-color: #1b4965;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1b4965;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1b4965;
}
.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: #1b4965;
  border-bottom-color: #1b4965;
}
.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: #1b4965 !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: #62b6cb !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='%231b4965' %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;
}
.container {
  max-width: 1056px;
}
.btn {
  border-radius: 100vw;
  padding: 0.75rem 1.5rem;
}
.cid-uUYbZAGK1v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v nav.navbar {
  position: fixed;
}
.cid-uUYbZAGK1v .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .container {
    flex-wrap: nowrap;
  }
}
.cid-uUYbZAGK1v .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uUYbZAGK1v .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-uUYbZAGK1v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uUYbZAGK1v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uUYbZAGK1v .dropdown-item:hover,
.cid-uUYbZAGK1v .dropdown-item:focus {
  background: #1b4965 !important;
  color: white !important;
}
.cid-uUYbZAGK1v .dropdown-item:hover span {
  color: white;
}
.cid-uUYbZAGK1v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uUYbZAGK1v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uUYbZAGK1v .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uUYbZAGK1v .nav-link {
  position: relative;
}
.cid-uUYbZAGK1v .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uUYbZAGK1v .dropdown-menu,
.cid-uUYbZAGK1v .navbar.opened {
  background: #f9fdfd !important;
}
.cid-uUYbZAGK1v .nav-item:focus,
.cid-uUYbZAGK1v .nav-link:focus {
  outline: none;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUYbZAGK1v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUYbZAGK1v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUYbZAGK1v .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f9fdfd;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .navbar.opened {
  transition: all 0.3s;
}
.cid-uUYbZAGK1v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uUYbZAGK1v .navbar .navbar-logo img {
  width: auto;
}
.cid-uUYbZAGK1v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uUYbZAGK1v .navbar.collapsed {
  justify-content: center;
}
.cid-uUYbZAGK1v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUYbZAGK1v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUYbZAGK1v .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-uUYbZAGK1v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uUYbZAGK1v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uUYbZAGK1v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUYbZAGK1v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUYbZAGK1v .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-uUYbZAGK1v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUYbZAGK1v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUYbZAGK1v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uUYbZAGK1v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUYbZAGK1v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uUYbZAGK1v .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUYbZAGK1v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUYbZAGK1v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #001819;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #1b4965;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption:hover {
  color: #1b4965 !important;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUYbZAGK1v .dropdown-item.active,
.cid-uUYbZAGK1v .dropdown-item:active {
  background-color: transparent;
}
.cid-uUYbZAGK1v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUYbZAGK1v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9fdfd;
}
.cid-uUYbZAGK1v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUYbZAGK1v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUYbZAGK1v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uUYbZAGK1v .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uUYbZAGK1v .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uUYbZAGK1v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #001819;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uUYbZAGK1v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uUYbZAGK1v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUYbZAGK1v .navbar {
    height: 60px;
  }
  .cid-uUYbZAGK1v .navbar.opened {
    height: auto;
  }
  .cid-uUYbZAGK1v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .nav-link,
.cid-uUYbZAGK1v .dropdown-item {
  color: #001819;
}
.cid-uUYbZAHLoP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #001819;
}
.cid-uUYbZAHLoP .container {
  max-width: 1312px;
}
.cid-uUYbZAHLoP .col-text {
  display: grid;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
.cid-uUYbZAHLoP .label-text {
  color: #FFFFFF;
  width: 100%;
}
.cid-uUYbZAHLoP .mbr-section-title {
  color: #ffffff;
  width: 100%;
}
.cid-uUYbZAHLoP .btn {
  padding: 1.6rem 3.5rem 2rem;
  font-weight: 400;
}
.cid-uUYbZAHLoP .advantages-container {
  display: grid;
  margin-top: 1rem;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 4.5rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uUYbZAHLoP .advantages-container {
    grid-auto-flow: row;
  }
}
.cid-uUYbZAHLoP .advantage {
  display: flex;
  align-items: flex-start;
}
.cid-uUYbZAHLoP .advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background-color: #1b4965;
}
.cid-uUYbZAHLoP .advantage-icon span {
  color: #ffffff;
}
.cid-uUYbZAHLoP .advantage-text {
  color: #FFFFFF;
}
.cid-uUYbZAHLoP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYbZAHLoP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYbZAHLoP .mbr-section-title,
.cid-uUYbZAHLoP .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uUYFbSUcGN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUYFbSUcGN .container {
  max-width: 1312px;
}
.cid-uUYFbSUcGN .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-uUYFbSUcGN .row {
    padding: 0 0.75rem;
  }
}
.cid-uUYFbSUcGN .text-container {
  width: 100%;
  padding: 0;
}
.cid-uUYFbSUcGN .mbr-section-title {
  margin-bottom: 4rem;
  width: 100%;
  color: #002549;
}
.cid-uUYFbSUcGN .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUYFbSUcGN .cards-container {
    grid-column-gap: 4rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-uUYFbSUcGN .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uUYFbSUcGN .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uUYFbSUcGN .item-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-uUYFbSUcGN .card-title {
  color: #002549;
  margin-bottom: 1rem;
}
.cid-uUYFbSUcGN .card-text {
  color: #002549;
}
.cid-uUYFbSUcGN .mbr-iconfont {
  font-size: 25px;
  color: #e1965f;
}
.cid-uUYFbSUcGN .icon-box {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.cid-uUYFbSUcGN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYFbSUcGN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYFbSUcGN .btn-wrapper {
  margin-top: -10%;
  margin-right: -5%;
}
#custom-html-a {
  /* Type valid CSS here */
}
#custom-html-a div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-a p {
  font-size: 60px;
  color: #777;
}
.cid-uUYbZAVpzi {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #001819;
}
.cid-uUYbZAVpzi .item:focus,
.cid-uUYbZAVpzi span:focus {
  outline: none;
}
.cid-uUYbZAVpzi .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uUYbZAVpzi .item {
  padding: 10px 0;
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uUYbZAVpzi .item {
    min-height: 45px;
  }
}
.cid-uUYbZAXy4g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUYbZAXy4g .container {
  max-width: 1312px;
}
.cid-uUYbZAXy4g .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-uUYbZAXy4g .row {
    padding: 0 0.75rem;
  }
}
.cid-uUYbZAXy4g .text-container {
  width: 100%;
  padding: 0;
}
.cid-uUYbZAXy4g .mbr-section-title {
  margin-bottom: 4rem;
  width: 100%;
  color: #001819;
}
.cid-uUYbZAXy4g .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUYbZAXy4g .cards-container {
    grid-column-gap: 4rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-uUYbZAXy4g .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uUYbZAXy4g .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uUYbZAXy4g .item-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-uUYbZAXy4g .card-title {
  color: #001819;
  margin-bottom: 1rem;
}
.cid-uUYbZAXy4g .card-text {
  color: #001819;
}
.cid-uUYbZAXy4g .mbr-iconfont {
  font-size: 25px;
  color: #00223a;
}
.cid-uUYbZAXy4g .icon-box {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.cid-uUYbZAXy4g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYbZAXy4g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYbZAXy4g .btn-wrapper {
  margin-top: -10%;
  margin-right: -5%;
}
.cid-uUYbZASwDT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001819;
}
.cid-uUYbZASwDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYbZASwDT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYbZASwDT .row {
  justify-content: center;
}
.cid-uUYbZASwDT .content-wrapper .title-wrapper {
  margin-bottom: 4rem;
}
.cid-uUYbZASwDT .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card {
  border-radius: 64px !important;
  padding: 32px;
  background-color: #1b4965;
  margin-top: 20px;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uUYbZASwDT .content-wrapper .panel-group .card {
    padding: 24px;
  }
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  border-radius: 100%;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 21px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-uUYbZASwDT .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uUYbZASwDT .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-uUYbZASwDT .mbr-desc,
.cid-uUYbZASwDT .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-uUYbZASwDT .panel-title-edit {
  color: #FFFFFF;
}
.cid-uUYbZASwDT .panel-text {
  color: #FFFFFF;
}
.cid-uUYbZB2HEk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUYbZB2HEk .container {
  max-width: 1312px;
}
.cid-uUYbZB2HEk img,
.cid-uUYbZB2HEk .item-img {
  transition: transform 3s, filter 0.5s;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
}
.cid-uUYbZB2HEk .img-filter {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #00223a;
  opacity: 0;
  transition: 0.5s all;
  pointer-events: none;
}
.cid-uUYbZB2HEk .item:focus,
.cid-uUYbZB2HEk span:focus {
  outline: none;
}
.cid-uUYbZB2HEk .item-wrap {
  position: relative;
  flex-grow: 1;
}
.cid-uUYbZB2HEk .item-wrapper {
  position: relative;
  background: #001819;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uUYbZB2HEk .item-wrapper:hover .img-filter {
  opacity: 0.6;
  z-index: 1;
}
.cid-uUYbZB2HEk .item-wrapper:hover img {
  transform: scale3d(1.2, 1.2, 1);
  filter: saturate(0);
}
.cid-uUYbZB2HEk .item-wrapper .item-content {
  display: grid;
  justify-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.cid-uUYbZB2HEk .item-wrapper .item-content {
  padding: 1.5rem 1.5rem 0;
}
.cid-uUYbZB2HEk .item-wrapper .item-footer {
  padding: 0 1.5rem 0.9rem;
}
.cid-uUYbZB2HEk .mbr-section-btn {
  margin-top: auto !important;
  padding-top: 0.9rem !important;
}
.cid-uUYbZB2HEk .mbr-section-head {
  margin-bottom: 4rem;
}
.cid-uUYbZB2HEk .mbr-section-title {
  color: #001819;
  text-align: center;
}
.cid-uUYbZB2HEk .mbr-section-subtitle {
  color: #002549;
}
.cid-uUYbZB2HEk .mbr-text {
  color: #FFFFFF;
  width: 100%;
}
.cid-uUYbZB2HEk .item-title-container {
  width: 100%;
}
.cid-uUYbZB2HEk .item-title {
  color: #002549;
  width: 100%;
  max-width: 100%;
}
.cid-uUYbZB2HEk .item-title span {
  background-color: #ffffff;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 2em;
  padding-bottom: 4px;
  line-height: inherit;
  font-size: inherit;
}
.cid-uUYbZB2HEk .item-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-uUYbZB2HEk .item {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .cid-uUYbZB2HEk .item {
    max-width: 416px;
    margin: 0 auto;
    padding: 0 0.75rem;
  }
}
.cid-uUYbZB2HEk .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uUYbZB2HEk .embla__container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uUYbZB2HEk .embla__container {
    margin: 0 -1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUYbZB2HEk .embla__container {
    margin: 0 -0.75rem;
  }
}
.cid-uUYbZB2HEk .item-subtitle,
.cid-uUYbZB2HEk .item-footer {
  color: #FFFFFF;
}
.cid-uUYbZAYjfg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUYbZAYjfg .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uUYbZAYjfg .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZAYjfg .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-uUYbZAYjfg .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZAYjfg .col-text {
    padding-right: 4.625rem;
  }
}
.cid-uUYbZAYjfg .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uUYbZAYjfg .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-uUYbZAYjfg .mbr-text {
  color: #001819;
  width: 100%;
}
.cid-uUYbZAYjfg .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-uUYbZAYjfg .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-left: 5rem;
  border-left: 1px solid #001819;
}
@media (max-width: 767px) {
  .cid-uUYbZAYjfg .cards-container {
    padding-left: 2rem;
  }
}
.cid-uUYbZAYjfg .card-text-container {
  flex-grow: 1;
}
.cid-uUYbZAYjfg .mbr-section-subtitle {
  color: #002549;
  width: 100%;
}
.cid-uUYbZAYjfg .card-text {
  color: #001819;
  width: 100%;
}
.cid-uUYbZAYjfg .icon-box {
  margin-top: 0.35rem;
  margin-right: 1rem;
  transform: rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-uUYbZAYjfg .icon-box span {
  color: #00223a;
}
.cid-uUYbZAYjfg .card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.cid-uUYbZAYjfg .card:hover .icon-box {
  margin-top: 0;
  margin-bottom: 0.35rem;
  transform: rotateZ(0);
}
.cid-uUYbZAYjfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYbZAYjfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYbZAYjfg .mbr-section-title,
.cid-uUYbZAYjfg .mbr-section-btn {
  color: #001819;
}
.cid-uUYbZBj8ld {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9fdfd;
  background-image: radial-gradient(circle farthest-side at 160% 170%, #1b4965 40%, transparent);
}
@media (max-width: 991px) {
  .cid-uUYbZBj8ld .col-form {
    padding-top: 2rem;
  }
  .cid-uUYbZBj8ld .col-form .dragArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 29rem;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZBj8ld .col-form {
    padding-right: 5.75rem;
  }
}
.cid-uUYbZBj8ld .col-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUYbZBj8ld .col-img {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZBj8ld .col-img {
    padding-left: 5.75rem;
  }
}
.cid-uUYbZBj8ld .mbr-text,
.cid-uUYbZBj8ld .mbr-section-btn {
  color: #232323;
}
.cid-uUYbZBj8ld .mbr-text,
.cid-uUYbZBj8ld .mbr-section-title {
  color: #002549;
  width: 100%;
  margin-bottom: 2rem !important;
}
@media (max-width: 991px) {
  .cid-uUYbZBj8ld .mbr-text,
  .cid-uUYbZBj8ld .mbr-section-title {
    text-align: center;
  }
}
.cid-uUYbZBj8ld .form-group {
  padding: 0 !important;
  max-width: 20rem;
}
.cid-uUYbZBj8ld .form-group input {
  color: #002549;
}
.cid-uUYbZBj8ld .form-group input::placeholder {
  color: #C3AFAD;
}
.cid-uUYbZBj8ld .form-group input::-moz-placeholder {
  color: #C3AFAD;
}
.cid-uUYbZBj8ld .form-group input:-moz-placeholder {
  color: #C3AFAD;
}
.cid-uUYbZBj8ld .form-group input:-ms-input-placeholder {
  color: #C3AFAD;
}
.cid-uUYbZBj8ld .form-control {
  font-size: 1.2rem !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid transparent;
  border-radius: 1.25rem;
  background-color: #fff;
  text-align: center;
}
.cid-uUYbZBj8ld .mbr-section-btn {
  padding: 0 !important;
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
  max-width: 20rem;
}
.cid-uUYbZBj8ld .mbr-section-btn .btn {
  width: 100%;
}
.cid-uUYbZBj8ld a.btn {
  height: 100%;
  margin: 0;
  padding: 14px 40px;
}
.cid-uUYbZBj8ld .book-page1 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #ffffff;
  background-image: linear-gradient(135deg, #f9fdfd, #ffffff);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uUYbZBj8ld .book-page2 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #ffffff;
  background-image: linear-gradient(315deg, #4c7493, #ffffff);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uUYbZBj8ld .image-wrapper {
  justify-content: center;
  display: flex;
  transition: 0.5s all;
  transform-style: preserve-3d;
  position: relative;
  z-index: 5;
  width: max-content;
}
.cid-uUYbZBj8ld .image-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 4;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uUYbZBj8ld .image-wrapper:hover {
  transform: rotateZ(-4deg);
}
.cid-uUYbZBj8ld .image-wrapper:hover img {
  transform: rotateZ(0);
}
.cid-uUYbZBj8ld .image-wrapper:hover .book-page1 {
  transform: rotateZ(4deg);
}
.cid-uUYbZBj8ld .image-wrapper:hover .book-page2 {
  transform: rotateZ(1.8deg);
}
@media (max-width: 991px) {
  .cid-uUYbZBj8ld .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-uUYbZBj8ld .justify-content-center {
  align-items: center;
}
.cid-uUYbZBj8ld .mbr-section-title {
  color: #001819;
}
.cid-uUYbZBj8ld .mbr-text {
  color: #001819;
}
.cid-uUYbZBj8ld H2 {
  text-align: left;
}
.cid-uUYbZBj8ld P {
  text-align: left;
}
.cid-uUYbZBkP1p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUYbZBkP1p .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uUYbZBkP1p .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZBkP1p .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-uUYbZBkP1p .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZBkP1p .col-text {
    padding-right: 4.625rem;
  }
}
.cid-uUYbZBkP1p .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uUYbZBkP1p .mbr-section-title {
  margin-bottom: 16px;
  color: #002549;
}
.cid-uUYbZBkP1p .mbr-text {
  color: #001819;
  text-align: center;
}
.cid-uUYbZBkP1p .list {
  color: #002549;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uUYbZBkP1p .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uUYbZBkP1p .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uUYbZBkP1p .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-uUYbZBkP1p .cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5rem;
  border-left: 1px solid #001819;
}
@media (max-width: 767px) {
  .cid-uUYbZBkP1p .cards-container {
    padding-left: 2rem;
  }
}
.cid-uUYbZBkP1p .card-text-container {
  flex-grow: 1;
}
.cid-uUYbZBkP1p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYbZBkP1p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYbZBkP1p .mbr-section-title,
.cid-uUYbZBkP1p .mbr-section-btn {
  color: #001819;
  text-align: center;
}
.cid-uUYbZBkP1p .list,
.cid-uUYbZBkP1p .item-wrap {
  color: #001819;
  text-align: left;
}
.cid-uUYbZBkDl9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9fdfd;
  overflow: hidden;
}
.cid-uUYbZBkDl9 .mbr-text {
  color: #002549;
}
.cid-uUYbZBkDl9 .media-container-row .mbr-text {
  color: #001819;
  text-align: center;
}
#custom-html-5 {
  /* Type valid CSS here */
}
#custom-html-5 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5 p {
  font-size: 60px;
  color: #777;
}
.cid-uUYbZAGK1v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v nav.navbar {
  position: fixed;
}
.cid-uUYbZAGK1v .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .container {
    flex-wrap: nowrap;
  }
}
.cid-uUYbZAGK1v .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uUYbZAGK1v .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-uUYbZAGK1v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uUYbZAGK1v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uUYbZAGK1v .dropdown-item:hover,
.cid-uUYbZAGK1v .dropdown-item:focus {
  background: #1b4965 !important;
  color: white !important;
}
.cid-uUYbZAGK1v .dropdown-item:hover span {
  color: white;
}
.cid-uUYbZAGK1v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uUYbZAGK1v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uUYbZAGK1v .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uUYbZAGK1v .nav-link {
  position: relative;
}
.cid-uUYbZAGK1v .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uUYbZAGK1v .dropdown-menu,
.cid-uUYbZAGK1v .navbar.opened {
  background: #f9fdfd !important;
}
.cid-uUYbZAGK1v .nav-item:focus,
.cid-uUYbZAGK1v .nav-link:focus {
  outline: none;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUYbZAGK1v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUYbZAGK1v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUYbZAGK1v .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f9fdfd;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .navbar.opened {
  transition: all 0.3s;
}
.cid-uUYbZAGK1v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uUYbZAGK1v .navbar .navbar-logo img {
  width: auto;
}
.cid-uUYbZAGK1v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uUYbZAGK1v .navbar.collapsed {
  justify-content: center;
}
.cid-uUYbZAGK1v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUYbZAGK1v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUYbZAGK1v .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-uUYbZAGK1v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uUYbZAGK1v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uUYbZAGK1v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUYbZAGK1v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUYbZAGK1v .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-uUYbZAGK1v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUYbZAGK1v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUYbZAGK1v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uUYbZAGK1v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUYbZAGK1v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uUYbZAGK1v .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUYbZAGK1v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUYbZAGK1v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #001819;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #1b4965;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption:hover {
  color: #1b4965 !important;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUYbZAGK1v .dropdown-item.active,
.cid-uUYbZAGK1v .dropdown-item:active {
  background-color: transparent;
}
.cid-uUYbZAGK1v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUYbZAGK1v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9fdfd;
}
.cid-uUYbZAGK1v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUYbZAGK1v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUYbZAGK1v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uUYbZAGK1v .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uUYbZAGK1v .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uUYbZAGK1v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #001819;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uUYbZAGK1v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uUYbZAGK1v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUYbZAGK1v .navbar {
    height: 60px;
  }
  .cid-uUYbZAGK1v .navbar.opened {
    height: auto;
  }
  .cid-uUYbZAGK1v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .nav-link,
.cid-uUYbZAGK1v .dropdown-item {
  color: #001819;
}
.cid-uUZYnsPMh4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002549;
}
.cid-uUZYnsPMh4 .container {
  max-width: 1312px;
}
.cid-uUZYnsPMh4 img,
.cid-uUZYnsPMh4 .item-img {
  transition: transform 3s, filter 0.5s;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
}
.cid-uUZYnsPMh4 .img-filter {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #7f5f5d;
  opacity: 0;
  transition: 0.5s all;
  pointer-events: none;
}
.cid-uUZYnsPMh4 .item:focus,
.cid-uUZYnsPMh4 span:focus {
  outline: none;
}
.cid-uUZYnsPMh4 .item-wrap {
  position: relative;
  flex-grow: 1;
}
.cid-uUZYnsPMh4 .item-wrapper {
  position: relative;
  background: #002549;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uUZYnsPMh4 .item-wrapper:hover .img-filter {
  opacity: 0.6;
  z-index: 1;
}
.cid-uUZYnsPMh4 .item-wrapper:hover img {
  transform: scale3d(1.2, 1.2, 1);
  filter: saturate(0);
}
.cid-uUZYnsPMh4 .item-wrapper .item-content {
  display: grid;
  justify-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.cid-uUZYnsPMh4 .item-wrapper .item-content {
  padding: 1.5rem;
}
.cid-uUZYnsPMh4 .mbr-section-btn {
  margin-top: auto !important;
  padding-top: 0.9rem !important;
}
.cid-uUZYnsPMh4 .mbr-section-head {
  margin-bottom: 4rem;
}
.cid-uUZYnsPMh4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUZYnsPMh4 .mbr-section-subtitle {
  color: #002549;
}
.cid-uUZYnsPMh4 .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uUZYnsPMh4 .item-title-container {
  width: 100%;
}
.cid-uUZYnsPMh4 .item-title {
  color: #002549;
  width: 100%;
  max-width: 100%;
}
.cid-uUZYnsPMh4 .item-title span {
  background-color: #ffffff;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 4px;
  border-radius: 2em;
  line-height: inherit;
  font-size: inherit;
}
.cid-uUZYnsPMh4 .item-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-uUZYnsPMh4 .item {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .cid-uUZYnsPMh4 .item {
    max-width: 416px;
    margin: 0 auto;
    padding: 0 0.75rem;
  }
}
.cid-uUZYnsPMh4 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uUZYnsPMh4 .embla__container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uUZYnsPMh4 .embla__container {
    margin: 0 -1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUZYnsPMh4 .embla__container {
    margin: 0 -0.75rem;
  }
}
.cid-uUZYlqexbl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002549;
  background-image: radial-gradient(circle farthest-side at 0 150%, #1b4965, #002549);
}
.cid-uUZYlqexbl .item:focus,
.cid-uUZYlqexbl span:focus {
  outline: none;
}
.cid-uUZYlqexbl .item {
  cursor: pointer;
}
.cid-uUZYlqexbl .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uUZYlqexbl .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uUZYlqexbl .grid-container-1,
.cid-uUZYlqexbl .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uUZYlqexbl .grid-container-1,
  .cid-uUZYlqexbl .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uUZYlqexbl .mbr-section-title {
  margin-bottom: 4rem;
  color: #ffffff;
  text-align: center;
}
.cid-uUZYlqexbl .content-head {
  max-width: 800px;
}
.cid-uUZYlqexbl .container,
.cid-uUZYlqexbl .container-fluid {
  overflow: hidden;
}
.cid-uUZYlqexbl .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uUZYlqexbl .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uUZYlqexbl .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uUZYlqexbl .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uUZYlqexbl .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uUZYlqexbl .grid-container-1,
.cid-uUZYlqexbl .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uUZYlqexbl .grid-container-1 {
  align-items: flex-end;
}
.cid-uUZYlqexbl .grid-container-2 {
  align-items: flex-start;
}
.cid-uV01nqf8BY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uV01nqf8BY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uV01nqf8BY H4 {
  text-align: center;
}
.cid-uUYbZBkDl9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9fdfd;
  overflow: hidden;
}
.cid-uUYbZBkDl9 .mbr-text {
  color: #002549;
}
.cid-uUYbZBkDl9 .media-container-row .mbr-text {
  color: #001819;
  text-align: center;
}
.cid-uUYbZAGK1v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v nav.navbar {
  position: fixed;
}
.cid-uUYbZAGK1v .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .container {
    flex-wrap: nowrap;
  }
}
.cid-uUYbZAGK1v .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uUYbZAGK1v .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-uUYbZAGK1v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uUYbZAGK1v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uUYbZAGK1v .dropdown-item:hover,
.cid-uUYbZAGK1v .dropdown-item:focus {
  background: #1b4965 !important;
  color: white !important;
}
.cid-uUYbZAGK1v .dropdown-item:hover span {
  color: white;
}
.cid-uUYbZAGK1v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uUYbZAGK1v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uUYbZAGK1v .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uUYbZAGK1v .nav-link {
  position: relative;
}
.cid-uUYbZAGK1v .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uUYbZAGK1v .dropdown-menu,
.cid-uUYbZAGK1v .navbar.opened {
  background: #f9fdfd !important;
}
.cid-uUYbZAGK1v .nav-item:focus,
.cid-uUYbZAGK1v .nav-link:focus {
  outline: none;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUYbZAGK1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUYbZAGK1v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUYbZAGK1v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUYbZAGK1v .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f9fdfd;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .navbar.opened {
  transition: all 0.3s;
}
.cid-uUYbZAGK1v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uUYbZAGK1v .navbar .navbar-logo img {
  width: auto;
}
.cid-uUYbZAGK1v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uUYbZAGK1v .navbar.collapsed {
  justify-content: center;
}
.cid-uUYbZAGK1v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUYbZAGK1v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUYbZAGK1v .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-uUYbZAGK1v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUYbZAGK1v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uUYbZAGK1v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uUYbZAGK1v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUYbZAGK1v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUYbZAGK1v .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-uUYbZAGK1v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUYbZAGK1v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUYbZAGK1v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUYbZAGK1v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uUYbZAGK1v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUYbZAGK1v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uUYbZAGK1v .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUYbZAGK1v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUYbZAGK1v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #001819;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #1b4965;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-caption:hover {
  color: #1b4965 !important;
}
.cid-uUYbZAGK1v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUYbZAGK1v .dropdown-item.active,
.cid-uUYbZAGK1v .dropdown-item:active {
  background-color: transparent;
}
.cid-uUYbZAGK1v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUYbZAGK1v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUYbZAGK1v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9fdfd;
}
.cid-uUYbZAGK1v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUYbZAGK1v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUYbZAGK1v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uUYbZAGK1v .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uUYbZAGK1v .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uUYbZAGK1v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #001819;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUYbZAGK1v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUYbZAGK1v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUYbZAGK1v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uUYbZAGK1v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uUYbZAGK1v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUYbZAGK1v .navbar {
    height: 60px;
  }
  .cid-uUYbZAGK1v .navbar.opened {
    height: auto;
  }
  .cid-uUYbZAGK1v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uUYbZAGK1v .navbar {
    min-height: 105px;
  }
}
.cid-uUYbZAGK1v .nav-link,
.cid-uUYbZAGK1v .dropdown-item {
  color: #001819;
}
.cid-uUZZ7O2MVT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #003466;
  background-image: radial-gradient(circle farthest-side at 0 150%, #1b4965, #003466);
}
.cid-uUZZ7O2MVT .item:focus,
.cid-uUZZ7O2MVT span:focus {
  outline: none;
}
.cid-uUZZ7O2MVT .item {
  cursor: pointer;
}
.cid-uUZZ7O2MVT .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uUZZ7O2MVT .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uUZZ7O2MVT .grid-container-1,
.cid-uUZZ7O2MVT .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uUZZ7O2MVT .grid-container-1,
  .cid-uUZZ7O2MVT .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uUZZ7O2MVT .mbr-section-title {
  margin-bottom: 4rem;
  color: #ffffff;
  text-align: center;
}
.cid-uUZZ7O2MVT .content-head {
  max-width: 800px;
}
.cid-uUZZ7O2MVT .container,
.cid-uUZZ7O2MVT .container-fluid {
  overflow: hidden;
}
.cid-uUZZ7O2MVT .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uUZZ7O2MVT .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uUZZ7O2MVT .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uUZZ7O2MVT .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uUZZ7O2MVT .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uUZZ7O2MVT .grid-container-1,
.cid-uUZZ7O2MVT .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uUZZ7O2MVT .grid-container-1 {
  align-items: flex-end;
}
.cid-uUZZ7O2MVT .grid-container-2 {
  align-items: flex-start;
}
.cid-uV03EvzuOu {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uV03EvzuOu .col-form {
    padding-top: 2rem;
  }
  .cid-uV03EvzuOu .col-form .dragArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 29rem;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .cid-uV03EvzuOu .col-form {
    padding-right: 5.75rem;
  }
}
.cid-uV03EvzuOu .col-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uV03EvzuOu .col-img {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uV03EvzuOu .col-img {
    padding-left: 5.75rem;
  }
}
.cid-uV03EvzuOu .mbr-text,
.cid-uV03EvzuOu .mbr-section-btn {
  color: #232323;
}
.cid-uV03EvzuOu .mbr-text,
.cid-uV03EvzuOu .mbr-section-title {
  color: #002549;
  width: 100%;
  margin-bottom: 2rem !important;
}
@media (max-width: 991px) {
  .cid-uV03EvzuOu .mbr-text,
  .cid-uV03EvzuOu .mbr-section-title {
    text-align: center;
  }
}
.cid-uV03EvzuOu .form-group {
  padding: 0 !important;
  max-width: 20rem;
}
.cid-uV03EvzuOu .form-group input {
  color: #002549;
}
.cid-uV03EvzuOu .form-group input::placeholder {
  color: #C3AFAD;
}
.cid-uV03EvzuOu .form-group input::-moz-placeholder {
  color: #C3AFAD;
}
.cid-uV03EvzuOu .form-group input:-moz-placeholder {
  color: #C3AFAD;
}
.cid-uV03EvzuOu .form-group input:-ms-input-placeholder {
  color: #C3AFAD;
}
.cid-uV03EvzuOu .form-control {
  font-size: 1.2rem !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid transparent;
  border-radius: 1.25rem;
  background-color: #fff;
  text-align: center;
}
.cid-uV03EvzuOu .mbr-section-btn {
  padding: 0 !important;
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
  max-width: 20rem;
}
.cid-uV03EvzuOu .mbr-section-btn .btn {
  width: 100%;
}
.cid-uV03EvzuOu a.btn {
  height: 100%;
  margin: 0;
  padding: 14px 40px;
}
.cid-uV03EvzuOu .book-page1 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #ffffff;
  background-image: linear-gradient(135deg, #f0edeb, #ffffff);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uV03EvzuOu .book-page2 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #ffffff;
  background-image: linear-gradient(315deg, #d4c5c0, #ffffff);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uV03EvzuOu .image-wrapper {
  justify-content: center;
  display: flex;
  transition: 0.5s all;
  transform-style: preserve-3d;
  position: relative;
  z-index: 5;
  width: max-content;
}
.cid-uV03EvzuOu .image-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 4;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uV03EvzuOu .image-wrapper:hover {
  transform: rotateZ(-4deg);
}
.cid-uV03EvzuOu .image-wrapper:hover img {
  transform: rotateZ(0);
}
.cid-uV03EvzuOu .image-wrapper:hover .book-page1 {
  transform: rotateZ(4deg);
}
.cid-uV03EvzuOu .image-wrapper:hover .book-page2 {
  transform: rotateZ(1.8deg);
}
@media (max-width: 991px) {
  .cid-uV03EvzuOu .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-uV03EvzuOu .justify-content-center {
  align-items: center;
}
.cid-uUYbZBkDl9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9fdfd;
  overflow: hidden;
}
.cid-uUYbZBkDl9 .mbr-text {
  color: #002549;
}
.cid-uUYbZBkDl9 .media-container-row .mbr-text {
  color: #001819;
  text-align: center;
}
