.btn {
  border-width: 2px;
}
body {
  font-family: Epilogue;
}
.display-1 {
  font-family: 'Epilogue', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-2 {
  font-family: 'Epilogue', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Epilogue', sans-serif;
  font-size: 2.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.2rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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.8rem 1.8rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #144774 !important;
}
.bg-success {
  background-color: #64bf46 !important;
}
.bg-info {
  background-color: #ec0424 !important;
}
.bg-warning {
  background-color: #ff6a00 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #144774 !important;
  border-color: #144774 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #071a2a !important;
  border-color: #071a2a !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #071a2a !important;
  border-color: #071a2a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #30c7bf !important;
  border-color: #30c7bf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #1f817c !important;
  border-color: #1f817c !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1f817c !important;
  border-color: #1f817c !important;
}
.btn-info,
.btn-info:active {
  background-color: #ec0424 !important;
  border-color: #ec0424 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #970317 !important;
  border-color: #970317 !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #970317 !important;
  border-color: #970317 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64bf46 !important;
  border-color: #64bf46 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #42812d !important;
  border-color: #42812d !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #42812d !important;
  border-color: #42812d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff6a00 !important;
  border-color: #ff6a00 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a84600 !important;
  border-color: #a84600 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a84600 !important;
  border-color: #a84600 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.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: none;
}
.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: none;
}
.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: none;
}
.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: #144774;
  color: #144774;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #144774 !important;
  border-color: #144774 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #144774 !important;
  border-color: #144774 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #30c7bf;
  color: #30c7bf;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #30c7bf !important;
  border-color: #30c7bf !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #30c7bf !important;
  border-color: #30c7bf !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ec0424;
  color: #ec0424;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #ec0424 !important;
  border-color: #ec0424 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ec0424 !important;
  border-color: #ec0424 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #64bf46;
  color: #64bf46;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #64bf46 !important;
  border-color: #64bf46 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #64bf46 !important;
  border-color: #64bf46 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff6a00;
  color: #ff6a00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #ff6a00 !important;
  border-color: #ff6a00 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6a00 !important;
  border-color: #ff6a00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !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: #144774 !important;
}
.text-secondary {
  color: #30c7bf !important;
}
.text-success {
  color: #64bf46 !important;
}
.text-info {
  color: #ec0424 !important;
}
.text-warning {
  color: #ff6a00 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #05121d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1c7570 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3c7629 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #880215 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #994000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #144774;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ec0424;
}
.alert-warning {
  background-color: #ff6a00;
}
.alert-danger {
  background-color: #ffffff;
}
.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: #144774;
  border-color: #144774;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #144774;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2d89db;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3e0a5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #febec7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe1cc;
}
.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: 'Epilogue', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #144774 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #144774;
}
/* 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: #144774;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #144774;
}
.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: #144774;
  border-bottom-color: #144774;
}
.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: #144774 !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: #30c7bf !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='%23144774' %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-tD6d40gCgG {
  z-index: 1000;
  width: 100%;
}
.cid-tD6d40gCgG nav.navbar {
  position: fixed;
}
.cid-tD6d40gCgG .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tD6d40gCgG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD6d40gCgG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD6d40gCgG .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tD6d40gCgG .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-tD6d40gCgG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD6d40gCgG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD6d40gCgG .dropdown-item:hover,
.cid-tD6d40gCgG .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-tD6d40gCgG .dropdown-item:hover span {
  color: white;
}
.cid-tD6d40gCgG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD6d40gCgG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD6d40gCgG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD6d40gCgG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD6d40gCgG .nav-link {
  position: relative;
}
.cid-tD6d40gCgG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tD6d40gCgG .container {
    flex-wrap: nowrap;
  }
}
.cid-tD6d40gCgG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD6d40gCgG .dropdown-menu,
.cid-tD6d40gCgG .navbar.opened {
  background: #ffffff !important;
}
.cid-tD6d40gCgG .nav-item:focus,
.cid-tD6d40gCgG .nav-link:focus {
  outline: none;
}
.cid-tD6d40gCgG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD6d40gCgG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD6d40gCgG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD6d40gCgG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD6d40gCgG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD6d40gCgG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD6d40gCgG .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tD6d40gCgG .navbar.opened {
  transition: all 0.3s;
}
.cid-tD6d40gCgG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD6d40gCgG .navbar .navbar-logo img {
  width: auto;
}
.cid-tD6d40gCgG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD6d40gCgG .navbar.collapsed {
  justify-content: center;
}
.cid-tD6d40gCgG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD6d40gCgG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD6d40gCgG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-tD6d40gCgG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD6d40gCgG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD6d40gCgG .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-tD6d40gCgG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD6d40gCgG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD6d40gCgG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD6d40gCgG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD6d40gCgG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD6d40gCgG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD6d40gCgG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD6d40gCgG .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-tD6d40gCgG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD6d40gCgG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD6d40gCgG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD6d40gCgG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD6d40gCgG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD6d40gCgG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD6d40gCgG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD6d40gCgG .navbar.navbar-short {
  min-height: 70px;
}
.cid-tD6d40gCgG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD6d40gCgG .dropdown-item.active,
.cid-tD6d40gCgG .dropdown-item:active {
  background-color: transparent;
}
.cid-tD6d40gCgG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD6d40gCgG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD6d40gCgG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD6d40gCgG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tD6d40gCgG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD6d40gCgG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD6d40gCgG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD6d40gCgG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD6d40gCgG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD6d40gCgG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-tD6d40gCgG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD6d40gCgG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6d40gCgG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6d40gCgG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD6d40gCgG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6d40gCgG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD6d40gCgG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD6d40gCgG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6d40gCgG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD6d40gCgG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD6d40gCgG .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-tD6d40gCgG .navbar {
    height: 80px;
  }
  .cid-tD6d40gCgG .navbar.opened {
    height: auto;
  }
  .cid-tD6d40gCgG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCIhUH1c7T {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCIhUH1c7T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCIhUH1c7T .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-uCIhUH1c7T .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uCIhUH1c7T .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uCIhUH1c7T .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uCIhUH1c7T .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uCIhUH1c7T .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCIhUH1c7T .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uCIhUH1c7T .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCIhUH1c7T .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCIhUH1c7T .btn-wrapper {
  margin-top: -15%;
}
.cid-uCIhUH1c7T .mbr-section-title {
  color: #272b2e;
}
.cid-uCIhUH1c7T .mbr-text,
.cid-uCIhUH1c7T .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-uCIhUH1c7T .mbr-section-title,
.cid-uCIhUH1c7T .mbr-section-btn,
.cid-uCIhUH1c7T .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-uCYusZQUuV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCYusZQUuV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCYusZQUuV .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-uCYusZQUuV .container {
    padding: 0 16px;
  }
}
.cid-uCYusZQUuV .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uCYusZQUuV .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uCYusZQUuV .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCYusZQUuV .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uCYusZQUuV .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uCYusZQUuV .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uCYusZQUuV .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uCYusZQUuV .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-uCYusZQUuV .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uCYusZQUuV .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-uCYusZQUuV .mbr-section-title {
  color: #ec0424;
}
.cid-uCYusZQUuV .mbr-desc {
  color: #08323C;
}
.cid-uCYusZQUuV .mbr-text {
  color: #144774;
}
.cid-uCYusZQUuV .mbr-desc,
.cid-uCYusZQUuV .mbr-section-btn {
  color: #144774;
}
.cid-vaOZ9aU2iJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaOZ9aU2iJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaOZ9aU2iJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaOZ9aU2iJ .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaOZ9aU2iJ .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vaOZ9aU2iJ .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vaOZ9aU2iJ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vaOZ9aU2iJ .panel-group .card {
  position: relative;
  background-color: #ffffff;
  border: none;
  transition: all 0.3s ease-in-out;
  margin-top: 16px;
  overflow: hidden;
}
.cid-vaOZ9aU2iJ .panel-group .card:hover {
  background-color: #e5e5e5;
}
.cid-vaOZ9aU2iJ .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaOZ9aU2iJ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaOZ9aU2iJ .panel-group .card .card-header .panel-title {
  padding: 16px 16px 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vaOZ9aU2iJ .panel-group .card .card-header .panel-title {
    padding: 16px;
  }
}
.cid-vaOZ9aU2iJ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-vaOZ9aU2iJ .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #ec0424;
}
.cid-vaOZ9aU2iJ .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-vaOZ9aU2iJ .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #e5e5e5;
  padding-bottom: 8px;
}
.cid-vaOZ9aU2iJ .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(45deg);
}
.cid-vaOZ9aU2iJ .panel-group .card .panel-collapse .panel-body {
  padding: 0 16px 16px 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-vaOZ9aU2iJ .panel-group .card .panel-collapse .panel-body {
    padding: 0 16px 16px 16px;
  }
}
.cid-vaOZ9aU2iJ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-vaOZ9aU2iJ .panel-group .card .collapse.show .panel-body {
  background-color: #e5e5e5;
}
.cid-vaOZ9aU2iJ .mbr-section-title {
  color: #23537e;
  text-align: center;
}
.cid-vaOZ9aU2iJ .mbr-text {
  color: #191919;
  text-align: center;
}
.cid-vaOZ9aU2iJ .panel-title-edit {
  color: #23537e;
}
.cid-vaOZ9aU2iJ .panel-text {
  color: #191919;
}
.cid-v7wjIJOesa {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7wjIJOesa img {
  object-fit: cover;
}
.cid-v7wjIJOesa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wjIJOesa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wjIJOesa .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-v7wjIJOesa .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v7wjIJOesa .content-wrapper .title-wrap .mbr-section-title span {
  color: #ec0424;
}
.cid-v7wjIJOesa .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7wjIJOesa .image-wrapper img {
    height: 350px;
  }
}
.cid-v7wjIJOesa .mbr-section-title {
  color: #404349;
}
.cid-v7wjIJOesa .mbr-desc {
  color: #b19a7c;
}
.cid-v7wjIJOesa .mbr-text {
  color: #404349;
}
.cid-v7wjIJOesa .mbr-section-title,
.cid-v7wjIJOesa .title-wrap {
  color: #144774;
  text-align: center;
}
.cid-vaarPwL9JJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-vaarPwL9JJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaarPwL9JJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaarPwL9JJ::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #ffffff;
  pointer-events: none;
}
.cid-vaarPwL9JJ .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-vaarPwL9JJ .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px dotted #ffffff;
  pointer-events: none;
}
.cid-vaarPwL9JJ .content-wrapper .border_1 {
  left: 0;
}
.cid-vaarPwL9JJ .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vaarPwL9JJ .content-wrapper .border_3 {
  left: 50%;
}
.cid-vaarPwL9JJ .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vaarPwL9JJ .content-wrapper .border_5 {
  left: 100%;
}
.cid-vaarPwL9JJ .content-wrapper .content-wrap {
  margin: 0;
}
.cid-vaarPwL9JJ .content-wrapper .card {
  position: relative;
  z-index: 1;
  padding: 0;
}
.cid-vaarPwL9JJ .content-wrapper .title-wrapper {
  margin-bottom: 120px;
  padding: 0 24px;
}
@media (max-width: 1440px) {
  .cid-vaarPwL9JJ .content-wrapper .title-wrapper {
    margin-bottom: 80px;
  }
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .content-wrapper .title-wrapper {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .content-wrapper .title-wrapper {
    padding: 0 16px;
  }
}
.cid-vaarPwL9JJ .content-wrapper .title-wrapper .mbr-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  animation: none;
}
.cid-vaarPwL9JJ .content-wrapper .text-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .content-wrapper .text-wrapper {
    padding: 0 16px;
  }
}
.cid-vaarPwL9JJ .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-vaarPwL9JJ .content-wrapper .card-wrap {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .content-wrapper .card-wrap {
    padding: 0 16px;
  }
}
.cid-vaarPwL9JJ .mbr-section-title,
.cid-vaarPwL9JJ .title-wrapper {
  color: #1a1a1a;
  text-align: center;
}
.cid-vaarPwL9JJ .mbr-text {
  color: #23537e;
}
.cid-vaarPwL9JJ .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaarPwL9JJ .mbr-section-btn {
    text-align: left;
  }
}
.cid-vaarPwL9JJ .mbr-section-title,
.cid-vaarPwL9JJ .mbr-section-btn,
.cid-vaarPwL9JJ .title-wrapper {
  text-align: justify;
  color: #23537e;
}
.cid-vaammwWCUb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vaammwWCUb img {
  object-fit: cover;
}
.cid-vaammwWCUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaammwWCUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaammwWCUb .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-vaammwWCUb .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vaammwWCUb .content-wrapper .title-wrap .mbr-section-title span {
  color: #ec0424;
}
.cid-vaammwWCUb .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vaammwWCUb .image-wrapper img {
    height: 350px;
  }
}
.cid-vaammwWCUb .mbr-section-title {
  color: #404349;
}
.cid-vaammwWCUb .mbr-desc {
  color: #b19a7c;
}
.cid-vaammwWCUb .mbr-text {
  color: #404349;
}
.cid-vaammwWCUb .mbr-section-title,
.cid-vaammwWCUb .title-wrap {
  color: #144774;
  text-align: left;
}
.cid-vaamdqBJkD {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vaamdqBJkD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaamdqBJkD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaamdqBJkD .mbr-section-title {
  color: #144774;
  text-align: left;
}
.cid-vaamdqBJkD .mbr-section-title DIV {
  text-align: left;
}
.cid-vaamdqBJkD .mbr-section-subtitle,
.cid-vaamdqBJkD .mbr-section-btn {
  color: #23537e;
}
.cid-vaOOi9HbQP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  background-image: linear-gradient(180deg, #23537e 0%, #9db2d6 50%, #fafafa 100%);
}
.cid-vaOOi9HbQP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaOOi9HbQP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaOOi9HbQP .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vaOOi9HbQP .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vaOOi9HbQP .card-wrapper {
  padding: 60px 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaOOi9HbQP .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-vaOOi9HbQP .card-wrapper .panel-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .cid-vaOOi9HbQP .card-wrapper .panel-group {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vaOOi9HbQP .card-wrapper .panel-group .content-wrap:nth-child(2) {
    margin-top: 20px;
  }
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  margin-top: 20px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 20px -8px #e9e9e9;
  background-color: #ffffff;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title {
    padding: 20px;
  }
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #23537e;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) {
  padding-bottom: 20px;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec0424;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ec0424;
  transform: rotate(-180deg);
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-vaOOi9HbQP .card-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 20px;
  }
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: 0;
}
.cid-vaOOi9HbQP .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  opacity: 1;
}
.cid-vaOOi9HbQP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vaOOi9HbQP .panel-title-edit {
  color: #23537e;
}
.cid-vaOOi9HbQP .panel-text {
  color: #565661;
}
.cid-vaOOi9HbQP .panel-text,
.cid-vaOOi9HbQP .panel-body {
  color: #000000;
}
.cid-vaKfDXaMUQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vaKfDXaMUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaKfDXaMUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaKfDXaMUQ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-vaKfDXaMUQ .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vaKfDXaMUQ .content-wrapper .title-wrap .mbr-section-title span {
  color: #ec0424;
}
.cid-vaKfDXaMUQ .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vaKfDXaMUQ .image-wrapper img {
    height: 350px;
  }
}
.cid-vaKfDXaMUQ .mbr-section-title {
  color: #404349;
}
.cid-vaKfDXaMUQ .mbr-desc {
  color: #b19a7c;
}
.cid-vaKfDXaMUQ .mbr-text {
  color: #404349;
}
.cid-vaKfDXaMUQ .mbr-section-title,
.cid-vaKfDXaMUQ .title-wrap {
  color: #ec0424;
  text-align: center;
}
.cid-vaao9laG2a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaao9laG2a .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaao9laG2a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaao9laG2a .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vaao9laG2a .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaao9laG2a .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaao9laG2a .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaao9laG2a .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vaao9laG2a .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vaao9laG2a .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vaao9laG2a .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaao9laG2a .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vaao9laG2a .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaao9laG2a .item-title {
  color: #ffffff;
}
.cid-vaao9laG2a .item-text {
  color: #23537e;
}
.cid-vaao9laG2a .item-title,
.cid-vaao9laG2a .mbr-section-btn,
.cid-vaao9laG2a .icon-wrapper {
  color: #23537e;
}
.cid-vaaoVm2908 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaaoVm2908 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaoVm2908 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaoVm2908 .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vaaoVm2908 .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaaoVm2908 .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaaoVm2908 .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaaoVm2908 .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vaaoVm2908 .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vaaoVm2908 .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vaaoVm2908 .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaaoVm2908 .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vaaoVm2908 .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaaoVm2908 .item-title {
  color: #ffffff;
}
.cid-vaaoVm2908 .item-text {
  color: #23537e;
}
.cid-vaaoVm2908 .item-title,
.cid-vaaoVm2908 .mbr-section-btn,
.cid-vaaoVm2908 .icon-wrapper {
  color: #23537e;
}
.cid-vaaoVNasZj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaaoVNasZj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaoVNasZj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaoVNasZj .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vaaoVNasZj .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaaoVNasZj .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaaoVNasZj .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaaoVNasZj .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vaaoVNasZj .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vaaoVNasZj .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vaaoVNasZj .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaaoVNasZj .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vaaoVNasZj .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaaoVNasZj .item-title {
  color: #ffffff;
}
.cid-vaaoVNasZj .item-text {
  color: #23537e;
}
.cid-vaaoVNasZj .item-title,
.cid-vaaoVNasZj .mbr-section-btn,
.cid-vaaoVNasZj .icon-wrapper {
  color: #23537e;
}
.cid-tD6dhWWhzV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tD6dhWWhzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6dhWWhzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6dhWWhzV .contects {
  line-height: 2;
}
.cid-tD6dhWWhzV .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-tD6dhWWhzV .mbr-text {
  color: #144774;
}
.cid-uGz3FY2lYk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uGz3FY2lYk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGz3FY2lYk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGz3FY2lYk .mbr-section-subtitle,
.cid-uGz3FY2lYk .mbr-section-btn {
  color: #144774;
}
.cid-tD6dgVKcZB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-tD6dgVKcZB .container {
  max-width: 1000px;
}
.cid-tD6dgVKcZB img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tD6dgVKcZB .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-uXlkWkBElE {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uXlkWkBElE .carousel {
  z-index: 2;
  position: relative;
}
.cid-uXlkWkBElE .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-uXlkWkBElE .user {
  padding: 0 !important;
}
.cid-uXlkWkBElE .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-uXlkWkBElE .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uXlkWkBElE .carousel-item.active,
.cid-uXlkWkBElE .carousel-item-next,
.cid-uXlkWkBElE .carousel-item-prev {
  display: flex;
}
.cid-uXlkWkBElE .user_name {
  margin: 0;
}
.cid-uXlkWkBElE .carousel-controls a {
  font-size: 2rem;
}
.cid-uXlkWkBElE .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-uXlkWkBElE .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-uXlkWkBElE ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-uXlkWkBElE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-uXlkWkBElE .carousel-indicators li:hover {
  opacity: 1;
}
.cid-uXlkWkBElE .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-uXlkWkBElE .user_text {
  color: #144774;
}
.cid-uXlkWkBElE .user_desk {
  color: #23537e;
}
.cid-uXlkWkBElE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXlkWkBElE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXlkWkBElE .title,
.cid-uXlkWkBElE .line-align {
  color: #144774;
}
.cid-vaP2IgEA5m {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaP2IgEA5m .mbr-text {
  color: #767676;
}
.cid-vaP2IgEA5m .mbr-section-subtitle {
  color: #767676;
}
.cid-vaP2IgEA5m .title .num {
  width: 100%;
  display: block;
}
.cid-vaP2IgEA5m .title .card-title {
  z-index: 1;
}
.cid-vaP2IgEA5m .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaP2IgEA5m .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaP2IgEA5m * {
    text-align: left !important;
  }
  .cid-vaP2IgEA5m .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaP2IgEA5m .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaP2IgEA5m .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaP2IgEA5m .mbr-section-title,
.cid-vaP2IgEA5m .card-box {
  color: #144774;
}
.cid-vaP2IgEA5m .card-text {
  color: #000000;
}
.cid-vaP2IgEA5m .card-title,
.cid-vaP2IgEA5m .card-img {
  color: #144774;
}
.cid-uDqnybizHX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uDqnybizHX .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-uDqnybizHX .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uDqnybizHX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uDqnybizHX .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uDqnybizHX .embla__slide .slide-content {
  width: 100%;
}
.cid-uDqnybizHX .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-uDqnybizHX .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uDqnybizHX .embla__button--next,
.cid-uDqnybizHX .embla__button--prev {
  display: flex;
}
.cid-uDqnybizHX .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uDqnybizHX .embla__button:hover {
  opacity: .5 !important;
}
.cid-uDqnybizHX .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uDqnybizHX .embla__button.embla__button--next {
  right: 0;
}
.cid-uDqnybizHX .embla {
  position: relative;
  width: 100%;
}
.cid-uDqnybizHX .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uDqnybizHX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uDqnybizHX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uDqnybizHX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-veqw2mHZ0C {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veqw2mHZ0C .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veqw2mHZ0C .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veqw2mHZ0C .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veqw2mHZ0C .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veqw2mHZ0C .embla__slide .slide-content {
  width: 100%;
}
.cid-veqw2mHZ0C .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veqw2mHZ0C .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veqw2mHZ0C .embla__button--next,
.cid-veqw2mHZ0C .embla__button--prev {
  display: flex;
}
.cid-veqw2mHZ0C .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-veqw2mHZ0C .embla__button:hover {
  opacity: .5 !important;
}
.cid-veqw2mHZ0C .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veqw2mHZ0C .embla__button.embla__button--next {
  right: 0;
}
.cid-veqw2mHZ0C .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-veqw2mHZ0C .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veqw2mHZ0C .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veqw2mHZ0C .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veqw2mHZ0C .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uQXeHmn8uC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQXeHmn8uC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQXeHmn8uC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQXeHmn8uC .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uQXeHmn8uC .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQXeHmn8uC .content-wrapper .title-wrap .mbr-section-title span {
  color: #ec0424;
}
.cid-uQXeHmn8uC .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQXeHmn8uC .image-wrapper img {
    height: 350px;
  }
}
.cid-uQXeHmn8uC .mbr-section-title {
  color: #404349;
}
.cid-uQXeHmn8uC .mbr-desc {
  color: #b19a7c;
}
.cid-uQXeHmn8uC .mbr-text {
  color: #404349;
}
.cid-uQXeHmn8uC .mbr-section-title,
.cid-uQXeHmn8uC .title-wrap {
  color: #144774;
  text-align: center;
}
.cid-uQXfsZqpRO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uQXfsZqpRO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQXfsZqpRO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQXfsZqpRO p {
  line-height: 2;
}
.cid-uQXfsZqpRO a:hover {
  text-decoration: underline;
}
.cid-uQXfsZqpRO .mbr-text {
  color: #144774;
}
.cid-uQXfsZqpRO .mbr-section-title {
  color: #144774;
}
.cid-uGz3EnoMKG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGz3EnoMKG .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-uGz3EnoMKG .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-uGz3EnoMKG button[type="submit"] {
  border-radius: 100px;
}
.cid-uGz3EnoMKG a[type="submit"],
.cid-uGz3EnoMKG button[type="submit"] {
  margin-top: 0;
}
.cid-uGz3EnoMKG .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-uGz3EnoMKG mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-uGz3EnoMKG .row .spinner-border,
.cid-uGz3EnoMKG .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-uGz3EnoMKG .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-uCRLIT3CnZ {
  z-index: 1000;
  width: 100%;
}
.cid-uCRLIT3CnZ nav.navbar {
  position: fixed;
}
.cid-uCRLIT3CnZ .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCRLIT3CnZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCRLIT3CnZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCRLIT3CnZ .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCRLIT3CnZ .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-uCRLIT3CnZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCRLIT3CnZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCRLIT3CnZ .dropdown-item:hover,
.cid-uCRLIT3CnZ .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-uCRLIT3CnZ .dropdown-item:hover span {
  color: white;
}
.cid-uCRLIT3CnZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCRLIT3CnZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCRLIT3CnZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCRLIT3CnZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCRLIT3CnZ .nav-link {
  position: relative;
}
.cid-uCRLIT3CnZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCRLIT3CnZ .container {
    flex-wrap: nowrap;
  }
}
.cid-uCRLIT3CnZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCRLIT3CnZ .dropdown-menu,
.cid-uCRLIT3CnZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uCRLIT3CnZ .nav-item:focus,
.cid-uCRLIT3CnZ .nav-link:focus {
  outline: none;
}
.cid-uCRLIT3CnZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCRLIT3CnZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCRLIT3CnZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCRLIT3CnZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCRLIT3CnZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCRLIT3CnZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCRLIT3CnZ .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uCRLIT3CnZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uCRLIT3CnZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCRLIT3CnZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uCRLIT3CnZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCRLIT3CnZ .navbar.collapsed {
  justify-content: center;
}
.cid-uCRLIT3CnZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCRLIT3CnZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCRLIT3CnZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uCRLIT3CnZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCRLIT3CnZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCRLIT3CnZ .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-uCRLIT3CnZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCRLIT3CnZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCRLIT3CnZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCRLIT3CnZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCRLIT3CnZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCRLIT3CnZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCRLIT3CnZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCRLIT3CnZ .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-uCRLIT3CnZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCRLIT3CnZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCRLIT3CnZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCRLIT3CnZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCRLIT3CnZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCRLIT3CnZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCRLIT3CnZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCRLIT3CnZ .navbar.navbar-short {
  min-height: 70px;
}
.cid-uCRLIT3CnZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCRLIT3CnZ .dropdown-item.active,
.cid-uCRLIT3CnZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uCRLIT3CnZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCRLIT3CnZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCRLIT3CnZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCRLIT3CnZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCRLIT3CnZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCRLIT3CnZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCRLIT3CnZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCRLIT3CnZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCRLIT3CnZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCRLIT3CnZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-uCRLIT3CnZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCRLIT3CnZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCRLIT3CnZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCRLIT3CnZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCRLIT3CnZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCRLIT3CnZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCRLIT3CnZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCRLIT3CnZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCRLIT3CnZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCRLIT3CnZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCRLIT3CnZ .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-uCRLIT3CnZ .navbar {
    height: 80px;
  }
  .cid-uCRLIT3CnZ .navbar.opened {
    height: auto;
  }
  .cid-uCRLIT3CnZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXCmvUWfmo {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXCmvUWfmo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXCmvUWfmo .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-uXCmvUWfmo .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uXCmvUWfmo .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uXCmvUWfmo .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uXCmvUWfmo .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uXCmvUWfmo .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uXCmvUWfmo .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uXCmvUWfmo .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uXCmvUWfmo .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uXCmvUWfmo .btn-wrapper {
  margin-top: -15%;
}
.cid-uXCmvUWfmo .mbr-section-title {
  color: #272b2e;
}
.cid-uXCmvUWfmo .mbr-text,
.cid-uXCmvUWfmo .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-uXCmvUWfmo .mbr-section-title,
.cid-uXCmvUWfmo .mbr-section-btn,
.cid-uXCmvUWfmo .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-uXCmwJ1tCB {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uXCmwJ1tCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXCmwJ1tCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXCmwJ1tCB .mbr-section-title {
  color: #ec0424;
}
.cid-uXCmwJ1tCB .mbr-section-subtitle,
.cid-uXCmwJ1tCB .mbr-section-btn {
  color: #144774;
}
.cid-uVVrL7ruIX {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uVVrL7ruIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVrL7ruIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVVrL7ruIX .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uVVrL7ruIX .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVVrL7ruIX .content-wrapper .title-wrap .mbr-section-title span {
  color: #ec0424;
}
.cid-uVVrL7ruIX .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVVrL7ruIX .image-wrapper img {
    height: 350px;
  }
}
.cid-uVVrL7ruIX .mbr-section-title {
  color: #404349;
}
.cid-uVVrL7ruIX .mbr-desc {
  color: #b19a7c;
}
.cid-uVVrL7ruIX .mbr-text {
  color: #404349;
}
.cid-uVVrL7ruIX .mbr-section-title,
.cid-uVVrL7ruIX .title-wrap {
  color: #144774;
  text-align: center;
}
.cid-uCRQ2dcoSE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCRQ2dcoSE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCRQ2dcoSE .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uCRQ2dcoSE .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCRQ2dcoSE .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uCRQ2dcoSE a {
  font-weight: 600;
}
.cid-uCRQ2dcoSE a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uCRQ2dcoSE .col-lg-3,
  .cid-uCRQ2dcoSE .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uCRQ2dcoSE .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uCRQ2dcoSE .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uCRQ2dcoSE h5 {
  margin: 0;
}
.cid-uCRQ2dcoSE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCRQ2dcoSE .iconfont-wrapper {
  position: relative;
}
.cid-uCRQ2dcoSE .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uCRQ2dcoSE .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uCRQ2dcoSE .sociconfont-wrapper {
  display: flex;
}
.cid-uCRQ2dcoSE .card-title,
.cid-uCRQ2dcoSE .iconfont-wrapper {
  color: #144774;
}
.cid-uCRQ2dcoSE .card-text {
  color: #144774;
}
.cid-uCRQ2dcoSE .mbr-section-title {
  color: #000000;
}
.cid-uCRQ2dcoSE .main-title,
.cid-uCRQ2dcoSE .iconfont-wrapper {
  text-align: left;
  color: #ec0424;
}
.cid-uH7IilHmCF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH7IilHmCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH7IilHmCF .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uH7IilHmCF .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uH7IilHmCF .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uH7IilHmCF a {
  font-weight: 600;
}
.cid-uH7IilHmCF a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uH7IilHmCF .col-lg-3,
  .cid-uH7IilHmCF .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uH7IilHmCF .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uH7IilHmCF .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uH7IilHmCF h5 {
  margin: 0;
}
.cid-uH7IilHmCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH7IilHmCF .iconfont-wrapper {
  position: relative;
}
.cid-uH7IilHmCF .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uH7IilHmCF .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uH7IilHmCF .sociconfont-wrapper {
  display: flex;
}
.cid-uH7IilHmCF .card-title,
.cid-uH7IilHmCF .iconfont-wrapper {
  color: #a1a1a1;
}
.cid-uH7IilHmCF .card-text {
  color: #144774;
}
.cid-uH7IilHmCF .mbr-section-title {
  color: #000000;
}
.cid-uH7IilHmCF .main-title,
.cid-uH7IilHmCF .iconfont-wrapper {
  text-align: left;
  color: #ec0424;
}
.cid-uHnNY57wm2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHnNY57wm2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHnNY57wm2 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uHnNY57wm2 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHnNY57wm2 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uHnNY57wm2 a {
  font-weight: 600;
}
.cid-uHnNY57wm2 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uHnNY57wm2 .col-lg-3,
  .cid-uHnNY57wm2 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uHnNY57wm2 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uHnNY57wm2 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uHnNY57wm2 h5 {
  margin: 0;
}
.cid-uHnNY57wm2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHnNY57wm2 .iconfont-wrapper {
  position: relative;
}
.cid-uHnNY57wm2 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uHnNY57wm2 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uHnNY57wm2 .sociconfont-wrapper {
  display: flex;
}
.cid-uHnNY57wm2 .card-title,
.cid-uHnNY57wm2 .iconfont-wrapper {
  color: #a1a1a1;
}
.cid-uHnNY57wm2 .card-text {
  color: #144774;
}
.cid-uHnNY57wm2 .mbr-section-title {
  color: #000000;
}
.cid-uHnNY57wm2 .main-title,
.cid-uHnNY57wm2 .iconfont-wrapper {
  text-align: left;
  color: #ec0424;
}
.cid-uRwXxv1xNd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uRwXxv1xNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRwXxv1xNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRwXxv1xNd .mbr-section-subtitle,
.cid-uRwXxv1xNd .mbr-section-btn {
  color: #144774;
  text-align: center;
}
.cid-uRwXxv1xNd .mbr-section-title {
  color: #144774;
  text-align: center;
}
.cid-uRwXxv1xNd .mbr-section-subtitle,
.cid-uRwXxv1xNd .mbr-section-btn DIV {
  text-align: left;
}
.cid-uXEf4rKe37 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uXEf4rKe37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXEf4rKe37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXEf4rKe37 .mbr-section-subtitle,
.cid-uXEf4rKe37 .mbr-section-btn {
  color: #144774;
}
.cid-uRwZ4RPyh7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uRwZ4RPyh7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRwZ4RPyh7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRwZ4RPyh7 .mbr-section-subtitle,
.cid-uRwZ4RPyh7 .mbr-section-btn {
  color: #144774;
  text-align: right;
}
.cid-uRwZ4RPyh7 .mbr-section-title {
  color: #144774;
  text-align: center;
}
.cid-uRwZ4RPyh7 .mbr-section-subtitle,
.cid-uRwZ4RPyh7 .mbr-section-btn DIV {
  text-align: center;
}
.cid-uY657rrHhc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uY657rrHhc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY657rrHhc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY657rrHhc .mbr-section-subtitle,
.cid-uY657rrHhc .mbr-section-btn {
  color: #144774;
  text-align: right;
}
.cid-uY657rrHhc .mbr-section-title {
  color: #144774;
  text-align: center;
}
.cid-uY657rrHhc .mbr-section-subtitle,
.cid-uY657rrHhc .mbr-section-btn DIV {
  text-align: center;
}
.cid-uY65Q8SY00 {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uY65Q8SY00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY65Q8SY00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY65Q8SY00 .mbr-section-subtitle,
.cid-uY65Q8SY00 .mbr-section-btn {
  color: #144774;
  text-align: right;
}
.cid-uY65Q8SY00 .mbr-section-title {
  color: #144774;
  text-align: center;
}
.cid-uY65Q8SY00 .mbr-section-subtitle,
.cid-uY65Q8SY00 .mbr-section-btn DIV {
  text-align: center;
}
.cid-uVVolHhrrl {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVVolHhrrl .card-title {
  margin-bottom: 20px;
  color: #144774;
}
.cid-uVVolHhrrl .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #23537e;
}
@media (min-width: 992px) {
  .cid-uVVolHhrrl .google-map {
    margin-left: 17%;
  }
}
.cid-uVVolHhrrl .google-map {
  height: 540px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uVVolHhrrl .google-map {
    margin-bottom: 70px;
  }
}
.cid-uVVolHhrrl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uVVolHhrrl .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-uVVolHhrrl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uVVolHhrrl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uVVolHhrrl .header_box {
  margin-bottom: 40px;
}
.cid-uVVolHhrrl .contact_content {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}
.cid-uVVolHhrrl .card_text {
  display: inline-block;
}
.cid-uVVolHhrrl .iconfont-wrapper {
  margin-right: 15px;
  display: inline-block;
  width: 19px;
  height: 19px;
  font-size: 19px;
  color: #202020;
}
@media (max-width: 767px) {
  .cid-uVVolHhrrl .column_wrap {
    margin-bottom: 29px;
  }
}
.cid-uVVolHhrrl .mbr-text {
  color: #23537e;
}
.cid-uVVolHhrrl .card_text,
.cid-uVVolHhrrl .contact_content {
  color: #144774;
}
.cid-veuEMq73CP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuEMq73CP .container {
  max-width: 1000px;
}
.cid-veuEMq73CP img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuEMq73CP .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va51bIWVtm {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va51bIWVtm .carousel {
  z-index: 2;
  position: relative;
}
.cid-va51bIWVtm .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va51bIWVtm .user {
  padding: 0 !important;
}
.cid-va51bIWVtm .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va51bIWVtm .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va51bIWVtm .carousel-item.active,
.cid-va51bIWVtm .carousel-item-next,
.cid-va51bIWVtm .carousel-item-prev {
  display: flex;
}
.cid-va51bIWVtm .user_name {
  margin: 0;
}
.cid-va51bIWVtm .carousel-controls a {
  font-size: 2rem;
}
.cid-va51bIWVtm .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va51bIWVtm .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va51bIWVtm ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va51bIWVtm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va51bIWVtm .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va51bIWVtm .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va51bIWVtm .user_text {
  color: #144774;
}
.cid-va51bIWVtm .user_desk {
  color: #23537e;
}
.cid-va51bIWVtm .mbr-fallback-image.disabled {
  display: none;
}
.cid-va51bIWVtm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va51bIWVtm .title,
.cid-va51bIWVtm .line-align {
  color: #144774;
}
.cid-vaV3iFC224 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV3iFC224 .mbr-text {
  color: #767676;
}
.cid-vaV3iFC224 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV3iFC224 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV3iFC224 .title .card-title {
  z-index: 1;
}
.cid-vaV3iFC224 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV3iFC224 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV3iFC224 * {
    text-align: left !important;
  }
  .cid-vaV3iFC224 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV3iFC224 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV3iFC224 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV3iFC224 .mbr-section-title,
.cid-vaV3iFC224 .card-box {
  color: #144774;
}
.cid-vaV3iFC224 .card-text {
  color: #000000;
}
.cid-veuEMYs9UE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuEMYs9UE .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuEMYs9UE .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuEMYs9UE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuEMYs9UE .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuEMYs9UE .embla__slide .slide-content {
  width: 100%;
}
.cid-veuEMYs9UE .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuEMYs9UE .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuEMYs9UE .embla__button--next,
.cid-veuEMYs9UE .embla__button--prev {
  display: flex;
}
.cid-veuEMYs9UE .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuEMYs9UE .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuEMYs9UE .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuEMYs9UE .embla__button.embla__button--next {
  right: 0;
}
.cid-veuEMYs9UE .embla {
  position: relative;
  width: 100%;
}
.cid-veuEMYs9UE .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuEMYs9UE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuEMYs9UE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuEMYs9UE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV3j6y49u {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV3j6y49u .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV3j6y49u .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV3j6y49u .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV3j6y49u .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV3j6y49u .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV3j6y49u .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV3j6y49u .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV3j6y49u .embla__button--next,
.cid-vaV3j6y49u .embla__button--prev {
  display: flex;
}
.cid-vaV3j6y49u .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV3j6y49u .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV3j6y49u .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV3j6y49u .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV3j6y49u .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV3j6y49u .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV3j6y49u .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV3j6y49u .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV3j6y49u .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uXCqc4Czb5 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXCqc4Czb5 .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-uXCqc4Czb5 .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-uXCqc4Czb5 button[type="submit"] {
  border-radius: 100px;
}
.cid-uXCqc4Czb5 a[type="submit"],
.cid-uXCqc4Czb5 button[type="submit"] {
  margin-top: 0;
}
.cid-uXCqc4Czb5 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-uXCqc4Czb5 mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-uXCqc4Czb5 .row .spinner-border,
.cid-uXCqc4Czb5 .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-uXCqc4Czb5 .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-uCS9B00IfY {
  z-index: 1000;
  width: 100%;
}
.cid-uCS9B00IfY nav.navbar {
  position: fixed;
}
.cid-uCS9B00IfY .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCS9B00IfY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCS9B00IfY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCS9B00IfY .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCS9B00IfY .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-uCS9B00IfY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCS9B00IfY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCS9B00IfY .dropdown-item:hover,
.cid-uCS9B00IfY .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-uCS9B00IfY .dropdown-item:hover span {
  color: white;
}
.cid-uCS9B00IfY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCS9B00IfY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCS9B00IfY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCS9B00IfY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCS9B00IfY .nav-link {
  position: relative;
}
.cid-uCS9B00IfY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCS9B00IfY .container {
    flex-wrap: nowrap;
  }
}
.cid-uCS9B00IfY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCS9B00IfY .dropdown-menu,
.cid-uCS9B00IfY .navbar.opened {
  background: #ffffff !important;
}
.cid-uCS9B00IfY .nav-item:focus,
.cid-uCS9B00IfY .nav-link:focus {
  outline: none;
}
.cid-uCS9B00IfY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCS9B00IfY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCS9B00IfY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCS9B00IfY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCS9B00IfY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCS9B00IfY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCS9B00IfY .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uCS9B00IfY .navbar.opened {
  transition: all 0.3s;
}
.cid-uCS9B00IfY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCS9B00IfY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCS9B00IfY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCS9B00IfY .navbar.collapsed {
  justify-content: center;
}
.cid-uCS9B00IfY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCS9B00IfY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCS9B00IfY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uCS9B00IfY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCS9B00IfY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCS9B00IfY .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-uCS9B00IfY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCS9B00IfY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCS9B00IfY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCS9B00IfY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCS9B00IfY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCS9B00IfY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCS9B00IfY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCS9B00IfY .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-uCS9B00IfY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCS9B00IfY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCS9B00IfY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCS9B00IfY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCS9B00IfY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCS9B00IfY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCS9B00IfY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCS9B00IfY .navbar.navbar-short {
  min-height: 70px;
}
.cid-uCS9B00IfY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCS9B00IfY .dropdown-item.active,
.cid-uCS9B00IfY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCS9B00IfY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCS9B00IfY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCS9B00IfY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCS9B00IfY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCS9B00IfY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCS9B00IfY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCS9B00IfY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCS9B00IfY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCS9B00IfY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCS9B00IfY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-uCS9B00IfY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCS9B00IfY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCS9B00IfY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCS9B00IfY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCS9B00IfY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCS9B00IfY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCS9B00IfY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCS9B00IfY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCS9B00IfY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCS9B00IfY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCS9B00IfY .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-uCS9B00IfY .navbar {
    height: 80px;
  }
  .cid-uCS9B00IfY .navbar.opened {
    height: auto;
  }
  .cid-uCS9B00IfY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXCrsd2ejL {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXCrsd2ejL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXCrsd2ejL .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-uXCrsd2ejL .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uXCrsd2ejL .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uXCrsd2ejL .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uXCrsd2ejL .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uXCrsd2ejL .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uXCrsd2ejL .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uXCrsd2ejL .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uXCrsd2ejL .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uXCrsd2ejL .btn-wrapper {
  margin-top: -15%;
}
.cid-uXCrsd2ejL .mbr-section-title {
  color: #272b2e;
}
.cid-uXCrsd2ejL .mbr-text,
.cid-uXCrsd2ejL .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-uXCrsd2ejL .mbr-section-title,
.cid-uXCrsd2ejL .mbr-section-btn,
.cid-uXCrsd2ejL .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-uXCrp9Pi8V {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uXCrp9Pi8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXCrp9Pi8V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXCrp9Pi8V .mbr-section-title {
  color: #ec0424;
  text-align: left;
}
.cid-uXCrp9Pi8V .mbr-section-subtitle,
.cid-uXCrp9Pi8V .mbr-section-btn {
  color: #144774;
  text-align: left;
}
.cid-uCSaJhAWq9 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uCSaJhAWq9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCSaJhAWq9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCSaJhAWq9 img {
  object-fit: cover;
  width: 300px;
  margin: 0 auto;
  height: 300px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uCSaJhAWq9 img {
    width: 200px;
    height: 200px;
  }
}
.cid-uCSaJhAWq9 a {
  text-decoration: underline;
  font-weight: bold;
}
.cid-uCSaJhAWq9 .mbr-text,
.cid-uCSaJhAWq9 .mbr-section-btn {
  color: #144774;
}
.cid-uXEeVm6bo6 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uXEeVm6bo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXEeVm6bo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXEeVm6bo6 .mbr-section-subtitle,
.cid-uXEeVm6bo6 .mbr-section-btn {
  color: #144774;
}
.cid-veuECOeoms {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuECOeoms .container {
  max-width: 1000px;
}
.cid-veuECOeoms img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuECOeoms .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va513abJNU {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va513abJNU .carousel {
  z-index: 2;
  position: relative;
}
.cid-va513abJNU .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va513abJNU .user {
  padding: 0 !important;
}
.cid-va513abJNU .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va513abJNU .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va513abJNU .carousel-item.active,
.cid-va513abJNU .carousel-item-next,
.cid-va513abJNU .carousel-item-prev {
  display: flex;
}
.cid-va513abJNU .user_name {
  margin: 0;
}
.cid-va513abJNU .carousel-controls a {
  font-size: 2rem;
}
.cid-va513abJNU .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va513abJNU .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va513abJNU ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va513abJNU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va513abJNU .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va513abJNU .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va513abJNU .user_text {
  color: #144774;
}
.cid-va513abJNU .user_desk {
  color: #23537e;
}
.cid-va513abJNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-va513abJNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va513abJNU .title,
.cid-va513abJNU .line-align {
  color: #144774;
}
.cid-vaV32Fovqe {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV32Fovqe .mbr-text {
  color: #767676;
}
.cid-vaV32Fovqe .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV32Fovqe .title .num {
  width: 100%;
  display: block;
}
.cid-vaV32Fovqe .title .card-title {
  z-index: 1;
}
.cid-vaV32Fovqe .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV32Fovqe .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV32Fovqe * {
    text-align: left !important;
  }
  .cid-vaV32Fovqe .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV32Fovqe .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV32Fovqe .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV32Fovqe .mbr-section-title,
.cid-vaV32Fovqe .card-box {
  color: #144774;
}
.cid-vaV32Fovqe .card-text {
  color: #000000;
}
.cid-veuEDf1WeN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuEDf1WeN .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuEDf1WeN .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuEDf1WeN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuEDf1WeN .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuEDf1WeN .embla__slide .slide-content {
  width: 100%;
}
.cid-veuEDf1WeN .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuEDf1WeN .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuEDf1WeN .embla__button--next,
.cid-veuEDf1WeN .embla__button--prev {
  display: flex;
}
.cid-veuEDf1WeN .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuEDf1WeN .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuEDf1WeN .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuEDf1WeN .embla__button.embla__button--next {
  right: 0;
}
.cid-veuEDf1WeN .embla {
  position: relative;
  width: 100%;
}
.cid-veuEDf1WeN .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuEDf1WeN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuEDf1WeN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuEDf1WeN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV337b94S {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV337b94S .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV337b94S .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV337b94S .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV337b94S .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV337b94S .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV337b94S .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV337b94S .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV337b94S .embla__button--next,
.cid-vaV337b94S .embla__button--prev {
  display: flex;
}
.cid-vaV337b94S .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV337b94S .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV337b94S .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV337b94S .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV337b94S .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV337b94S .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV337b94S .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV337b94S .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV337b94S .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uXCrZgm5pr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXCrZgm5pr .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-uXCrZgm5pr .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-uXCrZgm5pr button[type="submit"] {
  border-radius: 100px;
}
.cid-uXCrZgm5pr a[type="submit"],
.cid-uXCrZgm5pr button[type="submit"] {
  margin-top: 0;
}
.cid-uXCrZgm5pr .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-uXCrZgm5pr mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-uXCrZgm5pr .row .spinner-border,
.cid-uXCrZgm5pr .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-uXCrZgm5pr .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-uGyNqj6wG1 {
  z-index: 1000;
  width: 100%;
}
.cid-uGyNqj6wG1 nav.navbar {
  position: fixed;
}
.cid-uGyNqj6wG1 .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGyNqj6wG1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGyNqj6wG1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGyNqj6wG1 .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uGyNqj6wG1 .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-uGyNqj6wG1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGyNqj6wG1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGyNqj6wG1 .dropdown-item:hover,
.cid-uGyNqj6wG1 .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-uGyNqj6wG1 .dropdown-item:hover span {
  color: white;
}
.cid-uGyNqj6wG1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGyNqj6wG1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGyNqj6wG1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGyNqj6wG1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGyNqj6wG1 .nav-link {
  position: relative;
}
.cid-uGyNqj6wG1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGyNqj6wG1 .container {
    flex-wrap: nowrap;
  }
}
.cid-uGyNqj6wG1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGyNqj6wG1 .dropdown-menu,
.cid-uGyNqj6wG1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uGyNqj6wG1 .nav-item:focus,
.cid-uGyNqj6wG1 .nav-link:focus {
  outline: none;
}
.cid-uGyNqj6wG1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGyNqj6wG1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGyNqj6wG1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGyNqj6wG1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGyNqj6wG1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGyNqj6wG1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGyNqj6wG1 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uGyNqj6wG1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGyNqj6wG1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGyNqj6wG1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGyNqj6wG1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGyNqj6wG1 .navbar.collapsed {
  justify-content: center;
}
.cid-uGyNqj6wG1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGyNqj6wG1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGyNqj6wG1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uGyNqj6wG1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGyNqj6wG1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGyNqj6wG1 .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-uGyNqj6wG1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGyNqj6wG1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGyNqj6wG1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGyNqj6wG1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGyNqj6wG1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGyNqj6wG1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGyNqj6wG1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGyNqj6wG1 .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-uGyNqj6wG1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGyNqj6wG1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGyNqj6wG1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGyNqj6wG1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGyNqj6wG1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGyNqj6wG1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGyNqj6wG1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGyNqj6wG1 .navbar.navbar-short {
  min-height: 70px;
}
.cid-uGyNqj6wG1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGyNqj6wG1 .dropdown-item.active,
.cid-uGyNqj6wG1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGyNqj6wG1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGyNqj6wG1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGyNqj6wG1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGyNqj6wG1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uGyNqj6wG1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGyNqj6wG1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGyNqj6wG1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGyNqj6wG1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGyNqj6wG1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGyNqj6wG1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-uGyNqj6wG1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGyNqj6wG1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGyNqj6wG1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGyNqj6wG1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGyNqj6wG1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGyNqj6wG1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGyNqj6wG1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGyNqj6wG1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGyNqj6wG1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGyNqj6wG1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGyNqj6wG1 .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-uGyNqj6wG1 .navbar {
    height: 80px;
  }
  .cid-uGyNqj6wG1 .navbar.opened {
    height: auto;
  }
  .cid-uGyNqj6wG1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXCqL2if3g {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXCqL2if3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXCqL2if3g .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-uXCqL2if3g .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uXCqL2if3g .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uXCqL2if3g .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uXCqL2if3g .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uXCqL2if3g .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uXCqL2if3g .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uXCqL2if3g .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uXCqL2if3g .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uXCqL2if3g .btn-wrapper {
  margin-top: -15%;
}
.cid-uXCqL2if3g .mbr-section-title {
  color: #272b2e;
}
.cid-uXCqL2if3g .mbr-text,
.cid-uXCqL2if3g .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-uXCqL2if3g .mbr-section-title,
.cid-uXCqL2if3g .mbr-section-btn,
.cid-uXCqL2if3g .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-uGyNqjxZId {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uGyNqjxZId .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGyNqjxZId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyNqjxZId .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uGyNqjxZId .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uGyNqjxZId .content-wrapper .title-wrap .mbr-section-title span {
  color: #ec0424;
}
.cid-uGyNqjxZId .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGyNqjxZId .image-wrapper img {
    height: 350px;
  }
}
.cid-uGyNqjxZId .mbr-section-title {
  color: #404349;
}
.cid-uGyNqjxZId .mbr-desc {
  color: #b19a7c;
}
.cid-uGyNqjxZId .mbr-text {
  color: #404349;
}
.cid-uGyNqjxZId .mbr-section-title,
.cid-uGyNqjxZId .title-wrap {
  color: #144774;
  text-align: center;
}
.cid-uGyOt10bfy {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uGyOt10bfy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGyOt10bfy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyOt10bfy .mbr-section-subtitle,
.cid-uGyOt10bfy .mbr-section-btn {
  color: #144774;
  text-align: center;
}
.cid-uGyOt10bfy .mbr-section-title {
  color: #144774;
}
.cid-uGyOt10bfy .mbr-section-subtitle,
.cid-uGyOt10bfy .mbr-section-btn DIV {
  text-align: left;
}
.cid-uGyP0wTgPw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGyP0wTgPw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGyP0wTgPw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyP0wTgPw .items-wrap {
  justify-content: space-between;
}
.cid-uGyP0wTgPw .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px;
  background-color: #457cde;
}
@media (max-width: 1440px) {
  .cid-uGyP0wTgPw .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uGyP0wTgPw .content-wrapper {
    padding: 26px 22px 22px;
    margin-bottom: 12px;
  }
}
.cid-uGyP0wTgPw .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uGyP0wTgPw .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uGyP0wTgPw .content-wrapper .content-wrap .list {
  margin-bottom: 50px;
  list-style-type: decimal;
  list-style-position: inside;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGyP0wTgPw .content-wrapper .content-wrap .list {
    margin-bottom: 22px;
  }
}
.cid-uGyP0wTgPw .content-wrapper .content-wrap .list .item-wrap {
  margin-bottom: 22px;
}
.cid-uGyP0wTgPw .content-wrapper .content-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGyP0wTgPw .content-wrapper .content-wrap .list .item-wrap::marker {
  font-weight: 700;
}
.cid-uGyP0wTgPw .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uGyP0wTgPw .content-wrapper .number-wrapper_1 {
  margin-top: 250px;
}
@media (max-width: 1440px) {
  .cid-uGyP0wTgPw .content-wrapper .number-wrapper_1 {
    margin-top: 150px;
  }
}
@media (max-width: 992px) {
  .cid-uGyP0wTgPw .content-wrapper .number-wrapper_1 {
    margin-top: 60px;
  }
}
.cid-uGyP0wTgPw .content-wrapper .number-wrapper_1 .mbr-number_1 {
  margin-bottom: 0;
}
.cid-uGyP0wTgPw .image-wrapper {
  position: relative;
  border: 3px solid #457cde;
  background-color: #457cde;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uGyP0wTgPw .image-wrapper {
    height: 350px;
  }
}
.cid-uGyP0wTgPw .image-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uGyP0wTgPw .image-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGyP0wTgPw .image-wrapper .number-wrapper_2 {
  position: relative;
  z-index: 1;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uGyP0wTgPw .image-wrapper .number-wrapper_2 {
    padding: 22px;
  }
}
.cid-uGyP0wTgPw .image-wrapper .number-wrapper_2 .mbr-number_2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 100%;
  background-color: #457cde;
  margin-bottom: 0;
}
.cid-uGyP0wTgPw .mbr-section-title {
  color: #191c25;
}
.cid-uGyP0wTgPw .list {
  color: #191c25;
}
.cid-uGyP0wTgPw .mbr-number_1 {
  color: #191c25;
}
.cid-uGyP0wTgPw .mbr-number_2,
.cid-uGyP0wTgPw .number-wrapper_2 {
  color: #191c25;
  text-align: right;
}
.cid-uGyP0wTgPw .list,
.cid-uGyP0wTgPw .item-wrap {
  color: #ffffff;
}
.cid-uGyP0wTgPw .mbr-section-title,
.cid-uGyP0wTgPw .mbr-section-btn {
  color: #ffffff;
}
.cid-uXCric7gf3 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXCric7gf3 .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-uXCric7gf3 .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-uXCric7gf3 button[type="submit"] {
  border-radius: 100px;
}
.cid-uXCric7gf3 a[type="submit"],
.cid-uXCric7gf3 button[type="submit"] {
  margin-top: 0;
}
.cid-uXCric7gf3 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-uXCric7gf3 mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-uXCric7gf3 .row .spinner-border,
.cid-uXCric7gf3 .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-uXCric7gf3 .gdpr-block {
  display: none;
}
.cid-veuEHExOfl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuEHExOfl .container {
  max-width: 1000px;
}
.cid-veuEHExOfl img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuEHExOfl .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va517PXqXk {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va517PXqXk .carousel {
  z-index: 2;
  position: relative;
}
.cid-va517PXqXk .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va517PXqXk .user {
  padding: 0 !important;
}
.cid-va517PXqXk .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va517PXqXk .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va517PXqXk .carousel-item.active,
.cid-va517PXqXk .carousel-item-next,
.cid-va517PXqXk .carousel-item-prev {
  display: flex;
}
.cid-va517PXqXk .user_name {
  margin: 0;
}
.cid-va517PXqXk .carousel-controls a {
  font-size: 2rem;
}
.cid-va517PXqXk .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va517PXqXk .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va517PXqXk ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va517PXqXk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va517PXqXk .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va517PXqXk .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va517PXqXk .user_text {
  color: #144774;
}
.cid-va517PXqXk .user_desk {
  color: #23537e;
}
.cid-va517PXqXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-va517PXqXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va517PXqXk .title,
.cid-va517PXqXk .line-align {
  color: #144774;
}
.cid-vaV3bqaLqk {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV3bqaLqk .mbr-text {
  color: #767676;
}
.cid-vaV3bqaLqk .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV3bqaLqk .title .num {
  width: 100%;
  display: block;
}
.cid-vaV3bqaLqk .title .card-title {
  z-index: 1;
}
.cid-vaV3bqaLqk .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV3bqaLqk .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV3bqaLqk * {
    text-align: left !important;
  }
  .cid-vaV3bqaLqk .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV3bqaLqk .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV3bqaLqk .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV3bqaLqk .mbr-section-title,
.cid-vaV3bqaLqk .card-box {
  color: #144774;
}
.cid-vaV3bqaLqk .card-text {
  color: #000000;
}
.cid-veuEIa8nvQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuEIa8nvQ .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuEIa8nvQ .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuEIa8nvQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuEIa8nvQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuEIa8nvQ .embla__slide .slide-content {
  width: 100%;
}
.cid-veuEIa8nvQ .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuEIa8nvQ .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuEIa8nvQ .embla__button--next,
.cid-veuEIa8nvQ .embla__button--prev {
  display: flex;
}
.cid-veuEIa8nvQ .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuEIa8nvQ .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuEIa8nvQ .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuEIa8nvQ .embla__button.embla__button--next {
  right: 0;
}
.cid-veuEIa8nvQ .embla {
  position: relative;
  width: 100%;
}
.cid-veuEIa8nvQ .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuEIa8nvQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuEIa8nvQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuEIa8nvQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV3c0bmgI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV3c0bmgI .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV3c0bmgI .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV3c0bmgI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV3c0bmgI .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV3c0bmgI .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV3c0bmgI .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV3c0bmgI .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV3c0bmgI .embla__button--next,
.cid-vaV3c0bmgI .embla__button--prev {
  display: flex;
}
.cid-vaV3c0bmgI .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV3c0bmgI .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV3c0bmgI .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV3c0bmgI .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV3c0bmgI .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV3c0bmgI .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV3c0bmgI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV3c0bmgI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV3c0bmgI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7f3lOVoSt {
  z-index: 1000;
  width: 100%;
}
.cid-v7f3lOVoSt nav.navbar {
  position: fixed;
}
.cid-v7f3lOVoSt .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7f3lOVoSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7f3lOVoSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7f3lOVoSt .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7f3lOVoSt .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-v7f3lOVoSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7f3lOVoSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7f3lOVoSt .dropdown-item:hover,
.cid-v7f3lOVoSt .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7f3lOVoSt .dropdown-item:hover span {
  color: white;
}
.cid-v7f3lOVoSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7f3lOVoSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7f3lOVoSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7f3lOVoSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7f3lOVoSt .nav-link {
  position: relative;
}
.cid-v7f3lOVoSt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7f3lOVoSt .container {
    flex-wrap: nowrap;
  }
}
.cid-v7f3lOVoSt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7f3lOVoSt .dropdown-menu,
.cid-v7f3lOVoSt .navbar.opened {
  background: #ffffff !important;
}
.cid-v7f3lOVoSt .nav-item:focus,
.cid-v7f3lOVoSt .nav-link:focus {
  outline: none;
}
.cid-v7f3lOVoSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7f3lOVoSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7f3lOVoSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7f3lOVoSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7f3lOVoSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7f3lOVoSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7f3lOVoSt .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7f3lOVoSt .navbar.opened {
  transition: all 0.3s;
}
.cid-v7f3lOVoSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7f3lOVoSt .navbar .navbar-logo img {
  width: auto;
}
.cid-v7f3lOVoSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7f3lOVoSt .navbar.collapsed {
  justify-content: center;
}
.cid-v7f3lOVoSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7f3lOVoSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7f3lOVoSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7f3lOVoSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7f3lOVoSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7f3lOVoSt .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-v7f3lOVoSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7f3lOVoSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7f3lOVoSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7f3lOVoSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7f3lOVoSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7f3lOVoSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7f3lOVoSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7f3lOVoSt .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-v7f3lOVoSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7f3lOVoSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7f3lOVoSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7f3lOVoSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7f3lOVoSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7f3lOVoSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7f3lOVoSt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7f3lOVoSt .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7f3lOVoSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7f3lOVoSt .dropdown-item.active,
.cid-v7f3lOVoSt .dropdown-item:active {
  background-color: transparent;
}
.cid-v7f3lOVoSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7f3lOVoSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7f3lOVoSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7f3lOVoSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7f3lOVoSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7f3lOVoSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7f3lOVoSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7f3lOVoSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7f3lOVoSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7f3lOVoSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7f3lOVoSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7f3lOVoSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7f3lOVoSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7f3lOVoSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7f3lOVoSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7f3lOVoSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7f3lOVoSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7f3lOVoSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7f3lOVoSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7f3lOVoSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7f3lOVoSt .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-v7f3lOVoSt .navbar {
    height: 80px;
  }
  .cid-v7f3lOVoSt .navbar.opened {
    height: auto;
  }
  .cid-v7f3lOVoSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7f3lPFv9N {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7f3lPFv9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f3lPFv9N .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-v7f3lPFv9N .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7f3lPFv9N .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7f3lPFv9N .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7f3lPFv9N .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7f3lPFv9N .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7f3lPFv9N .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7f3lPFv9N .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7f3lPFv9N .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7f3lPFv9N .btn-wrapper {
  margin-top: -15%;
}
.cid-v7f3lPFv9N .mbr-section-title {
  color: #272b2e;
}
.cid-v7f3lPFv9N .mbr-text,
.cid-v7f3lPFv9N .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7f3lPFv9N .mbr-section-title,
.cid-v7f3lPFv9N .mbr-section-btn,
.cid-v7f3lPFv9N .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7f3lQh53L {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7f3lQh53L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f3lQh53L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f3lQh53L .mbr-section-title {
  color: #ec0424;
}
.cid-v7f3lQh53L .mbr-section-subtitle,
.cid-v7f3lQh53L .mbr-section-btn {
  color: #144774;
}
.cid-v7f3lRBCOy {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v7f3lRBCOy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f3lRBCOy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f3lRBCOy .mbr-section-subtitle,
.cid-v7f3lRBCOy .mbr-section-btn {
  color: #144774;
}
.cid-v7f3lRBCOy .mbr-section-title {
  color: #144774;
}
.cid-vaQ02cBhMg {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaQ02cBhMg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ02cBhMg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ02cBhMg .mbr-section-subtitle,
.cid-vaQ02cBhMg .mbr-section-btn {
  color: #144774;
}
.cid-vaQ02cBhMg .mbr-section-title {
  color: #144774;
}
.cid-vaQ0taKPj2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaQ0taKPj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ0taKPj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ0taKPj2 .mbr-section-subtitle,
.cid-vaQ0taKPj2 .mbr-section-btn {
  color: #144774;
}
.cid-vaQ0taKPj2 .mbr-section-title {
  color: #144774;
}
.cid-vaQ0RRCklW {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaQ0RRCklW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ0RRCklW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ0RRCklW .mbr-section-subtitle,
.cid-vaQ0RRCklW .mbr-section-btn {
  color: #144774;
}
.cid-vaQ0RRCklW .mbr-section-title {
  color: #144774;
}
.cid-vaQ1gUM9cT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaQ1gUM9cT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ1gUM9cT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ1gUM9cT .mbr-section-subtitle,
.cid-vaQ1gUM9cT .mbr-section-btn {
  color: #144774;
}
.cid-vaQ1gUM9cT .mbr-section-title {
  color: #144774;
}
.cid-vaQ1XwQuNV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaQ1XwQuNV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ1XwQuNV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ1XwQuNV .row {
  margin: 0 -15px;
}
.cid-vaQ1XwQuNV .row .card {
  padding: 0 15px;
}
.cid-vaQ1XwQuNV .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vaQ1XwQuNV .content-wrapper {
  margin-bottom: 40px;
}
.cid-vaQ1XwQuNV .content-wrapper .main-btn .btn {
  margin-bottom: 0;
}
.cid-vaQ1XwQuNV .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .main-btn {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaQ1XwQuNV .items-wrapper .item:hover .item-wrapper,
.cid-vaQ1XwQuNV .items-wrapper .item:focus .item-wrapper {
  background-color: #dedede;
  padding: 10px 40px;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .items-wrapper .item:hover .item-wrapper,
  .cid-vaQ1XwQuNV .items-wrapper .item:focus .item-wrapper {
    padding: 10px 0;
  }
}
.cid-vaQ1XwQuNV .items-wrapper .item:hover .item-wrapper .text-wrapper,
.cid-vaQ1XwQuNV .items-wrapper .item:focus .item-wrapper .text-wrapper {
  background-color: #f7f7f7;
}
.cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper {
  padding: 10px 0;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper .item-title {
  padding: 30px 0;
  margin-bottom: 0;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper .item-title {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper .text-wrapper {
  width: 35%;
  padding: 30px 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper .text-wrapper {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper .item-date {
  padding: 30px 0;
  margin-bottom: 0;
  width: 15%;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .items-wrapper .item .item-wrapper .item-date {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vaQ1XwQuNV .mbr-section-title {
  color: #fefff5;
}
.cid-vaQ1XwQuNV .item-title {
  color: #144774;
}
.cid-vaQ1XwQuNV .item-text {
  color: #144774;
}
.cid-vaQ1XwQuNV .item-date {
  color: #fefff5;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaQ1XwQuNV .item-date {
    text-align: left;
  }
}
.cid-vaQ1XwQuNV .mbr-section-title,
.cid-vaQ1XwQuNV .main-btn {
  color: #144774;
}
.cid-vaQ3nlxVCp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaQ3nlxVCp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ3nlxVCp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ3nlxVCp .mbr-section-subtitle,
.cid-vaQ3nlxVCp .mbr-section-btn {
  color: #144774;
}
.cid-vaQ3nlxVCp .mbr-section-title {
  color: #144774;
}
.cid-vaQ3NIthK2 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  background-image: linear-gradient(180deg, #23537e 0%, #9db2d6 50%, #fafafa 100%);
}
.cid-vaQ3NIthK2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ3NIthK2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ3NIthK2 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vaQ3NIthK2 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vaQ3NIthK2 .card-wrapper {
  padding: 60px 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaQ3NIthK2 .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .cid-vaQ3NIthK2 .card-wrapper .panel-group {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vaQ3NIthK2 .card-wrapper .panel-group .content-wrap:nth-child(2) {
    margin-top: 20px;
  }
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  margin-top: 20px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 20px -8px #e9e9e9;
  background-color: #ffffff;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title {
    padding: 20px;
  }
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #23537e;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) {
  padding-bottom: 20px;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec0424;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ec0424;
  transform: rotate(-180deg);
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-vaQ3NIthK2 .card-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 20px;
  }
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: 0;
}
.cid-vaQ3NIthK2 .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  opacity: 1;
}
.cid-vaQ3NIthK2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vaQ3NIthK2 .panel-title-edit {
  color: #23537e;
}
.cid-vaQ3NIthK2 .panel-text {
  color: #565661;
}
.cid-vaQ3NIthK2 .panel-text,
.cid-vaQ3NIthK2 .panel-body {
  color: #000000;
}
.cid-vaQ5Hpcyaq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaQ5Hpcyaq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQ5Hpcyaq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQ5Hpcyaq .mbr-section-subtitle,
.cid-vaQ5Hpcyaq .mbr-section-btn {
  color: #144774;
}
.cid-vaQ5Hpcyaq .mbr-section-title {
  color: #144774;
}
.cid-v7f3m563oi {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7f3m563oi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f3m563oi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f3m563oi .contects {
  line-height: 2;
}
.cid-v7f3m563oi .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7f3m563oi .mbr-text {
  color: #144774;
}
.cid-v7f3m64Tht {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7f3m64Tht .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f3m64Tht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f3m64Tht .mbr-section-subtitle,
.cid-v7f3m64Tht .mbr-section-btn {
  color: #144774;
}
.cid-v7fdfJnhmQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7fdfJnhmQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fdfJnhmQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fdfJnhmQ .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7fdfJnhmQ .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7fdfJnhmQ .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7fdfJnhmQ .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7fdfJnhmQ .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7fdfJnhmQ .card-text {
    padding-top: 5rem;
  }
}
.cid-v7fdfJnhmQ .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7fdfJnhmQ .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7fdfJnhmQ .item-wrapper:hover .card-title,
.cid-v7fdfJnhmQ .item-wrapper:hover .card-text,
.cid-v7fdfJnhmQ .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7fdfJnhmQ .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7fdfJnhmQ .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7fdfJnhmQ .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7fdfJnhmQ .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7fdfJnhmQ .mbr-section-title {
  color: #ec0424;
}
.cid-v7fdfJnhmQ .mbr-section-subtitle {
  color: #144774;
}
.cid-v7fdfJnhmQ .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7fdfJnhmQ .card-box .item-footer {
  margin-top: auto;
}
.cid-v7fdfJnhmQ .content-head {
  max-width: 800px;
}
.cid-v7fdfJnhmQ .card-title,
.cid-v7fdfJnhmQ .iconfont-wrapper {
  color: #144774;
}
.cid-v7fdfJnhmQ .card-text,
.cid-v7fdfJnhmQ .item .mbr-section-btn {
  color: #144774;
}
.cid-veuC7oDBhF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuC7oDBhF .container {
  max-width: 1000px;
}
.cid-veuC7oDBhF img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuC7oDBhF .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50xYq05L {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50xYq05L .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50xYq05L .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50xYq05L .user {
  padding: 0 !important;
}
.cid-va50xYq05L .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50xYq05L .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50xYq05L .carousel-item.active,
.cid-va50xYq05L .carousel-item-next,
.cid-va50xYq05L .carousel-item-prev {
  display: flex;
}
.cid-va50xYq05L .user_name {
  margin: 0;
}
.cid-va50xYq05L .carousel-controls a {
  font-size: 2rem;
}
.cid-va50xYq05L .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50xYq05L .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50xYq05L ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50xYq05L .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50xYq05L .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50xYq05L .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50xYq05L .user_text {
  color: #144774;
}
.cid-va50xYq05L .user_desk {
  color: #23537e;
}
.cid-va50xYq05L .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50xYq05L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50xYq05L .title,
.cid-va50xYq05L .line-align {
  color: #144774;
}
.cid-vaUZOxlkNq {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaUZOxlkNq .mbr-text {
  color: #767676;
}
.cid-vaUZOxlkNq .mbr-section-subtitle {
  color: #767676;
}
.cid-vaUZOxlkNq .title .num {
  width: 100%;
  display: block;
}
.cid-vaUZOxlkNq .title .card-title {
  z-index: 1;
}
.cid-vaUZOxlkNq .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaUZOxlkNq .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaUZOxlkNq * {
    text-align: left !important;
  }
  .cid-vaUZOxlkNq .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaUZOxlkNq .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaUZOxlkNq .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaUZOxlkNq .mbr-section-title,
.cid-vaUZOxlkNq .card-box {
  color: #144774;
}
.cid-vaUZOxlkNq .card-text {
  color: #000000;
}
.cid-veuy3GIVP3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuy3GIVP3 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuy3GIVP3 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuy3GIVP3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuy3GIVP3 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuy3GIVP3 .embla__slide .slide-content {
  width: 100%;
}
.cid-veuy3GIVP3 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuy3GIVP3 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuy3GIVP3 .embla__button--next,
.cid-veuy3GIVP3 .embla__button--prev {
  display: flex;
}
.cid-veuy3GIVP3 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuy3GIVP3 .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuy3GIVP3 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuy3GIVP3 .embla__button.embla__button--next {
  right: 0;
}
.cid-veuy3GIVP3 .embla {
  position: relative;
  width: 100%;
}
.cid-veuy3GIVP3 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuy3GIVP3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuy3GIVP3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuy3GIVP3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaUZJRwJEW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaUZJRwJEW .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaUZJRwJEW .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaUZJRwJEW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaUZJRwJEW .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaUZJRwJEW .embla__slide .slide-content {
  width: 100%;
}
.cid-vaUZJRwJEW .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaUZJRwJEW .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaUZJRwJEW .embla__button--next,
.cid-vaUZJRwJEW .embla__button--prev {
  display: flex;
}
.cid-vaUZJRwJEW .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaUZJRwJEW .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaUZJRwJEW .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaUZJRwJEW .embla__button.embla__button--next {
  right: 0;
}
.cid-vaUZJRwJEW .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaUZJRwJEW .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaUZJRwJEW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaUZJRwJEW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaUZJRwJEW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7f3m9ekRP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7f3m9ekRP .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7f3m9ekRP .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7f3m9ekRP button[type="submit"] {
  border-radius: 100px;
}
.cid-v7f3m9ekRP a[type="submit"],
.cid-v7f3m9ekRP button[type="submit"] {
  margin-top: 0;
}
.cid-v7f3m9ekRP .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7f3m9ekRP mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7f3m9ekRP .row .spinner-border,
.cid-v7f3m9ekRP .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7f3m9ekRP .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7f9FiaLxZ {
  z-index: 1000;
  width: 100%;
}
.cid-v7f9FiaLxZ nav.navbar {
  position: fixed;
}
.cid-v7f9FiaLxZ .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7f9FiaLxZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7f9FiaLxZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7f9FiaLxZ .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7f9FiaLxZ .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-v7f9FiaLxZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7f9FiaLxZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7f9FiaLxZ .dropdown-item:hover,
.cid-v7f9FiaLxZ .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7f9FiaLxZ .dropdown-item:hover span {
  color: white;
}
.cid-v7f9FiaLxZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7f9FiaLxZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7f9FiaLxZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7f9FiaLxZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7f9FiaLxZ .nav-link {
  position: relative;
}
.cid-v7f9FiaLxZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7f9FiaLxZ .container {
    flex-wrap: nowrap;
  }
}
.cid-v7f9FiaLxZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7f9FiaLxZ .dropdown-menu,
.cid-v7f9FiaLxZ .navbar.opened {
  background: #ffffff !important;
}
.cid-v7f9FiaLxZ .nav-item:focus,
.cid-v7f9FiaLxZ .nav-link:focus {
  outline: none;
}
.cid-v7f9FiaLxZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7f9FiaLxZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7f9FiaLxZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7f9FiaLxZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7f9FiaLxZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7f9FiaLxZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7f9FiaLxZ .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7f9FiaLxZ .navbar.opened {
  transition: all 0.3s;
}
.cid-v7f9FiaLxZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7f9FiaLxZ .navbar .navbar-logo img {
  width: auto;
}
.cid-v7f9FiaLxZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7f9FiaLxZ .navbar.collapsed {
  justify-content: center;
}
.cid-v7f9FiaLxZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7f9FiaLxZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7f9FiaLxZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7f9FiaLxZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7f9FiaLxZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7f9FiaLxZ .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-v7f9FiaLxZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7f9FiaLxZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7f9FiaLxZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7f9FiaLxZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7f9FiaLxZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7f9FiaLxZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7f9FiaLxZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7f9FiaLxZ .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-v7f9FiaLxZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7f9FiaLxZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7f9FiaLxZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7f9FiaLxZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7f9FiaLxZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7f9FiaLxZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7f9FiaLxZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7f9FiaLxZ .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7f9FiaLxZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7f9FiaLxZ .dropdown-item.active,
.cid-v7f9FiaLxZ .dropdown-item:active {
  background-color: transparent;
}
.cid-v7f9FiaLxZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7f9FiaLxZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7f9FiaLxZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7f9FiaLxZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7f9FiaLxZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7f9FiaLxZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7f9FiaLxZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7f9FiaLxZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7f9FiaLxZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7f9FiaLxZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7f9FiaLxZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7f9FiaLxZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7f9FiaLxZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7f9FiaLxZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7f9FiaLxZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7f9FiaLxZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7f9FiaLxZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7f9FiaLxZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7f9FiaLxZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7f9FiaLxZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7f9FiaLxZ .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-v7f9FiaLxZ .navbar {
    height: 80px;
  }
  .cid-v7f9FiaLxZ .navbar.opened {
    height: auto;
  }
  .cid-v7f9FiaLxZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7f9FiOc5G {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7f9FiOc5G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f9FiOc5G .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-v7f9FiOc5G .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7f9FiOc5G .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7f9FiOc5G .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7f9FiOc5G .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7f9FiOc5G .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7f9FiOc5G .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7f9FiOc5G .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7f9FiOc5G .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7f9FiOc5G .btn-wrapper {
  margin-top: -15%;
}
.cid-v7f9FiOc5G .mbr-section-title {
  color: #272b2e;
}
.cid-v7f9FiOc5G .mbr-text,
.cid-v7f9FiOc5G .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7f9FiOc5G .mbr-section-title,
.cid-v7f9FiOc5G .mbr-section-btn,
.cid-v7f9FiOc5G .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7f9Fju7Oe {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7f9Fju7Oe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f9Fju7Oe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f9Fju7Oe .mbr-section-title {
  color: #ec0424;
}
.cid-v7f9Fju7Oe .mbr-section-subtitle,
.cid-v7f9Fju7Oe .mbr-section-btn {
  color: #144774;
}
.cid-v7f9FnsPbj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7f9FnsPbj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f9FnsPbj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f9FnsPbj .mbr-section-title {
  color: #144774;
}
.cid-v7f9FnsPbj .mbr-text {
  color: #144774;
}
.cid-vaP8vBuHov {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaP8vBuHov .mbr-text {
  color: #767676;
}
.cid-vaP8vBuHov .mbr-section-subtitle {
  color: #767676;
}
.cid-vaP8vBuHov .title .num {
  width: 100%;
  display: block;
}
.cid-vaP8vBuHov .title .card-title {
  z-index: 1;
}
.cid-vaP8vBuHov .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaP8vBuHov .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaP8vBuHov * {
    text-align: left !important;
  }
  .cid-vaP8vBuHov .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaP8vBuHov .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaP8vBuHov .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaP8vBuHov .mbr-section-title,
.cid-vaP8vBuHov .card-box {
  color: #144774;
}
.cid-vaP8vBuHov .card-text {
  color: #000000;
}
.cid-vaPa9XC8GN {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaPa9XC8GN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPa9XC8GN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPa9XC8GN .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaPa9XC8GN .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vaPa9XC8GN .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vaPa9XC8GN .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vaPa9XC8GN .panel-group .card {
  position: relative;
  background-color: #ffffff;
  border: none;
  transition: all 0.3s ease-in-out;
  margin-top: 16px;
  overflow: hidden;
}
.cid-vaPa9XC8GN .panel-group .card:hover {
  background-color: #e5e5e5;
}
.cid-vaPa9XC8GN .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaPa9XC8GN .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaPa9XC8GN .panel-group .card .card-header .panel-title {
  padding: 16px 16px 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vaPa9XC8GN .panel-group .card .card-header .panel-title {
    padding: 16px;
  }
}
.cid-vaPa9XC8GN .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-vaPa9XC8GN .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #ec0424;
}
.cid-vaPa9XC8GN .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-vaPa9XC8GN .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #e5e5e5;
  padding-bottom: 8px;
}
.cid-vaPa9XC8GN .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(45deg);
}
.cid-vaPa9XC8GN .panel-group .card .panel-collapse .panel-body {
  padding: 0 16px 16px 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-vaPa9XC8GN .panel-group .card .panel-collapse .panel-body {
    padding: 0 16px 16px 16px;
  }
}
.cid-vaPa9XC8GN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-vaPa9XC8GN .panel-group .card .collapse.show .panel-body {
  background-color: #e5e5e5;
}
.cid-vaPa9XC8GN .mbr-section-title {
  color: #23537e;
  text-align: center;
}
.cid-vaPa9XC8GN .mbr-text {
  color: #191919;
  text-align: center;
}
.cid-vaPa9XC8GN .panel-title-edit {
  color: #23537e;
}
.cid-vaPa9XC8GN .panel-text {
  color: #191919;
}
.cid-v7f9FmFpT3 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7f9FmFpT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f9FmFpT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f9FmFpT3 .mbr-section-subtitle,
.cid-v7f9FmFpT3 .mbr-section-btn {
  color: #144774;
}
.cid-v7f9FmFpT3 .mbr-section-title {
  color: #144774;
}
.cid-v7wrUDDu56 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v7wrUDDu56 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wrUDDu56 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wrUDDu56 .mbr-section-subtitle,
.cid-v7wrUDDu56 .mbr-section-btn {
  color: #144774;
}
.cid-v7wrUDDu56 .mbr-section-title {
  color: #144774;
}
.cid-v7kyu9SFIA {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v7kyu9SFIA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7kyu9SFIA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7kyu9SFIA .mbr-section-subtitle,
.cid-v7kyu9SFIA .mbr-section-btn {
  color: #144774;
}
.cid-v7kyu9SFIA .mbr-section-title {
  color: #144774;
}
.cid-v7wskcKq9i {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v7wskcKq9i .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wskcKq9i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wskcKq9i .mbr-section-subtitle,
.cid-v7wskcKq9i .mbr-section-btn {
  color: #144774;
}
.cid-v7wskcKq9i .mbr-section-title {
  color: #144774;
}
.cid-vaPfYXoz6U {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaPfYXoz6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPfYXoz6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPfYXoz6U .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaPfYXoz6U .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vaPfYXoz6U .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vaPfYXoz6U .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vaPfYXoz6U .panel-group .card {
  position: relative;
  background-color: #ffffff;
  border: none;
  transition: all 0.3s ease-in-out;
  margin-top: 16px;
  overflow: hidden;
}
.cid-vaPfYXoz6U .panel-group .card:hover {
  background-color: #e5e5e5;
}
.cid-vaPfYXoz6U .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaPfYXoz6U .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaPfYXoz6U .panel-group .card .card-header .panel-title {
  padding: 16px 16px 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vaPfYXoz6U .panel-group .card .card-header .panel-title {
    padding: 16px;
  }
}
.cid-vaPfYXoz6U .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-vaPfYXoz6U .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #ec0424;
}
.cid-vaPfYXoz6U .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-vaPfYXoz6U .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #e5e5e5;
  padding-bottom: 8px;
}
.cid-vaPfYXoz6U .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(45deg);
}
.cid-vaPfYXoz6U .panel-group .card .panel-collapse .panel-body {
  padding: 0 16px 16px 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-vaPfYXoz6U .panel-group .card .panel-collapse .panel-body {
    padding: 0 16px 16px 16px;
  }
}
.cid-vaPfYXoz6U .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-vaPfYXoz6U .panel-group .card .collapse.show .panel-body {
  background-color: #e5e5e5;
}
.cid-vaPfYXoz6U .mbr-section-title {
  color: #23537e;
  text-align: center;
}
.cid-vaPfYXoz6U .mbr-text {
  color: #191919;
  text-align: center;
}
.cid-vaPfYXoz6U .panel-title-edit {
  color: #23537e;
}
.cid-vaPfYXoz6U .panel-text {
  color: #191919;
}
.cid-vaPpsBlGgK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaPpsBlGgK .item {
  margin-bottom: 2rem;
}
.cid-vaPpsBlGgK img {
  width: 100%;
  height: auto;
}
.cid-vaPpsBlGgK a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .cid-vaPpsBlGgK img {
    width: 90%;
  }
}
.cid-vaPpsBlGgK .mbr-section-maintitle {
  color: #144774;
}
.cid-vaPpsBlGgK .mbr-section-title {
  color: #144774;
}
.cid-vaPpsBlGgK .mbr-text {
  color: #144774;
}
.cid-vaPrSEstKd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaPrSEstKd .item {
  margin-bottom: 2rem;
}
.cid-vaPrSEstKd img {
  width: 100%;
  height: auto;
}
.cid-vaPrSEstKd a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .cid-vaPrSEstKd img {
    width: 90%;
  }
}
.cid-vaPrSEstKd .mbr-section-maintitle {
  color: #144774;
}
.cid-vaPrSEstKd .mbr-section-title {
  color: #144774;
}
.cid-vaPrSEstKd .mbr-text {
  color: #144774;
}
.cid-vaPuk1LbHi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaPuk1LbHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPuk1LbHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPuk1LbHi .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vaPuk1LbHi .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-vaPuk1LbHi .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-vaPuk1LbHi .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-vaPuk1LbHi .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vaPuk1LbHi .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vaPuk1LbHi .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vaPuk1LbHi .items-wrapper {
  margin: 0 -10px;
}
.cid-vaPuk1LbHi .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vaPuk1LbHi .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vaPuk1LbHi .item .item-wrapper {
  height: 100%;
  background-color: #dedede;
  padding: 8px;
}
.cid-vaPuk1LbHi .item .item-wrapper .card-box {
  height: 100%;
  padding: 24px;
  background-color: #ffffff;
}
.cid-vaPuk1LbHi .item .item-wrapper .card-box .number-wrapper {
  margin-bottom: 24px;
}
.cid-vaPuk1LbHi .item .item-wrapper .card-box .number-wrapper .item-number {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #ec0424;
}
.cid-vaPuk1LbHi .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vaPuk1LbHi .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vaPuk1LbHi .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-vaPuk1LbHi .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaPuk1LbHi .mbr-label,
.cid-vaPuk1LbHi .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vaPuk1LbHi .mbr-section-title {
  color: #144774;
  text-align: center;
}
.cid-vaPuk1LbHi .mbr-text,
.cid-vaPuk1LbHi .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-vaPuk1LbHi .item-number {
  color: #000000;
}
.cid-vaPuk1LbHi .item-title {
  color: #000000;
}
.cid-vaPuk1LbHi .item-text {
  color: #4f4f4f;
}
.cid-vaPuk1LbHi .item-title,
.cid-vaPuk1LbHi .mbr-section-btn {
  color: #144774;
}
.cid-vaPxNRtz2t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaPxNRtz2t .mbr-text {
  color: #767676;
}
.cid-vaPxNRtz2t .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-vaPxNRtz2t .card-box {
    flex-direction: column;
  }
}
.cid-vaPxNRtz2t .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-vaPxNRtz2t .mbr-section-subtitle {
  color: #767676;
}
.cid-vaPxNRtz2t .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-vaPxNRtz2t .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vaPxNRtz2t .title .card-title {
  z-index: 1;
}
.cid-vaPxNRtz2t .mbr-section-title,
.cid-vaPxNRtz2t .card-title {
  margin: 0;
}
.cid-vaPxNRtz2t .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-vaPxNRtz2t .card {
    margin-bottom: 1.5rem;
  }
}
.cid-vaPxNRtz2t .card-title,
.cid-vaPxNRtz2t .card-img {
  color: #666666;
}
.cid-vaPxNRtz2t .num,
.cid-vaPxNRtz2t .line {
  color: #000000;
}
.cid-vaPxNRtz2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPxNRtz2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPxNRtz2t .mbr-section-title,
.cid-vaPxNRtz2t .card-box {
  color: #144774;
}
.cid-vaPyYv7xBS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaPyYv7xBS .mbr-text {
  color: #767676;
}
.cid-vaPyYv7xBS .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-vaPyYv7xBS .card-box {
    flex-direction: column;
  }
}
.cid-vaPyYv7xBS .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-vaPyYv7xBS .mbr-section-subtitle {
  color: #767676;
}
.cid-vaPyYv7xBS .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-vaPyYv7xBS .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vaPyYv7xBS .title .card-title {
  z-index: 1;
}
.cid-vaPyYv7xBS .mbr-section-title,
.cid-vaPyYv7xBS .card-title {
  margin: 0;
}
.cid-vaPyYv7xBS .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-vaPyYv7xBS .card {
    margin-bottom: 1.5rem;
  }
}
.cid-vaPyYv7xBS .card-title,
.cid-vaPyYv7xBS .card-img {
  color: #666666;
}
.cid-vaPyYv7xBS .num,
.cid-vaPyYv7xBS .line {
  color: #000000;
}
.cid-vaPyYv7xBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPyYv7xBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPyYv7xBS .mbr-section-title,
.cid-vaPyYv7xBS .card-box {
  color: #144774;
}
.cid-vaPyyu2mlX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaPyyu2mlX .mbr-text {
  color: #767676;
}
.cid-vaPyyu2mlX .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-vaPyyu2mlX .card-box {
    flex-direction: column;
  }
}
.cid-vaPyyu2mlX .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-vaPyyu2mlX .mbr-section-subtitle {
  color: #767676;
}
.cid-vaPyyu2mlX .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-vaPyyu2mlX .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vaPyyu2mlX .title .card-title {
  z-index: 1;
}
.cid-vaPyyu2mlX .mbr-section-title,
.cid-vaPyyu2mlX .card-title {
  margin: 0;
}
.cid-vaPyyu2mlX .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-vaPyyu2mlX .card {
    margin-bottom: 1.5rem;
  }
}
.cid-vaPyyu2mlX .card-title,
.cid-vaPyyu2mlX .card-img {
  color: #666666;
}
.cid-vaPyyu2mlX .num,
.cid-vaPyyu2mlX .line {
  color: #000000;
}
.cid-vaPyyu2mlX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPyyu2mlX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPyyu2mlX .mbr-section-title,
.cid-vaPyyu2mlX .card-box {
  color: #144774;
}
.cid-vaPAoYsNsA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaPAoYsNsA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPAoYsNsA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPAoYsNsA .row {
  margin: 0 -15px;
}
.cid-vaPAoYsNsA .row .card {
  padding: 0 15px;
}
.cid-vaPAoYsNsA .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vaPAoYsNsA .content-wrapper {
  margin-bottom: 40px;
}
.cid-vaPAoYsNsA .content-wrapper .main-btn .btn {
  margin-bottom: 0;
}
.cid-vaPAoYsNsA .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .main-btn {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaPAoYsNsA .items-wrapper .item:hover .item-wrapper,
.cid-vaPAoYsNsA .items-wrapper .item:focus .item-wrapper {
  background-color: #dedede;
  padding: 10px 40px;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .items-wrapper .item:hover .item-wrapper,
  .cid-vaPAoYsNsA .items-wrapper .item:focus .item-wrapper {
    padding: 10px 0;
  }
}
.cid-vaPAoYsNsA .items-wrapper .item:hover .item-wrapper .text-wrapper,
.cid-vaPAoYsNsA .items-wrapper .item:focus .item-wrapper .text-wrapper {
  background-color: #f7f7f7;
}
.cid-vaPAoYsNsA .items-wrapper .item .item-wrapper {
  padding: 10px 0;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-vaPAoYsNsA .items-wrapper .item .item-wrapper .item-title {
  padding: 30px 0;
  margin-bottom: 0;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .items-wrapper .item .item-wrapper .item-title {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vaPAoYsNsA .items-wrapper .item .item-wrapper .text-wrapper {
  width: 35%;
  padding: 30px 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .items-wrapper .item .item-wrapper .text-wrapper {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vaPAoYsNsA .items-wrapper .item .item-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaPAoYsNsA .items-wrapper .item .item-wrapper .item-date {
  padding: 30px 0;
  margin-bottom: 0;
  width: 15%;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .items-wrapper .item .item-wrapper .item-date {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vaPAoYsNsA .mbr-section-title {
  color: #fefff5;
}
.cid-vaPAoYsNsA .item-title {
  color: #144774;
}
.cid-vaPAoYsNsA .item-text {
  color: #144774;
}
.cid-vaPAoYsNsA .item-date {
  color: #fefff5;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaPAoYsNsA .item-date {
    text-align: left;
  }
}
.cid-v7f9FodoP8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7f9FodoP8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f9FodoP8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f9FodoP8 .mbr-section-subtitle,
.cid-v7f9FodoP8 .mbr-section-btn {
  color: #144774;
}
.cid-v7f9FodoP8 .mbr-section-title {
  color: #144774;
}
.cid-vaPBLnJS1Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaPBLnJS1Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPBLnJS1Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPBLnJS1Y .mbr-section-subtitle,
.cid-vaPBLnJS1Y .mbr-section-btn {
  color: #144774;
}
.cid-vaPBLnJS1Y .mbr-section-title {
  color: #144774;
}
.cid-vaPCvReYfu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaPCvReYfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPCvReYfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPCvReYfu .mbr-section-subtitle,
.cid-vaPCvReYfu .mbr-section-btn {
  color: #144774;
}
.cid-vaPCvReYfu .mbr-section-title {
  color: #144774;
}
.cid-v7f9FriOM2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7f9FriOM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f9FriOM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f9FriOM2 .contects {
  line-height: 2;
}
.cid-v7f9FriOM2 .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7f9FriOM2 .mbr-text {
  color: #144774;
}
.cid-v7f9Fs3w1M {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7f9Fs3w1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7f9Fs3w1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7f9Fs3w1M .mbr-section-subtitle,
.cid-v7f9Fs3w1M .mbr-section-btn {
  color: #144774;
}
.cid-vaPbihCSeW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  background-image: linear-gradient(180deg, #23537e 0%, #9db2d6 50%, #fafafa 100%);
}
.cid-vaPbihCSeW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPbihCSeW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPbihCSeW .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vaPbihCSeW .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vaPbihCSeW .card-wrapper {
  padding: 60px 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaPbihCSeW .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-vaPbihCSeW .card-wrapper .panel-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .cid-vaPbihCSeW .card-wrapper .panel-group {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vaPbihCSeW .card-wrapper .panel-group .content-wrap:nth-child(2) {
    margin-top: 20px;
  }
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  margin-top: 20px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 20px -8px #e9e9e9;
  background-color: #ffffff;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title {
    padding: 20px;
  }
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #23537e;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) {
  padding-bottom: 20px;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec0424;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ec0424;
  transform: rotate(-180deg);
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-vaPbihCSeW .card-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 20px;
  }
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: 0;
}
.cid-vaPbihCSeW .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  opacity: 1;
}
.cid-vaPbihCSeW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vaPbihCSeW .panel-title-edit {
  color: #23537e;
}
.cid-vaPbihCSeW .panel-text {
  color: #565661;
}
.cid-vaPbihCSeW .panel-text,
.cid-vaPbihCSeW .panel-body {
  color: #000000;
}
.cid-v7wCRosEjc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wCRosEjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wCRosEjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wCRosEjc .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wCRosEjc .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wCRosEjc .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wCRosEjc .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wCRosEjc .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wCRosEjc .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wCRosEjc .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wCRosEjc .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wCRosEjc .item-wrapper:hover .card-title,
.cid-v7wCRosEjc .item-wrapper:hover .card-text,
.cid-v7wCRosEjc .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wCRosEjc .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wCRosEjc .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wCRosEjc .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wCRosEjc .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wCRosEjc .mbr-section-title {
  color: #ec0424;
}
.cid-v7wCRosEjc .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wCRosEjc .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wCRosEjc .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wCRosEjc .content-head {
  max-width: 800px;
}
.cid-v7wCRosEjc .card-title,
.cid-v7wCRosEjc .iconfont-wrapper {
  color: #144774;
}
.cid-v7wCRosEjc .card-text,
.cid-v7wCRosEjc .item .mbr-section-btn {
  color: #144774;
}
.cid-veuCcrXUuG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCcrXUuG .container {
  max-width: 1000px;
}
.cid-veuCcrXUuG img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCcrXUuG .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50C80dx8 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50C80dx8 .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50C80dx8 .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50C80dx8 .user {
  padding: 0 !important;
}
.cid-va50C80dx8 .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50C80dx8 .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50C80dx8 .carousel-item.active,
.cid-va50C80dx8 .carousel-item-next,
.cid-va50C80dx8 .carousel-item-prev {
  display: flex;
}
.cid-va50C80dx8 .user_name {
  margin: 0;
}
.cid-va50C80dx8 .carousel-controls a {
  font-size: 2rem;
}
.cid-va50C80dx8 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50C80dx8 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50C80dx8 ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50C80dx8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50C80dx8 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50C80dx8 .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50C80dx8 .user_text {
  color: #144774;
}
.cid-va50C80dx8 .user_desk {
  color: #23537e;
}
.cid-va50C80dx8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50C80dx8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50C80dx8 .title,
.cid-va50C80dx8 .line-align {
  color: #144774;
}
.cid-vaV03bTQkX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV03bTQkX .mbr-text {
  color: #767676;
}
.cid-vaV03bTQkX .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV03bTQkX .title .num {
  width: 100%;
  display: block;
}
.cid-vaV03bTQkX .title .card-title {
  z-index: 1;
}
.cid-vaV03bTQkX .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV03bTQkX .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV03bTQkX * {
    text-align: left !important;
  }
  .cid-vaV03bTQkX .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV03bTQkX .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV03bTQkX .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV03bTQkX .mbr-section-title,
.cid-vaV03bTQkX .card-box {
  color: #144774;
}
.cid-vaV03bTQkX .card-text {
  color: #000000;
}
.cid-veuy7MY8xX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuy7MY8xX .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuy7MY8xX .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuy7MY8xX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuy7MY8xX .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuy7MY8xX .embla__slide .slide-content {
  width: 100%;
}
.cid-veuy7MY8xX .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuy7MY8xX .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuy7MY8xX .embla__button--next,
.cid-veuy7MY8xX .embla__button--prev {
  display: flex;
}
.cid-veuy7MY8xX .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuy7MY8xX .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuy7MY8xX .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuy7MY8xX .embla__button.embla__button--next {
  right: 0;
}
.cid-veuy7MY8xX .embla {
  position: relative;
  width: 100%;
}
.cid-veuy7MY8xX .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuy7MY8xX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuy7MY8xX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuy7MY8xX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV02LLHYs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV02LLHYs .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV02LLHYs .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV02LLHYs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV02LLHYs .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV02LLHYs .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV02LLHYs .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV02LLHYs .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV02LLHYs .embla__button--next,
.cid-vaV02LLHYs .embla__button--prev {
  display: flex;
}
.cid-vaV02LLHYs .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV02LLHYs .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV02LLHYs .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV02LLHYs .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV02LLHYs .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV02LLHYs .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV02LLHYs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV02LLHYs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV02LLHYs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7f9FuByCj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7f9FuByCj .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7f9FuByCj .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7f9FuByCj button[type="submit"] {
  border-radius: 100px;
}
.cid-v7f9FuByCj a[type="submit"],
.cid-v7f9FuByCj button[type="submit"] {
  margin-top: 0;
}
.cid-v7f9FuByCj .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7f9FuByCj mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7f9FuByCj .row .spinner-border,
.cid-v7f9FuByCj .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7f9FuByCj .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7fa0Z4d2D {
  z-index: 1000;
  width: 100%;
}
.cid-v7fa0Z4d2D nav.navbar {
  position: fixed;
}
.cid-v7fa0Z4d2D .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7fa0Z4d2D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7fa0Z4d2D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7fa0Z4d2D .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7fa0Z4d2D .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-v7fa0Z4d2D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7fa0Z4d2D .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7fa0Z4d2D .dropdown-item:hover,
.cid-v7fa0Z4d2D .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7fa0Z4d2D .dropdown-item:hover span {
  color: white;
}
.cid-v7fa0Z4d2D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7fa0Z4d2D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7fa0Z4d2D .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7fa0Z4d2D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7fa0Z4d2D .nav-link {
  position: relative;
}
.cid-v7fa0Z4d2D .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7fa0Z4d2D .container {
    flex-wrap: nowrap;
  }
}
.cid-v7fa0Z4d2D .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7fa0Z4d2D .dropdown-menu,
.cid-v7fa0Z4d2D .navbar.opened {
  background: #ffffff !important;
}
.cid-v7fa0Z4d2D .nav-item:focus,
.cid-v7fa0Z4d2D .nav-link:focus {
  outline: none;
}
.cid-v7fa0Z4d2D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7fa0Z4d2D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7fa0Z4d2D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7fa0Z4d2D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7fa0Z4d2D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7fa0Z4d2D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7fa0Z4d2D .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7fa0Z4d2D .navbar.opened {
  transition: all 0.3s;
}
.cid-v7fa0Z4d2D .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7fa0Z4d2D .navbar .navbar-logo img {
  width: auto;
}
.cid-v7fa0Z4d2D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7fa0Z4d2D .navbar.collapsed {
  justify-content: center;
}
.cid-v7fa0Z4d2D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7fa0Z4d2D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7fa0Z4d2D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7fa0Z4d2D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7fa0Z4d2D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7fa0Z4d2D .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-v7fa0Z4d2D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7fa0Z4d2D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7fa0Z4d2D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7fa0Z4d2D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7fa0Z4d2D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7fa0Z4d2D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7fa0Z4d2D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7fa0Z4d2D .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-v7fa0Z4d2D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7fa0Z4d2D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7fa0Z4d2D .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7fa0Z4d2D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7fa0Z4d2D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7fa0Z4d2D .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7fa0Z4d2D .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7fa0Z4d2D .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7fa0Z4d2D .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7fa0Z4d2D .dropdown-item.active,
.cid-v7fa0Z4d2D .dropdown-item:active {
  background-color: transparent;
}
.cid-v7fa0Z4d2D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7fa0Z4d2D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7fa0Z4d2D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7fa0Z4d2D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7fa0Z4d2D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7fa0Z4d2D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7fa0Z4d2D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7fa0Z4d2D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7fa0Z4d2D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7fa0Z4d2D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7fa0Z4d2D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7fa0Z4d2D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fa0Z4d2D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fa0Z4d2D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7fa0Z4d2D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fa0Z4d2D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7fa0Z4d2D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7fa0Z4d2D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fa0Z4d2D .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7fa0Z4d2D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7fa0Z4d2D .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-v7fa0Z4d2D .navbar {
    height: 80px;
  }
  .cid-v7fa0Z4d2D .navbar.opened {
    height: auto;
  }
  .cid-v7fa0Z4d2D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7fa0ZKCbD {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7fa0ZKCbD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fa0ZKCbD .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-v7fa0ZKCbD .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7fa0ZKCbD .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7fa0ZKCbD .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7fa0ZKCbD .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7fa0ZKCbD .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7fa0ZKCbD .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7fa0ZKCbD .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7fa0ZKCbD .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7fa0ZKCbD .btn-wrapper {
  margin-top: -15%;
}
.cid-v7fa0ZKCbD .mbr-section-title {
  color: #272b2e;
}
.cid-v7fa0ZKCbD .mbr-text,
.cid-v7fa0ZKCbD .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7fa0ZKCbD .mbr-section-title,
.cid-v7fa0ZKCbD .mbr-section-btn,
.cid-v7fa0ZKCbD .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7fa10s8sX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fa10s8sX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fa10s8sX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fa10s8sX .mbr-section-title {
  color: #ec0424;
}
.cid-v7fa10s8sX .mbr-section-subtitle,
.cid-v7fa10s8sX .mbr-section-btn {
  color: #144774;
}
.cid-v7fa143IEE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v7fa143IEE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fa143IEE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fa143IEE .mbr-section-subtitle,
.cid-v7fa143IEE .mbr-section-btn {
  color: #144774;
}
.cid-v7fa143IEE .mbr-section-title {
  color: #144774;
}
.cid-v7fa14GXPE {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7fa14GXPE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fa14GXPE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fa14GXPE .mbr-section-subtitle,
.cid-v7fa14GXPE .mbr-section-btn {
  color: #144774;
}
.cid-v7fa14GXPE .mbr-section-title {
  color: #144774;
}
.cid-v7wtL8ZfUZ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wtL8ZfUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wtL8ZfUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wtL8ZfUZ .mbr-section-subtitle,
.cid-v7wtL8ZfUZ .mbr-section-btn {
  color: #144774;
}
.cid-v7wtL8ZfUZ .mbr-section-title {
  color: #144774;
}
.cid-v7fa15mCsk {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fa15mCsk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fa15mCsk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fa15mCsk .mbr-section-subtitle,
.cid-v7fa15mCsk .mbr-section-btn {
  color: #144774;
}
.cid-v7fa15mCsk .mbr-section-title {
  color: #144774;
}
.cid-v7fa18v1Ni {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fa18v1Ni .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fa18v1Ni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fa18v1Ni .contects {
  line-height: 2;
}
.cid-v7fa18v1Ni .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7fa18v1Ni .mbr-text {
  color: #144774;
}
.cid-v7fa19hxwf {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7fa19hxwf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fa19hxwf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fa19hxwf .mbr-section-subtitle,
.cid-v7fa19hxwf .mbr-section-btn {
  color: #144774;
}
.cid-vaPF3QddDo {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  background-image: linear-gradient(180deg, #23537e 0%, #9db2d6 50%, #fafafa 100%);
}
.cid-vaPF3QddDo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPF3QddDo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPF3QddDo .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vaPF3QddDo .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vaPF3QddDo .card-wrapper {
  padding: 60px 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaPF3QddDo .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-vaPF3QddDo .card-wrapper .panel-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .cid-vaPF3QddDo .card-wrapper .panel-group {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vaPF3QddDo .card-wrapper .panel-group .content-wrap:nth-child(2) {
    margin-top: 20px;
  }
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  margin-top: 20px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 20px -8px #e9e9e9;
  background-color: #ffffff;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title {
    padding: 20px;
  }
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #23537e;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) {
  padding-bottom: 20px;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec0424;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ec0424;
  transform: rotate(-180deg);
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-vaPF3QddDo .card-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 20px;
  }
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: 0;
}
.cid-vaPF3QddDo .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  opacity: 1;
}
.cid-vaPF3QddDo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vaPF3QddDo .panel-title-edit {
  color: #23537e;
}
.cid-vaPF3QddDo .panel-text {
  color: #565661;
}
.cid-vaPF3QddDo .panel-text,
.cid-vaPF3QddDo .panel-body {
  color: #000000;
}
.cid-v7wD9U4ie8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wD9U4ie8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wD9U4ie8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wD9U4ie8 .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wD9U4ie8 .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wD9U4ie8 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wD9U4ie8 .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wD9U4ie8 .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wD9U4ie8 .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wD9U4ie8 .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wD9U4ie8 .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wD9U4ie8 .item-wrapper:hover .card-title,
.cid-v7wD9U4ie8 .item-wrapper:hover .card-text,
.cid-v7wD9U4ie8 .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wD9U4ie8 .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wD9U4ie8 .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wD9U4ie8 .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wD9U4ie8 .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wD9U4ie8 .mbr-section-title {
  color: #ec0424;
}
.cid-v7wD9U4ie8 .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wD9U4ie8 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wD9U4ie8 .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wD9U4ie8 .content-head {
  max-width: 800px;
}
.cid-v7wD9U4ie8 .card-title,
.cid-v7wD9U4ie8 .iconfont-wrapper {
  color: #144774;
}
.cid-v7wD9U4ie8 .card-text,
.cid-v7wD9U4ie8 .item .mbr-section-btn {
  color: #144774;
}
.cid-veuCg3SPqA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCg3SPqA .container {
  max-width: 1000px;
}
.cid-veuCg3SPqA img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCg3SPqA .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50FTsMde {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50FTsMde .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50FTsMde .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50FTsMde .user {
  padding: 0 !important;
}
.cid-va50FTsMde .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50FTsMde .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50FTsMde .carousel-item.active,
.cid-va50FTsMde .carousel-item-next,
.cid-va50FTsMde .carousel-item-prev {
  display: flex;
}
.cid-va50FTsMde .user_name {
  margin: 0;
}
.cid-va50FTsMde .carousel-controls a {
  font-size: 2rem;
}
.cid-va50FTsMde .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50FTsMde .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50FTsMde ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50FTsMde .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50FTsMde .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50FTsMde .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50FTsMde .user_text {
  color: #144774;
}
.cid-va50FTsMde .user_desk {
  color: #23537e;
}
.cid-va50FTsMde .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50FTsMde .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50FTsMde .title,
.cid-va50FTsMde .line-align {
  color: #144774;
}
.cid-vaV08wyZsb {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV08wyZsb .mbr-text {
  color: #767676;
}
.cid-vaV08wyZsb .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV08wyZsb .title .num {
  width: 100%;
  display: block;
}
.cid-vaV08wyZsb .title .card-title {
  z-index: 1;
}
.cid-vaV08wyZsb .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV08wyZsb .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV08wyZsb * {
    text-align: left !important;
  }
  .cid-vaV08wyZsb .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV08wyZsb .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV08wyZsb .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV08wyZsb .mbr-section-title,
.cid-vaV08wyZsb .card-box {
  color: #144774;
}
.cid-vaV08wyZsb .card-text {
  color: #000000;
}
.cid-veuyf0tp0B {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuyf0tp0B .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuyf0tp0B .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuyf0tp0B .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuyf0tp0B .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuyf0tp0B .embla__slide .slide-content {
  width: 100%;
}
.cid-veuyf0tp0B .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuyf0tp0B .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuyf0tp0B .embla__button--next,
.cid-veuyf0tp0B .embla__button--prev {
  display: flex;
}
.cid-veuyf0tp0B .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuyf0tp0B .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuyf0tp0B .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuyf0tp0B .embla__button.embla__button--next {
  right: 0;
}
.cid-veuyf0tp0B .embla {
  position: relative;
  width: 100%;
}
.cid-veuyf0tp0B .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuyf0tp0B .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuyf0tp0B .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuyf0tp0B .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV07z8IKf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV07z8IKf .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV07z8IKf .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV07z8IKf .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV07z8IKf .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV07z8IKf .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV07z8IKf .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV07z8IKf .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV07z8IKf .embla__button--next,
.cid-vaV07z8IKf .embla__button--prev {
  display: flex;
}
.cid-vaV07z8IKf .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV07z8IKf .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV07z8IKf .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV07z8IKf .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV07z8IKf .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV07z8IKf .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV07z8IKf .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV07z8IKf .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV07z8IKf .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7fa1cjm3C {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7fa1cjm3C .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7fa1cjm3C .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7fa1cjm3C button[type="submit"] {
  border-radius: 100px;
}
.cid-v7fa1cjm3C a[type="submit"],
.cid-v7fa1cjm3C button[type="submit"] {
  margin-top: 0;
}
.cid-v7fa1cjm3C .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7fa1cjm3C mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7fa1cjm3C .row .spinner-border,
.cid-v7fa1cjm3C .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7fa1cjm3C .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7faipxZES {
  z-index: 1000;
  width: 100%;
}
.cid-v7faipxZES nav.navbar {
  position: fixed;
}
.cid-v7faipxZES .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7faipxZES .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7faipxZES .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7faipxZES .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7faipxZES .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-v7faipxZES .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7faipxZES .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7faipxZES .dropdown-item:hover,
.cid-v7faipxZES .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7faipxZES .dropdown-item:hover span {
  color: white;
}
.cid-v7faipxZES .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7faipxZES .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7faipxZES .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7faipxZES .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7faipxZES .nav-link {
  position: relative;
}
.cid-v7faipxZES .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7faipxZES .container {
    flex-wrap: nowrap;
  }
}
.cid-v7faipxZES .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7faipxZES .dropdown-menu,
.cid-v7faipxZES .navbar.opened {
  background: #ffffff !important;
}
.cid-v7faipxZES .nav-item:focus,
.cid-v7faipxZES .nav-link:focus {
  outline: none;
}
.cid-v7faipxZES .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7faipxZES .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7faipxZES .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7faipxZES .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7faipxZES .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7faipxZES .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7faipxZES .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7faipxZES .navbar.opened {
  transition: all 0.3s;
}
.cid-v7faipxZES .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7faipxZES .navbar .navbar-logo img {
  width: auto;
}
.cid-v7faipxZES .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7faipxZES .navbar.collapsed {
  justify-content: center;
}
.cid-v7faipxZES .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7faipxZES .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7faipxZES .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7faipxZES .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7faipxZES .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7faipxZES .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-v7faipxZES .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7faipxZES .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7faipxZES .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7faipxZES .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7faipxZES .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7faipxZES .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7faipxZES .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7faipxZES .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-v7faipxZES .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7faipxZES .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7faipxZES .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7faipxZES .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7faipxZES .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7faipxZES .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7faipxZES .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7faipxZES .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7faipxZES .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7faipxZES .dropdown-item.active,
.cid-v7faipxZES .dropdown-item:active {
  background-color: transparent;
}
.cid-v7faipxZES .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7faipxZES .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7faipxZES .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7faipxZES .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7faipxZES .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7faipxZES .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7faipxZES ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7faipxZES .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7faipxZES button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7faipxZES button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7faipxZES button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7faipxZES button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7faipxZES button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7faipxZES button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7faipxZES nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7faipxZES nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7faipxZES nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7faipxZES nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7faipxZES .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7faipxZES a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7faipxZES .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-v7faipxZES .navbar {
    height: 80px;
  }
  .cid-v7faipxZES .navbar.opened {
    height: auto;
  }
  .cid-v7faipxZES .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7faiqzMHQ {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7faiqzMHQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faiqzMHQ .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-v7faiqzMHQ .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7faiqzMHQ .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7faiqzMHQ .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7faiqzMHQ .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7faiqzMHQ .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7faiqzMHQ .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7faiqzMHQ .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7faiqzMHQ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7faiqzMHQ .btn-wrapper {
  margin-top: -15%;
}
.cid-v7faiqzMHQ .mbr-section-title {
  color: #272b2e;
}
.cid-v7faiqzMHQ .mbr-text,
.cid-v7faiqzMHQ .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7faiqzMHQ .mbr-section-title,
.cid-v7faiqzMHQ .mbr-section-btn,
.cid-v7faiqzMHQ .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7fairmiXJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fairmiXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fairmiXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fairmiXJ .mbr-section-title {
  color: #ec0424;
}
.cid-v7fairmiXJ .mbr-section-subtitle,
.cid-v7fairmiXJ .mbr-section-btn {
  color: #144774;
}
.cid-v7fait7MIH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7fait7MIH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fait7MIH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fait7MIH .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-v7fait7MIH .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v7fait7MIH .content-wrapper .title-wrap .mbr-section-title span {
  color: #ec0424;
}
.cid-v7fait7MIH .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7fait7MIH .image-wrapper img {
    height: 350px;
  }
}
.cid-v7fait7MIH .mbr-section-title {
  color: #404349;
}
.cid-v7fait7MIH .mbr-desc {
  color: #b19a7c;
}
.cid-v7fait7MIH .mbr-text {
  color: #404349;
}
.cid-v7fait7MIH .mbr-section-title,
.cid-v7fait7MIH .title-wrap {
  color: #144774;
  text-align: left;
}
.cid-v7faisrBLy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7faisrBLy .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #144774;
}
.cid-v7faisrBLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faisrBLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faisrBLy .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-v7faisrBLy .content-wrap .card {
  justify-content: space-between;
}
.cid-v7faisrBLy .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v7faisrBLy .content-wrapper {
    padding: 0;
  }
}
.cid-v7faisrBLy .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7faisrBLy .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #144774;
  box-shadow: 4px 4px 0 0 #144774;
  border: 2px solid #144774;
  background-color: #ec0424;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-v7faisrBLy .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-v7faisrBLy .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-v7faisrBLy .mbr-desc,
.cid-v7faisrBLy .desc-wrapper {
  color: #144774;
  text-align: left;
}
.cid-v7faisrBLy .mbr-section-title,
.cid-v7faisrBLy .mbr-section-btn {
  color: #144774;
  text-align: left;
}
.cid-v7faivyB6A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7faivyB6A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faivyB6A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faivyB6A .mbr-section-subtitle,
.cid-v7faivyB6A .mbr-section-btn {
  color: #144774;
}
.cid-v7faivyB6A .mbr-section-title {
  color: #144774;
}
.cid-v7wuSTbp7B {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wuSTbp7B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wuSTbp7B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wuSTbp7B .mbr-section-subtitle,
.cid-v7wuSTbp7B .mbr-section-btn {
  color: #144774;
}
.cid-v7wuSTbp7B .mbr-section-title {
  color: #144774;
}
.cid-v7faiweGmu {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v7faiweGmu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faiweGmu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faiweGmu .mbr-section-subtitle,
.cid-v7faiweGmu .mbr-section-btn {
  color: #144774;
}
.cid-v7faiweGmu .mbr-section-title {
  color: #144774;
}
.cid-v7faiziz9p {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7faiziz9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faiziz9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faiziz9p .contects {
  line-height: 2;
}
.cid-v7faiziz9p .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7faiziz9p .mbr-text {
  color: #23537e;
}
.cid-v7faizYlKG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7faizYlKG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faizYlKG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faizYlKG .mbr-section-subtitle,
.cid-v7faizYlKG .mbr-section-btn {
  color: #144774;
}
.cid-v7wDHu3Seh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wDHu3Seh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wDHu3Seh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wDHu3Seh .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wDHu3Seh .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wDHu3Seh .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wDHu3Seh .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wDHu3Seh .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wDHu3Seh .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wDHu3Seh .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wDHu3Seh .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wDHu3Seh .item-wrapper:hover .card-title,
.cid-v7wDHu3Seh .item-wrapper:hover .card-text,
.cid-v7wDHu3Seh .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wDHu3Seh .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wDHu3Seh .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wDHu3Seh .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wDHu3Seh .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wDHu3Seh .mbr-section-title {
  color: #ec0424;
}
.cid-v7wDHu3Seh .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wDHu3Seh .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wDHu3Seh .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wDHu3Seh .content-head {
  max-width: 800px;
}
.cid-v7wDHu3Seh .card-title,
.cid-v7wDHu3Seh .iconfont-wrapper {
  color: #144774;
}
.cid-v7wDHu3Seh .card-text,
.cid-v7wDHu3Seh .item .mbr-section-btn {
  color: #144774;
}
.cid-veuCkNoJyv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCkNoJyv .container {
  max-width: 1000px;
}
.cid-veuCkNoJyv img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCkNoJyv .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50JNEWhQ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50JNEWhQ .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50JNEWhQ .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50JNEWhQ .user {
  padding: 0 !important;
}
.cid-va50JNEWhQ .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50JNEWhQ .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50JNEWhQ .carousel-item.active,
.cid-va50JNEWhQ .carousel-item-next,
.cid-va50JNEWhQ .carousel-item-prev {
  display: flex;
}
.cid-va50JNEWhQ .user_name {
  margin: 0;
}
.cid-va50JNEWhQ .carousel-controls a {
  font-size: 2rem;
}
.cid-va50JNEWhQ .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50JNEWhQ .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50JNEWhQ ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50JNEWhQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50JNEWhQ .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50JNEWhQ .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50JNEWhQ .user_text {
  color: #144774;
}
.cid-va50JNEWhQ .user_desk {
  color: #23537e;
}
.cid-va50JNEWhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50JNEWhQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50JNEWhQ .title,
.cid-va50JNEWhQ .line-align {
  color: #144774;
}
.cid-vaV0c0JYut {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV0c0JYut .mbr-text {
  color: #767676;
}
.cid-vaV0c0JYut .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV0c0JYut .title .num {
  width: 100%;
  display: block;
}
.cid-vaV0c0JYut .title .card-title {
  z-index: 1;
}
.cid-vaV0c0JYut .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV0c0JYut .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV0c0JYut * {
    text-align: left !important;
  }
  .cid-vaV0c0JYut .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV0c0JYut .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV0c0JYut .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV0c0JYut .mbr-section-title,
.cid-vaV0c0JYut .card-box {
  color: #144774;
}
.cid-vaV0c0JYut .card-text {
  color: #000000;
}
.cid-veuClTFrVO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuClTFrVO .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuClTFrVO .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuClTFrVO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuClTFrVO .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuClTFrVO .embla__slide .slide-content {
  width: 100%;
}
.cid-veuClTFrVO .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuClTFrVO .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuClTFrVO .embla__button--next,
.cid-veuClTFrVO .embla__button--prev {
  display: flex;
}
.cid-veuClTFrVO .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuClTFrVO .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuClTFrVO .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuClTFrVO .embla__button.embla__button--next {
  right: 0;
}
.cid-veuClTFrVO .embla {
  position: relative;
  width: 100%;
}
.cid-veuClTFrVO .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuClTFrVO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuClTFrVO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuClTFrVO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV0cx1Oa6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV0cx1Oa6 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV0cx1Oa6 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV0cx1Oa6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV0cx1Oa6 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV0cx1Oa6 .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV0cx1Oa6 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV0cx1Oa6 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV0cx1Oa6 .embla__button--next,
.cid-vaV0cx1Oa6 .embla__button--prev {
  display: flex;
}
.cid-vaV0cx1Oa6 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV0cx1Oa6 .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV0cx1Oa6 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV0cx1Oa6 .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV0cx1Oa6 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV0cx1Oa6 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV0cx1Oa6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV0cx1Oa6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV0cx1Oa6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7faiCIvw2 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7faiCIvw2 .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7faiCIvw2 .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7faiCIvw2 button[type="submit"] {
  border-radius: 100px;
}
.cid-v7faiCIvw2 a[type="submit"],
.cid-v7faiCIvw2 button[type="submit"] {
  margin-top: 0;
}
.cid-v7faiCIvw2 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7faiCIvw2 mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7faiCIvw2 .row .spinner-border,
.cid-v7faiCIvw2 .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7faiCIvw2 .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7fatJFDDS {
  z-index: 1000;
  width: 100%;
}
.cid-v7fatJFDDS nav.navbar {
  position: fixed;
}
.cid-v7fatJFDDS .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7fatJFDDS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7fatJFDDS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7fatJFDDS .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7fatJFDDS .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-v7fatJFDDS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7fatJFDDS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7fatJFDDS .dropdown-item:hover,
.cid-v7fatJFDDS .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7fatJFDDS .dropdown-item:hover span {
  color: white;
}
.cid-v7fatJFDDS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7fatJFDDS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7fatJFDDS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7fatJFDDS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7fatJFDDS .nav-link {
  position: relative;
}
.cid-v7fatJFDDS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7fatJFDDS .container {
    flex-wrap: nowrap;
  }
}
.cid-v7fatJFDDS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7fatJFDDS .dropdown-menu,
.cid-v7fatJFDDS .navbar.opened {
  background: #ffffff !important;
}
.cid-v7fatJFDDS .nav-item:focus,
.cid-v7fatJFDDS .nav-link:focus {
  outline: none;
}
.cid-v7fatJFDDS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7fatJFDDS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7fatJFDDS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7fatJFDDS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7fatJFDDS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7fatJFDDS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7fatJFDDS .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7fatJFDDS .navbar.opened {
  transition: all 0.3s;
}
.cid-v7fatJFDDS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7fatJFDDS .navbar .navbar-logo img {
  width: auto;
}
.cid-v7fatJFDDS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7fatJFDDS .navbar.collapsed {
  justify-content: center;
}
.cid-v7fatJFDDS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7fatJFDDS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7fatJFDDS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7fatJFDDS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7fatJFDDS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7fatJFDDS .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-v7fatJFDDS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7fatJFDDS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7fatJFDDS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7fatJFDDS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7fatJFDDS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7fatJFDDS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7fatJFDDS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7fatJFDDS .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-v7fatJFDDS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7fatJFDDS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7fatJFDDS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7fatJFDDS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7fatJFDDS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7fatJFDDS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7fatJFDDS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7fatJFDDS .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7fatJFDDS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7fatJFDDS .dropdown-item.active,
.cid-v7fatJFDDS .dropdown-item:active {
  background-color: transparent;
}
.cid-v7fatJFDDS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7fatJFDDS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7fatJFDDS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7fatJFDDS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7fatJFDDS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7fatJFDDS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7fatJFDDS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7fatJFDDS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7fatJFDDS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7fatJFDDS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7fatJFDDS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7fatJFDDS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fatJFDDS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fatJFDDS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7fatJFDDS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fatJFDDS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7fatJFDDS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7fatJFDDS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fatJFDDS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7fatJFDDS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7fatJFDDS .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-v7fatJFDDS .navbar {
    height: 80px;
  }
  .cid-v7fatJFDDS .navbar.opened {
    height: auto;
  }
  .cid-v7fatJFDDS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7fatKVAWT {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7fatKVAWT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fatKVAWT .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-v7fatKVAWT .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7fatKVAWT .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7fatKVAWT .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7fatKVAWT .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7fatKVAWT .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7fatKVAWT .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7fatKVAWT .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7fatKVAWT .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7fatKVAWT .btn-wrapper {
  margin-top: -15%;
}
.cid-v7fatKVAWT .mbr-section-title {
  color: #272b2e;
}
.cid-v7fatKVAWT .mbr-text,
.cid-v7fatKVAWT .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7fatKVAWT .mbr-section-title,
.cid-v7fatKVAWT .mbr-section-btn,
.cid-v7fatKVAWT .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7w9Ac5L2Z {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7w9Ac5L2Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7w9Ac5L2Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7w9Ac5L2Z .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-v7w9Ac5L2Z .mbr-section-subtitle,
.cid-v7w9Ac5L2Z .mbr-section-btn {
  color: #144774;
}
.cid-v7fatMNRIf {
  padding-top: 3rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7fatMNRIf .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #144774;
}
.cid-v7fatMNRIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fatMNRIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fatMNRIf .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-v7fatMNRIf .content-wrap .card {
  justify-content: space-between;
}
.cid-v7fatMNRIf .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v7fatMNRIf .content-wrapper {
    padding: 0;
  }
}
.cid-v7fatMNRIf .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7fatMNRIf .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #144774;
  box-shadow: 4px 4px 0 0 #144774;
  border: 2px solid #144774;
  background-color: #ec0424;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-v7fatMNRIf .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-v7fatMNRIf .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-v7fatMNRIf .mbr-desc,
.cid-v7fatMNRIf .desc-wrapper {
  color: #144774;
  text-align: left;
}
.cid-v7fatMNRIf .mbr-section-title,
.cid-v7fatMNRIf .mbr-section-btn {
  color: #144774;
  text-align: center;
}
.cid-v7w9pUSHoQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-v7w9pUSHoQ img {
  object-fit: cover;
}
.cid-v7w9pUSHoQ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #144774;
}
.cid-v7w9pUSHoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7w9pUSHoQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7w9pUSHoQ .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-v7w9pUSHoQ .content-wrap .card {
  justify-content: space-between;
}
.cid-v7w9pUSHoQ .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v7w9pUSHoQ .content-wrapper {
    padding: 0;
  }
}
.cid-v7w9pUSHoQ .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7w9pUSHoQ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #144774;
  box-shadow: 4px 4px 0 0 #144774;
  border: 2px solid #144774;
  background-color: #ec0424;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-v7w9pUSHoQ .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-v7w9pUSHoQ .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-v7w9pUSHoQ .mbr-desc,
.cid-v7w9pUSHoQ .desc-wrapper {
  color: #144774;
  text-align: left;
}
.cid-v7w9pUSHoQ .mbr-section-title,
.cid-v7w9pUSHoQ .mbr-section-btn {
  color: #144774;
  text-align: left;
}
.cid-v7wa9KnMZo {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wa9KnMZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wa9KnMZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wa9KnMZo .mbr-section-subtitle,
.cid-v7wa9KnMZo .mbr-section-btn {
  color: #144774;
}
.cid-v7wa9KnMZo .mbr-section-title {
  color: #144774;
}
.cid-vaRCH6WMyj {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaRCH6WMyj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRCH6WMyj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRCH6WMyj .mbr-section-subtitle,
.cid-vaRCH6WMyj .mbr-section-btn {
  color: #144774;
}
.cid-vaRCH6WMyj .mbr-section-title {
  color: #144774;
}
.cid-vaRDnkDF21 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaRDnkDF21 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRDnkDF21 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRDnkDF21 .mbr-section-subtitle,
.cid-vaRDnkDF21 .mbr-section-btn {
  color: #144774;
}
.cid-vaRDnkDF21 .mbr-section-title {
  color: #144774;
}
.cid-vaRDJdvalI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaRDJdvalI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRDJdvalI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRDJdvalI .mbr-section-subtitle,
.cid-vaRDJdvalI .mbr-section-btn {
  color: #144774;
}
.cid-vaRDJdvalI .mbr-section-title {
  color: #144774;
}
.cid-vaRDSqtFf6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaRDSqtFf6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRDSqtFf6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRDSqtFf6 .mbr-section-subtitle,
.cid-vaRDSqtFf6 .mbr-section-btn {
  color: #144774;
}
.cid-vaRDSqtFf6 .mbr-section-title {
  color: #144774;
}
.cid-vaRDYxhwYL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaRDYxhwYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRDYxhwYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRDYxhwYL .mbr-section-subtitle,
.cid-vaRDYxhwYL .mbr-section-btn {
  color: #144774;
}
.cid-vaRDYxhwYL .mbr-section-title {
  color: #144774;
}
.cid-vaRE6J7J1v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaRE6J7J1v .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRE6J7J1v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRE6J7J1v .mbr-section-subtitle,
.cid-vaRE6J7J1v .mbr-section-btn {
  color: #144774;
}
.cid-vaRE6J7J1v .mbr-section-title {
  color: #144774;
}
.cid-v7ww8h4Rpe {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7ww8h4Rpe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ww8h4Rpe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ww8h4Rpe .mbr-section-subtitle,
.cid-v7ww8h4Rpe .mbr-section-btn {
  color: #144774;
}
.cid-v7ww8h4Rpe .mbr-section-title {
  color: #144774;
}
.cid-vaREqKUKGn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaREqKUKGn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaREqKUKGn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaREqKUKGn .mbr-section-subtitle,
.cid-vaREqKUKGn .mbr-section-btn {
  color: #144774;
}
.cid-vaREqKUKGn .mbr-section-title {
  color: #144774;
}
.cid-vaRECENv46 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaRECENv46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRECENv46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRECENv46 .mbr-section-subtitle,
.cid-vaRECENv46 .mbr-section-btn {
  color: #144774;
}
.cid-vaRECENv46 .mbr-section-title {
  color: #144774;
}
.cid-vaREzkQg1D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaREzkQg1D .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaREzkQg1D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaREzkQg1D .mbr-section-subtitle,
.cid-vaREzkQg1D .mbr-section-btn {
  color: #144774;
}
.cid-vaREzkQg1D .mbr-section-title {
  color: #144774;
}
.cid-vaREAmN2mM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaREAmN2mM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaREAmN2mM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaREAmN2mM .mbr-section-subtitle,
.cid-vaREAmN2mM .mbr-section-btn {
  color: #144774;
}
.cid-vaREAmN2mM .mbr-section-title {
  color: #144774;
}
.cid-vaREx4ican {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaREx4ican .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaREx4ican .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaREx4ican .mbr-section-subtitle,
.cid-vaREx4ican .mbr-section-btn {
  color: #144774;
}
.cid-vaREx4ican .mbr-section-title {
  color: #144774;
}
.cid-vaREw1JUg3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaREw1JUg3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaREw1JUg3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaREw1JUg3 .mbr-section-subtitle,
.cid-vaREw1JUg3 .mbr-section-btn {
  color: #144774;
}
.cid-vaREw1JUg3 .mbr-section-title {
  color: #144774;
}
.cid-vaUqOKpBLB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  background-image: linear-gradient(180deg, #23537e 0%, #9db2d6 50%, #fafafa 100%);
}
.cid-vaUqOKpBLB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaUqOKpBLB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaUqOKpBLB .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vaUqOKpBLB .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vaUqOKpBLB .card-wrapper {
  padding: 60px 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaUqOKpBLB .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-vaUqOKpBLB .card-wrapper .panel-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .cid-vaUqOKpBLB .card-wrapper .panel-group {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vaUqOKpBLB .card-wrapper .panel-group .content-wrap:nth-child(2) {
    margin-top: 20px;
  }
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  margin-top: 20px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 20px -8px #e9e9e9;
  background-color: #ffffff;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title {
    padding: 20px;
  }
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #23537e;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) {
  padding-bottom: 20px;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec0424;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ec0424;
  transform: rotate(-180deg);
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-vaUqOKpBLB .card-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 20px;
  }
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: 0;
}
.cid-vaUqOKpBLB .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  opacity: 1;
}
.cid-vaUqOKpBLB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vaUqOKpBLB .panel-title-edit {
  color: #23537e;
}
.cid-vaUqOKpBLB .panel-text {
  color: #565661;
}
.cid-vaUqOKpBLB .panel-text,
.cid-vaUqOKpBLB .panel-body {
  color: #000000;
}
.cid-vaUtCDfsYW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaUtCDfsYW .item {
  margin-bottom: 2rem;
}
.cid-vaUtCDfsYW img {
  width: 100%;
  height: auto;
}
.cid-vaUtCDfsYW a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .cid-vaUtCDfsYW img {
    width: 90%;
  }
}
.cid-vaUtCDfsYW .mbr-section-maintitle {
  color: #144774;
}
.cid-vaUtCDfsYW .mbr-section-title {
  color: #144774;
}
.cid-vaUUSivos1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaUUSivos1 .item {
  margin-bottom: 2rem;
}
.cid-vaUUSivos1 img {
  width: 100%;
  height: auto;
}
.cid-vaUUSivos1 a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .cid-vaUUSivos1 img {
    width: 90%;
  }
}
.cid-vaUUSivos1 .mbr-section-maintitle {
  color: #144774;
}
.cid-vaUUSivos1 .mbr-section-title {
  color: #144774;
}
.cid-vaUVXDSzIi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaUVXDSzIi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaUVXDSzIi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaUVXDSzIi .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vaUVXDSzIi .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-vaUVXDSzIi .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-vaUVXDSzIi .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-vaUVXDSzIi .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vaUVXDSzIi .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vaUVXDSzIi .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vaUVXDSzIi .items-wrapper {
  margin: 0 -10px;
}
.cid-vaUVXDSzIi .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vaUVXDSzIi .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vaUVXDSzIi .item .item-wrapper {
  height: 100%;
  background-color: #dedede;
  padding: 8px;
}
.cid-vaUVXDSzIi .item .item-wrapper .card-box {
  height: 100%;
  padding: 24px;
  background-color: #ffffff;
}
.cid-vaUVXDSzIi .item .item-wrapper .card-box .number-wrapper {
  margin-bottom: 24px;
}
.cid-vaUVXDSzIi .item .item-wrapper .card-box .number-wrapper .item-number {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #ec0424;
}
.cid-vaUVXDSzIi .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vaUVXDSzIi .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vaUVXDSzIi .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-vaUVXDSzIi .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaUVXDSzIi .mbr-label,
.cid-vaUVXDSzIi .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vaUVXDSzIi .mbr-section-title {
  color: #144774;
  text-align: center;
}
.cid-vaUVXDSzIi .mbr-text,
.cid-vaUVXDSzIi .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-vaUVXDSzIi .item-number {
  color: #000000;
}
.cid-vaUVXDSzIi .item-title {
  color: #000000;
}
.cid-vaUVXDSzIi .item-text {
  color: #4f4f4f;
}
.cid-vaUVXDSzIi .item-title,
.cid-vaUVXDSzIi .mbr-section-btn {
  color: #144774;
}
.cid-v7fatO8KVI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fatO8KVI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fatO8KVI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fatO8KVI .mbr-section-subtitle,
.cid-v7fatO8KVI .mbr-section-btn {
  color: #144774;
}
.cid-v7fatO8KVI .mbr-section-title {
  color: #144774;
}
.cid-v7fatWORLQ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7fatWORLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fatWORLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fatWORLQ .mbr-section-subtitle,
.cid-v7fatWORLQ .mbr-section-btn {
  color: #144774;
}
.cid-v7wE0sBCg4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wE0sBCg4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wE0sBCg4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wE0sBCg4 .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wE0sBCg4 .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wE0sBCg4 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wE0sBCg4 .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wE0sBCg4 .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wE0sBCg4 .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wE0sBCg4 .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wE0sBCg4 .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wE0sBCg4 .item-wrapper:hover .card-title,
.cid-v7wE0sBCg4 .item-wrapper:hover .card-text,
.cid-v7wE0sBCg4 .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wE0sBCg4 .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wE0sBCg4 .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wE0sBCg4 .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wE0sBCg4 .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wE0sBCg4 .mbr-section-title {
  color: #ec0424;
}
.cid-v7wE0sBCg4 .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wE0sBCg4 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wE0sBCg4 .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wE0sBCg4 .content-head {
  max-width: 800px;
}
.cid-v7wE0sBCg4 .card-title,
.cid-v7wE0sBCg4 .iconfont-wrapper {
  color: #144774;
}
.cid-v7wE0sBCg4 .card-text,
.cid-v7wE0sBCg4 .item .mbr-section-btn {
  color: #144774;
}
.cid-vaUXH0oudI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vaUXH0oudI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaUXH0oudI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaUXH0oudI .mbr-section-subtitle,
.cid-vaUXH0oudI .mbr-section-btn {
  color: #144774;
}
.cid-vaUXH0oudI .mbr-section-title {
  color: #144774;
}
.cid-v7fatVFAp6 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fatVFAp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fatVFAp6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fatVFAp6 .contects {
  line-height: 2;
}
.cid-v7fatVFAp6 .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7fatVFAp6 .mbr-text {
  color: #144774;
}
.cid-veuCwbcMHS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCwbcMHS .container {
  max-width: 1000px;
}
.cid-veuCwbcMHS img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCwbcMHS .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50MMuWfM {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50MMuWfM .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50MMuWfM .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50MMuWfM .user {
  padding: 0 !important;
}
.cid-va50MMuWfM .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50MMuWfM .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50MMuWfM .carousel-item.active,
.cid-va50MMuWfM .carousel-item-next,
.cid-va50MMuWfM .carousel-item-prev {
  display: flex;
}
.cid-va50MMuWfM .user_name {
  margin: 0;
}
.cid-va50MMuWfM .carousel-controls a {
  font-size: 2rem;
}
.cid-va50MMuWfM .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50MMuWfM .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50MMuWfM ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50MMuWfM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50MMuWfM .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50MMuWfM .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50MMuWfM .user_text {
  color: #144774;
}
.cid-va50MMuWfM .user_desk {
  color: #23537e;
}
.cid-va50MMuWfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50MMuWfM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50MMuWfM .title,
.cid-va50MMuWfM .line-align {
  color: #144774;
}
.cid-vaV0kfYmy0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV0kfYmy0 .mbr-text {
  color: #767676;
}
.cid-vaV0kfYmy0 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV0kfYmy0 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV0kfYmy0 .title .card-title {
  z-index: 1;
}
.cid-vaV0kfYmy0 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV0kfYmy0 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV0kfYmy0 * {
    text-align: left !important;
  }
  .cid-vaV0kfYmy0 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV0kfYmy0 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV0kfYmy0 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV0kfYmy0 .mbr-section-title,
.cid-vaV0kfYmy0 .card-box {
  color: #144774;
}
.cid-vaV0kfYmy0 .card-text {
  color: #000000;
}
.cid-veuCvehdqT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuCvehdqT .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuCvehdqT .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuCvehdqT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuCvehdqT .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuCvehdqT .embla__slide .slide-content {
  width: 100%;
}
.cid-veuCvehdqT .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuCvehdqT .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuCvehdqT .embla__button--next,
.cid-veuCvehdqT .embla__button--prev {
  display: flex;
}
.cid-veuCvehdqT .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuCvehdqT .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuCvehdqT .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuCvehdqT .embla__button.embla__button--next {
  right: 0;
}
.cid-veuCvehdqT .embla {
  position: relative;
  width: 100%;
}
.cid-veuCvehdqT .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuCvehdqT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuCvehdqT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuCvehdqT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV0kRYAZN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV0kRYAZN .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV0kRYAZN .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV0kRYAZN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV0kRYAZN .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV0kRYAZN .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV0kRYAZN .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV0kRYAZN .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV0kRYAZN .embla__button--next,
.cid-vaV0kRYAZN .embla__button--prev {
  display: flex;
}
.cid-vaV0kRYAZN .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV0kRYAZN .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV0kRYAZN .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV0kRYAZN .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV0kRYAZN .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV0kRYAZN .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV0kRYAZN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV0kRYAZN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV0kRYAZN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7fau0ytbH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7fau0ytbH .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7fau0ytbH .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7fau0ytbH button[type="submit"] {
  border-radius: 100px;
}
.cid-v7fau0ytbH a[type="submit"],
.cid-v7fau0ytbH button[type="submit"] {
  margin-top: 0;
}
.cid-v7fau0ytbH .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7fau0ytbH mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7fau0ytbH .row .spinner-border,
.cid-v7fau0ytbH .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7fau0ytbH .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7faJY89MF {
  z-index: 1000;
  width: 100%;
}
.cid-v7faJY89MF nav.navbar {
  position: fixed;
}
.cid-v7faJY89MF .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7faJY89MF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7faJY89MF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7faJY89MF .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7faJY89MF .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-v7faJY89MF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7faJY89MF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7faJY89MF .dropdown-item:hover,
.cid-v7faJY89MF .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7faJY89MF .dropdown-item:hover span {
  color: white;
}
.cid-v7faJY89MF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7faJY89MF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7faJY89MF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7faJY89MF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7faJY89MF .nav-link {
  position: relative;
}
.cid-v7faJY89MF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7faJY89MF .container {
    flex-wrap: nowrap;
  }
}
.cid-v7faJY89MF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7faJY89MF .dropdown-menu,
.cid-v7faJY89MF .navbar.opened {
  background: #ffffff !important;
}
.cid-v7faJY89MF .nav-item:focus,
.cid-v7faJY89MF .nav-link:focus {
  outline: none;
}
.cid-v7faJY89MF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7faJY89MF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7faJY89MF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7faJY89MF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7faJY89MF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7faJY89MF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7faJY89MF .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7faJY89MF .navbar.opened {
  transition: all 0.3s;
}
.cid-v7faJY89MF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7faJY89MF .navbar .navbar-logo img {
  width: auto;
}
.cid-v7faJY89MF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7faJY89MF .navbar.collapsed {
  justify-content: center;
}
.cid-v7faJY89MF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7faJY89MF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7faJY89MF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7faJY89MF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7faJY89MF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7faJY89MF .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-v7faJY89MF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7faJY89MF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7faJY89MF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7faJY89MF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7faJY89MF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7faJY89MF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7faJY89MF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7faJY89MF .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-v7faJY89MF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7faJY89MF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7faJY89MF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7faJY89MF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7faJY89MF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7faJY89MF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7faJY89MF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7faJY89MF .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7faJY89MF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7faJY89MF .dropdown-item.active,
.cid-v7faJY89MF .dropdown-item:active {
  background-color: transparent;
}
.cid-v7faJY89MF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7faJY89MF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7faJY89MF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7faJY89MF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7faJY89MF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7faJY89MF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7faJY89MF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7faJY89MF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7faJY89MF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7faJY89MF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7faJY89MF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7faJY89MF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7faJY89MF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7faJY89MF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7faJY89MF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7faJY89MF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7faJY89MF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7faJY89MF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7faJY89MF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7faJY89MF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7faJY89MF .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-v7faJY89MF .navbar {
    height: 80px;
  }
  .cid-v7faJY89MF .navbar.opened {
    height: auto;
  }
  .cid-v7faJY89MF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7faJZkzJj {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7faJZkzJj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faJZkzJj .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-v7faJZkzJj .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7faJZkzJj .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7faJZkzJj .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7faJZkzJj .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7faJZkzJj .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7faJZkzJj .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7faJZkzJj .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7faJZkzJj .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7faJZkzJj .btn-wrapper {
  margin-top: -15%;
}
.cid-v7faJZkzJj .mbr-section-title {
  color: #272b2e;
}
.cid-v7faJZkzJj .mbr-text,
.cid-v7faJZkzJj .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7faJZkzJj .mbr-section-title,
.cid-v7faJZkzJj .mbr-section-btn,
.cid-v7faJZkzJj .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7wbfS1KV9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7wbfS1KV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wbfS1KV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wbfS1KV9 .mbr-section-title {
  color: #ec0424;
}
.cid-v7wbfS1KV9 .mbr-section-subtitle,
.cid-v7wbfS1KV9 .mbr-section-btn {
  color: #144774;
}
.cid-v7faK00bUb {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7faK00bUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faK00bUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faK00bUb .mbr-section-title {
  color: #23537e;
  text-align: left;
}
.cid-v7faK00bUb .mbr-section-subtitle,
.cid-v7faK00bUb .mbr-section-btn {
  color: #144774;
  text-align: left;
}
.cid-v7wbpJPn9M {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wbpJPn9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wbpJPn9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wbpJPn9M .mbr-section-subtitle,
.cid-v7wbpJPn9M .mbr-section-btn {
  color: #144774;
}
.cid-v7wbpJPn9M .mbr-section-title {
  color: #144774;
}
.cid-v7wwNSTo5w {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7wwNSTo5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wwNSTo5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wwNSTo5w .mbr-section-subtitle,
.cid-v7wwNSTo5w .mbr-section-btn {
  color: #144774;
}
.cid-v7wwNSTo5w .mbr-section-title {
  color: #144774;
}
.cid-v7wbONjgqV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wbONjgqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wbONjgqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wbONjgqV .mbr-section-subtitle,
.cid-v7wbONjgqV .mbr-section-btn {
  color: #144774;
}
.cid-v7wbONjgqV .mbr-section-title {
  color: #144774;
}
.cid-v7faK5BezE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7faK5BezE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faK5BezE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faK5BezE .contects {
  line-height: 2;
}
.cid-v7faK5BezE .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7faK5BezE .mbr-text {
  color: #144774;
}
.cid-v7faK6u3BM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7faK6u3BM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7faK6u3BM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7faK6u3BM .mbr-section-subtitle,
.cid-v7faK6u3BM .mbr-section-btn {
  color: #144774;
}
.cid-v7wEeun4yi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wEeun4yi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wEeun4yi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wEeun4yi .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wEeun4yi .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wEeun4yi .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wEeun4yi .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wEeun4yi .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wEeun4yi .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wEeun4yi .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEeun4yi .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEeun4yi .item-wrapper:hover .card-title,
.cid-v7wEeun4yi .item-wrapper:hover .card-text,
.cid-v7wEeun4yi .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wEeun4yi .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wEeun4yi .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEeun4yi .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wEeun4yi .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEeun4yi .mbr-section-title {
  color: #ec0424;
}
.cid-v7wEeun4yi .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wEeun4yi .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wEeun4yi .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wEeun4yi .content-head {
  max-width: 800px;
}
.cid-v7wEeun4yi .card-title,
.cid-v7wEeun4yi .iconfont-wrapper {
  color: #144774;
}
.cid-v7wEeun4yi .card-text,
.cid-v7wEeun4yi .item .mbr-section-btn {
  color: #144774;
}
.cid-veuCBpCemN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCBpCemN .container {
  max-width: 1000px;
}
.cid-veuCBpCemN img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCBpCemN .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50PFjhOn {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50PFjhOn .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50PFjhOn .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50PFjhOn .user {
  padding: 0 !important;
}
.cid-va50PFjhOn .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50PFjhOn .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50PFjhOn .carousel-item.active,
.cid-va50PFjhOn .carousel-item-next,
.cid-va50PFjhOn .carousel-item-prev {
  display: flex;
}
.cid-va50PFjhOn .user_name {
  margin: 0;
}
.cid-va50PFjhOn .carousel-controls a {
  font-size: 2rem;
}
.cid-va50PFjhOn .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50PFjhOn .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50PFjhOn ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50PFjhOn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50PFjhOn .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50PFjhOn .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50PFjhOn .user_text {
  color: #144774;
}
.cid-va50PFjhOn .user_desk {
  color: #23537e;
}
.cid-va50PFjhOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50PFjhOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50PFjhOn .title,
.cid-va50PFjhOn .line-align {
  color: #144774;
}
.cid-vaV1lByRcL {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1lByRcL .mbr-text {
  color: #767676;
}
.cid-vaV1lByRcL .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1lByRcL .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1lByRcL .title .card-title {
  z-index: 1;
}
.cid-vaV1lByRcL .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1lByRcL .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1lByRcL * {
    text-align: left !important;
  }
  .cid-vaV1lByRcL .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1lByRcL .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1lByRcL .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1lByRcL .mbr-section-title,
.cid-vaV1lByRcL .card-box {
  color: #144774;
}
.cid-vaV1lByRcL .card-text {
  color: #000000;
}
.cid-veuCBYdPfA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuCBYdPfA .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuCBYdPfA .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuCBYdPfA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuCBYdPfA .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuCBYdPfA .embla__slide .slide-content {
  width: 100%;
}
.cid-veuCBYdPfA .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuCBYdPfA .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuCBYdPfA .embla__button--next,
.cid-veuCBYdPfA .embla__button--prev {
  display: flex;
}
.cid-veuCBYdPfA .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuCBYdPfA .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuCBYdPfA .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuCBYdPfA .embla__button.embla__button--next {
  right: 0;
}
.cid-veuCBYdPfA .embla {
  position: relative;
  width: 100%;
}
.cid-veuCBYdPfA .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuCBYdPfA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuCBYdPfA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuCBYdPfA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1m2rnMb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1m2rnMb .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1m2rnMb .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1m2rnMb .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1m2rnMb .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1m2rnMb .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1m2rnMb .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1m2rnMb .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1m2rnMb .embla__button--next,
.cid-vaV1m2rnMb .embla__button--prev {
  display: flex;
}
.cid-vaV1m2rnMb .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1m2rnMb .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1m2rnMb .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1m2rnMb .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1m2rnMb .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1m2rnMb .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1m2rnMb .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1m2rnMb .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1m2rnMb .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7faK9ZXGZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7faK9ZXGZ .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7faK9ZXGZ .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7faK9ZXGZ button[type="submit"] {
  border-radius: 100px;
}
.cid-v7faK9ZXGZ a[type="submit"],
.cid-v7faK9ZXGZ button[type="submit"] {
  margin-top: 0;
}
.cid-v7faK9ZXGZ .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7faK9ZXGZ mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7faK9ZXGZ .row .spinner-border,
.cid-v7faK9ZXGZ .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7faK9ZXGZ .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7fbaqGvJO {
  z-index: 1000;
  width: 100%;
}
.cid-v7fbaqGvJO nav.navbar {
  position: fixed;
}
.cid-v7fbaqGvJO .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7fbaqGvJO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7fbaqGvJO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7fbaqGvJO .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7fbaqGvJO .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-v7fbaqGvJO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7fbaqGvJO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7fbaqGvJO .dropdown-item:hover,
.cid-v7fbaqGvJO .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7fbaqGvJO .dropdown-item:hover span {
  color: white;
}
.cid-v7fbaqGvJO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7fbaqGvJO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7fbaqGvJO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7fbaqGvJO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7fbaqGvJO .nav-link {
  position: relative;
}
.cid-v7fbaqGvJO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7fbaqGvJO .container {
    flex-wrap: nowrap;
  }
}
.cid-v7fbaqGvJO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7fbaqGvJO .dropdown-menu,
.cid-v7fbaqGvJO .navbar.opened {
  background: #ffffff !important;
}
.cid-v7fbaqGvJO .nav-item:focus,
.cid-v7fbaqGvJO .nav-link:focus {
  outline: none;
}
.cid-v7fbaqGvJO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7fbaqGvJO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7fbaqGvJO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7fbaqGvJO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7fbaqGvJO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7fbaqGvJO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7fbaqGvJO .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7fbaqGvJO .navbar.opened {
  transition: all 0.3s;
}
.cid-v7fbaqGvJO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7fbaqGvJO .navbar .navbar-logo img {
  width: auto;
}
.cid-v7fbaqGvJO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7fbaqGvJO .navbar.collapsed {
  justify-content: center;
}
.cid-v7fbaqGvJO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7fbaqGvJO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7fbaqGvJO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7fbaqGvJO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7fbaqGvJO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7fbaqGvJO .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-v7fbaqGvJO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7fbaqGvJO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7fbaqGvJO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7fbaqGvJO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7fbaqGvJO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7fbaqGvJO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7fbaqGvJO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7fbaqGvJO .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-v7fbaqGvJO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7fbaqGvJO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7fbaqGvJO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7fbaqGvJO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7fbaqGvJO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7fbaqGvJO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7fbaqGvJO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7fbaqGvJO .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7fbaqGvJO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7fbaqGvJO .dropdown-item.active,
.cid-v7fbaqGvJO .dropdown-item:active {
  background-color: transparent;
}
.cid-v7fbaqGvJO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7fbaqGvJO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7fbaqGvJO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7fbaqGvJO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7fbaqGvJO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7fbaqGvJO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7fbaqGvJO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7fbaqGvJO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7fbaqGvJO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7fbaqGvJO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7fbaqGvJO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7fbaqGvJO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fbaqGvJO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fbaqGvJO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7fbaqGvJO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fbaqGvJO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7fbaqGvJO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7fbaqGvJO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fbaqGvJO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7fbaqGvJO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7fbaqGvJO .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-v7fbaqGvJO .navbar {
    height: 80px;
  }
  .cid-v7fbaqGvJO .navbar.opened {
    height: auto;
  }
  .cid-v7fbaqGvJO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7fbarGbPK {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7fbarGbPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbarGbPK .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-v7fbarGbPK .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7fbarGbPK .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7fbarGbPK .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7fbarGbPK .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7fbarGbPK .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7fbarGbPK .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7fbarGbPK .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7fbarGbPK .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7fbarGbPK .btn-wrapper {
  margin-top: -15%;
}
.cid-v7fbarGbPK .mbr-section-title {
  color: #272b2e;
}
.cid-v7fbarGbPK .mbr-text,
.cid-v7fbarGbPK .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7fbarGbPK .mbr-section-title,
.cid-v7fbarGbPK .mbr-section-btn,
.cid-v7fbarGbPK .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7fbasktUR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fbasktUR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbasktUR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbasktUR .mbr-section-title {
  color: #ec0424;
  text-align: left;
}
.cid-v7fbasktUR .mbr-section-subtitle,
.cid-v7fbasktUR .mbr-section-btn {
  color: #144774;
  text-align: left;
}
.cid-v7wxwiS2Ya {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v7wxwiS2Ya .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wxwiS2Ya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wxwiS2Ya .mbr-section-subtitle,
.cid-v7wxwiS2Ya .mbr-section-btn {
  color: #144774;
}
.cid-v7wxwiS2Ya .mbr-section-title {
  color: #144774;
}
.cid-v7wxktHwsY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wxktHwsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wxktHwsY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wxktHwsY .mbr-section-subtitle,
.cid-v7wxktHwsY .mbr-section-btn {
  color: #144774;
}
.cid-v7wxktHwsY .mbr-section-title {
  color: #144774;
}
.cid-v7wxkWGDxt {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v7wxkWGDxt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wxkWGDxt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wxkWGDxt .mbr-section-subtitle,
.cid-v7wxkWGDxt .mbr-section-btn {
  color: #144774;
}
.cid-v7wxkWGDxt .mbr-section-title {
  color: #144774;
}
.cid-v7wxnBgTlZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7wxnBgTlZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wxnBgTlZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wxnBgTlZ .mbr-section-subtitle,
.cid-v7wxnBgTlZ .mbr-section-btn {
  color: #144774;
}
.cid-v7fbaAhw5m {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7fbaAhw5m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbaAhw5m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbaAhw5m .contects {
  line-height: 2;
}
.cid-v7fbaAhw5m .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7fbaAhw5m .mbr-text {
  color: #144774;
}
.cid-v7fbaB29Ls {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7fbaB29Ls .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbaB29Ls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbaB29Ls .mbr-section-subtitle,
.cid-v7fbaB29Ls .mbr-section-btn {
  color: #144774;
}
.cid-v7wEolZd6C {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wEolZd6C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wEolZd6C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wEolZd6C .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wEolZd6C .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wEolZd6C .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wEolZd6C .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wEolZd6C .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wEolZd6C .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wEolZd6C .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEolZd6C .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEolZd6C .item-wrapper:hover .card-title,
.cid-v7wEolZd6C .item-wrapper:hover .card-text,
.cid-v7wEolZd6C .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wEolZd6C .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wEolZd6C .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEolZd6C .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wEolZd6C .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEolZd6C .mbr-section-title {
  color: #ec0424;
}
.cid-v7wEolZd6C .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wEolZd6C .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wEolZd6C .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wEolZd6C .content-head {
  max-width: 800px;
}
.cid-v7wEolZd6C .card-title,
.cid-v7wEolZd6C .iconfont-wrapper {
  color: #144774;
}
.cid-v7wEolZd6C .card-text,
.cid-v7wEolZd6C .item .mbr-section-btn {
  color: #144774;
}
.cid-veuCHeKJKH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCHeKJKH .container {
  max-width: 1000px;
}
.cid-veuCHeKJKH img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCHeKJKH .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50SJ23Tp {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50SJ23Tp .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50SJ23Tp .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50SJ23Tp .user {
  padding: 0 !important;
}
.cid-va50SJ23Tp .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50SJ23Tp .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50SJ23Tp .carousel-item.active,
.cid-va50SJ23Tp .carousel-item-next,
.cid-va50SJ23Tp .carousel-item-prev {
  display: flex;
}
.cid-va50SJ23Tp .user_name {
  margin: 0;
}
.cid-va50SJ23Tp .carousel-controls a {
  font-size: 2rem;
}
.cid-va50SJ23Tp .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50SJ23Tp .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50SJ23Tp ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50SJ23Tp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50SJ23Tp .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50SJ23Tp .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50SJ23Tp .user_text {
  color: #144774;
}
.cid-va50SJ23Tp .user_desk {
  color: #23537e;
}
.cid-va50SJ23Tp .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50SJ23Tp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50SJ23Tp .title,
.cid-va50SJ23Tp .line-align {
  color: #144774;
}
.cid-vaV1psJbJ8 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1psJbJ8 .mbr-text {
  color: #767676;
}
.cid-vaV1psJbJ8 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1psJbJ8 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1psJbJ8 .title .card-title {
  z-index: 1;
}
.cid-vaV1psJbJ8 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1psJbJ8 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1psJbJ8 * {
    text-align: left !important;
  }
  .cid-vaV1psJbJ8 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1psJbJ8 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1psJbJ8 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1psJbJ8 .mbr-section-title,
.cid-vaV1psJbJ8 .card-box {
  color: #144774;
}
.cid-vaV1psJbJ8 .card-text {
  color: #000000;
}
.cid-veuCGhthnL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuCGhthnL .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuCGhthnL .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuCGhthnL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuCGhthnL .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuCGhthnL .embla__slide .slide-content {
  width: 100%;
}
.cid-veuCGhthnL .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuCGhthnL .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuCGhthnL .embla__button--next,
.cid-veuCGhthnL .embla__button--prev {
  display: flex;
}
.cid-veuCGhthnL .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuCGhthnL .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuCGhthnL .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuCGhthnL .embla__button.embla__button--next {
  right: 0;
}
.cid-veuCGhthnL .embla {
  position: relative;
  width: 100%;
}
.cid-veuCGhthnL .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuCGhthnL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuCGhthnL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuCGhthnL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1pSIBvc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1pSIBvc .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1pSIBvc .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1pSIBvc .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1pSIBvc .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1pSIBvc .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1pSIBvc .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1pSIBvc .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1pSIBvc .embla__button--next,
.cid-vaV1pSIBvc .embla__button--prev {
  display: flex;
}
.cid-vaV1pSIBvc .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1pSIBvc .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1pSIBvc .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1pSIBvc .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1pSIBvc .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1pSIBvc .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1pSIBvc .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1pSIBvc .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1pSIBvc .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7fbaDN51o {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7fbaDN51o .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7fbaDN51o .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7fbaDN51o button[type="submit"] {
  border-radius: 100px;
}
.cid-v7fbaDN51o a[type="submit"],
.cid-v7fbaDN51o button[type="submit"] {
  margin-top: 0;
}
.cid-v7fbaDN51o .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7fbaDN51o mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7fbaDN51o .row .spinner-border,
.cid-v7fbaDN51o .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7fbaDN51o .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7fbwLGDSk {
  z-index: 1000;
  width: 100%;
}
.cid-v7fbwLGDSk nav.navbar {
  position: fixed;
}
.cid-v7fbwLGDSk .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7fbwLGDSk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7fbwLGDSk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7fbwLGDSk .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7fbwLGDSk .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-v7fbwLGDSk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7fbwLGDSk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7fbwLGDSk .dropdown-item:hover,
.cid-v7fbwLGDSk .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7fbwLGDSk .dropdown-item:hover span {
  color: white;
}
.cid-v7fbwLGDSk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7fbwLGDSk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7fbwLGDSk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7fbwLGDSk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7fbwLGDSk .nav-link {
  position: relative;
}
.cid-v7fbwLGDSk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7fbwLGDSk .container {
    flex-wrap: nowrap;
  }
}
.cid-v7fbwLGDSk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7fbwLGDSk .dropdown-menu,
.cid-v7fbwLGDSk .navbar.opened {
  background: #ffffff !important;
}
.cid-v7fbwLGDSk .nav-item:focus,
.cid-v7fbwLGDSk .nav-link:focus {
  outline: none;
}
.cid-v7fbwLGDSk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7fbwLGDSk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7fbwLGDSk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7fbwLGDSk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7fbwLGDSk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7fbwLGDSk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7fbwLGDSk .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7fbwLGDSk .navbar.opened {
  transition: all 0.3s;
}
.cid-v7fbwLGDSk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7fbwLGDSk .navbar .navbar-logo img {
  width: auto;
}
.cid-v7fbwLGDSk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7fbwLGDSk .navbar.collapsed {
  justify-content: center;
}
.cid-v7fbwLGDSk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7fbwLGDSk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7fbwLGDSk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7fbwLGDSk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7fbwLGDSk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7fbwLGDSk .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-v7fbwLGDSk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7fbwLGDSk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7fbwLGDSk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7fbwLGDSk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7fbwLGDSk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7fbwLGDSk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7fbwLGDSk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7fbwLGDSk .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-v7fbwLGDSk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7fbwLGDSk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7fbwLGDSk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7fbwLGDSk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7fbwLGDSk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7fbwLGDSk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7fbwLGDSk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7fbwLGDSk .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7fbwLGDSk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7fbwLGDSk .dropdown-item.active,
.cid-v7fbwLGDSk .dropdown-item:active {
  background-color: transparent;
}
.cid-v7fbwLGDSk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7fbwLGDSk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7fbwLGDSk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7fbwLGDSk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7fbwLGDSk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7fbwLGDSk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7fbwLGDSk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7fbwLGDSk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7fbwLGDSk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7fbwLGDSk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7fbwLGDSk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7fbwLGDSk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fbwLGDSk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fbwLGDSk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7fbwLGDSk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fbwLGDSk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7fbwLGDSk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7fbwLGDSk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fbwLGDSk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7fbwLGDSk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7fbwLGDSk .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-v7fbwLGDSk .navbar {
    height: 80px;
  }
  .cid-v7fbwLGDSk .navbar.opened {
    height: auto;
  }
  .cid-v7fbwLGDSk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7fbwMBZlu {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7fbwMBZlu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbwMBZlu .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-v7fbwMBZlu .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7fbwMBZlu .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7fbwMBZlu .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7fbwMBZlu .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7fbwMBZlu .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7fbwMBZlu .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7fbwMBZlu .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7fbwMBZlu .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7fbwMBZlu .btn-wrapper {
  margin-top: -15%;
}
.cid-v7fbwMBZlu .mbr-section-title {
  color: #272b2e;
}
.cid-v7fbwMBZlu .mbr-text,
.cid-v7fbwMBZlu .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7fbwMBZlu .mbr-section-title,
.cid-v7fbwMBZlu .mbr-section-btn,
.cid-v7fbwMBZlu .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7fbwNfgtU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fbwNfgtU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbwNfgtU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbwNfgtU .mbr-section-title {
  color: #ec0424;
  text-align: left;
}
.cid-v7fbwNfgtU .mbr-section-subtitle,
.cid-v7fbwNfgtU .mbr-section-btn {
  color: #144774;
  text-align: left;
}
.cid-v7wEqNbr2z {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wEqNbr2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wEqNbr2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wEqNbr2z .mbr-section-subtitle,
.cid-v7wEqNbr2z .mbr-section-btn {
  color: #144774;
}
.cid-v7wEqNbr2z .mbr-section-title {
  color: #144774;
}
.cid-v7wymmiBCM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v7wymmiBCM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wymmiBCM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wymmiBCM .mbr-section-subtitle,
.cid-v7wymmiBCM .mbr-section-btn {
  color: #144774;
}
.cid-v7wymmiBCM .mbr-section-title {
  color: #144774;
}
.cid-vaWfkfbI7s {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaWfkfbI7s .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaWfkfbI7s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaWfkfbI7s .mbr-section-subtitle,
.cid-vaWfkfbI7s .mbr-section-btn {
  color: #144774;
}
.cid-vaWfkfbI7s .mbr-section-title {
  color: #144774;
}
.cid-vaWg1awqVa {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaWg1awqVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaWg1awqVa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaWg1awqVa .mbr-section-subtitle,
.cid-vaWg1awqVa .mbr-section-btn {
  color: #144774;
}
.cid-vaWg1awqVa .mbr-section-title {
  color: #144774;
}
.cid-vaWg6KkJNq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaWg6KkJNq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaWg6KkJNq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaWg6KkJNq .mbr-section-subtitle,
.cid-vaWg6KkJNq .mbr-section-btn {
  color: #144774;
}
.cid-vaWg6KkJNq .mbr-section-title {
  color: #144774;
}
.cid-vaWgxL3WjE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaWgxL3WjE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaWgxL3WjE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaWgxL3WjE .mbr-section-subtitle,
.cid-vaWgxL3WjE .mbr-section-btn {
  color: #144774;
}
.cid-vaWgxL3WjE .mbr-section-title {
  color: #144774;
}
.cid-vaWZy4ggyF {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaWZy4ggyF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaWZy4ggyF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaWZy4ggyF .mbr-section-subtitle,
.cid-vaWZy4ggyF .mbr-section-btn {
  color: #144774;
}
.cid-vaWZy4ggyF .mbr-section-title {
  color: #144774;
}
.cid-vaWZKMHjTI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaWZKMHjTI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaWZKMHjTI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaWZKMHjTI .mbr-section-subtitle,
.cid-vaWZKMHjTI .mbr-section-btn {
  color: #144774;
}
.cid-vaWZKMHjTI .mbr-section-title {
  color: #144774;
}
.cid-vaWZXwLl07 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaWZXwLl07 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaWZXwLl07 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaWZXwLl07 .mbr-section-subtitle,
.cid-vaWZXwLl07 .mbr-section-btn {
  color: #144774;
}
.cid-vaWZXwLl07 .mbr-section-title {
  color: #144774;
}
.cid-vaX05hZvsK {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX05hZvsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX05hZvsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX05hZvsK .mbr-section-subtitle,
.cid-vaX05hZvsK .mbr-section-btn {
  color: #144774;
}
.cid-vaX05hZvsK .mbr-section-title {
  color: #144774;
}
.cid-vaX0bRM6cF {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX0bRM6cF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX0bRM6cF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX0bRM6cF .mbr-section-subtitle,
.cid-vaX0bRM6cF .mbr-section-btn {
  color: #144774;
}
.cid-vaX0bRM6cF .mbr-section-title {
  color: #144774;
}
.cid-v7wznnG5hz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7wznnG5hz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wznnG5hz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wznnG5hz .mbr-section-subtitle,
.cid-v7wznnG5hz .mbr-section-btn {
  color: #144774;
}
.cid-v7wznnG5hz .mbr-section-title {
  color: #144774;
}
.cid-vaX0Lo8bhi {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX0Lo8bhi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX0Lo8bhi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX0Lo8bhi .mbr-section-subtitle,
.cid-vaX0Lo8bhi .mbr-section-btn {
  color: #144774;
}
.cid-vaX0Lo8bhi .mbr-section-title {
  color: #144774;
}
.cid-vaX0PAagQs {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX0PAagQs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX0PAagQs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX0PAagQs .mbr-section-subtitle,
.cid-vaX0PAagQs .mbr-section-btn {
  color: #144774;
}
.cid-vaX0PAagQs .mbr-section-title {
  color: #144774;
}
.cid-vaX0Ygeeo5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX0Ygeeo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX0Ygeeo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX0Ygeeo5 .mbr-section-subtitle,
.cid-vaX0Ygeeo5 .mbr-section-btn {
  color: #144774;
}
.cid-vaX0Ygeeo5 .mbr-section-title {
  color: #144774;
}
.cid-vaX14HkxWN {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX14HkxWN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX14HkxWN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX14HkxWN .mbr-section-subtitle,
.cid-vaX14HkxWN .mbr-section-btn {
  color: #144774;
}
.cid-vaX14HkxWN .mbr-section-title {
  color: #144774;
}
.cid-vaXgRYpxMG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXgRYpxMG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXgRYpxMG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXgRYpxMG .mbr-section-subtitle,
.cid-vaXgRYpxMG .mbr-section-btn {
  color: #144774;
}
.cid-vaXgRYpxMG .mbr-section-title {
  color: #144774;
}
.cid-vaX1h0EYxA {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX1h0EYxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX1h0EYxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX1h0EYxA .mbr-section-subtitle,
.cid-vaX1h0EYxA .mbr-section-btn {
  color: #144774;
}
.cid-vaX1h0EYxA .mbr-section-title {
  color: #144774;
}
.cid-vaXh5o4909 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXh5o4909 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXh5o4909 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXh5o4909 .mbr-section-subtitle,
.cid-vaXh5o4909 .mbr-section-btn {
  color: #144774;
}
.cid-vaXh5o4909 .mbr-section-title {
  color: #144774;
}
.cid-vaX1wuQ2IH {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX1wuQ2IH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX1wuQ2IH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX1wuQ2IH .mbr-section-subtitle,
.cid-vaX1wuQ2IH .mbr-section-btn {
  color: #144774;
}
.cid-vaX1wuQ2IH .mbr-section-title {
  color: #144774;
}
.cid-vaX1x9TuYq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX1x9TuYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX1x9TuYq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX1x9TuYq .mbr-section-subtitle,
.cid-vaX1x9TuYq .mbr-section-btn {
  color: #144774;
}
.cid-vaX1x9TuYq .mbr-section-title {
  color: #144774;
}
.cid-vaX1FrQTtQ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX1FrQTtQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX1FrQTtQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX1FrQTtQ .mbr-section-subtitle,
.cid-vaX1FrQTtQ .mbr-section-btn {
  color: #144774;
}
.cid-vaX1FrQTtQ .mbr-section-title {
  color: #144774;
}
.cid-vaX1SrlE3X {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX1SrlE3X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX1SrlE3X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX1SrlE3X .mbr-section-subtitle,
.cid-vaX1SrlE3X .mbr-section-btn {
  color: #144774;
}
.cid-vaX1SrlE3X .mbr-section-title {
  color: #144774;
}
.cid-vaXgrww7ZE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXgrww7ZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXgrww7ZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXgrww7ZE .mbr-section-subtitle,
.cid-vaXgrww7ZE .mbr-section-btn {
  color: #144774;
}
.cid-vaXgrww7ZE .mbr-section-title {
  color: #144774;
}
.cid-vaXgsfc5BC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXgsfc5BC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXgsfc5BC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXgsfc5BC .mbr-section-subtitle,
.cid-vaXgsfc5BC .mbr-section-btn {
  color: #144774;
}
.cid-vaXgsfc5BC .mbr-section-title {
  color: #144774;
}
.cid-vaX1KW4zUC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaX1KW4zUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX1KW4zUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX1KW4zUC .mbr-section-subtitle,
.cid-vaX1KW4zUC .mbr-section-btn {
  color: #144774;
}
.cid-vaX1KW4zUC .mbr-section-title {
  color: #144774;
}
.cid-vaXhvhX66V {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXhvhX66V .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXhvhX66V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXhvhX66V .mbr-section-subtitle,
.cid-vaXhvhX66V .mbr-section-btn {
  color: #144774;
}
.cid-vaXhvhX66V .mbr-section-title {
  color: #144774;
}
.cid-vaXhJyOa92 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXhJyOa92 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXhJyOa92 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXhJyOa92 .mbr-section-subtitle,
.cid-vaXhJyOa92 .mbr-section-btn {
  color: #144774;
}
.cid-vaXhJyOa92 .mbr-section-title {
  color: #144774;
}
.cid-vaXhZzh3NO {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXhZzh3NO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXhZzh3NO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXhZzh3NO .mbr-section-subtitle,
.cid-vaXhZzh3NO .mbr-section-btn {
  color: #144774;
}
.cid-vaXhZzh3NO .mbr-section-title {
  color: #144774;
}
.cid-vaXi0mviWc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXi0mviWc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXi0mviWc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXi0mviWc .mbr-section-subtitle,
.cid-vaXi0mviWc .mbr-section-btn {
  color: #144774;
}
.cid-vaXi0mviWc .mbr-section-title {
  color: #144774;
}
.cid-vaXilV4aY6 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXilV4aY6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXilV4aY6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXilV4aY6 .mbr-section-subtitle,
.cid-vaXilV4aY6 .mbr-section-btn {
  color: #144774;
}
.cid-vaXilV4aY6 .mbr-section-title {
  color: #144774;
}
.cid-vaXityFylv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXityFylv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXityFylv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXityFylv .mbr-section-subtitle,
.cid-vaXityFylv .mbr-section-btn {
  color: #144774;
}
.cid-vaXityFylv .mbr-section-title {
  color: #144774;
}
.cid-vaXjbtDSDu {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  background-image: linear-gradient(180deg, #23537e 0%, #9db2d6 50%, #fafafa 100%);
}
.cid-vaXjbtDSDu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXjbtDSDu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXjbtDSDu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vaXjbtDSDu .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vaXjbtDSDu .card-wrapper {
  padding: 60px 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaXjbtDSDu .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-vaXjbtDSDu .card-wrapper .panel-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .cid-vaXjbtDSDu .card-wrapper .panel-group {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vaXjbtDSDu .card-wrapper .panel-group .content-wrap:nth-child(2) {
    margin-top: 20px;
  }
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  margin-top: 20px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 20px -8px #e9e9e9;
  background-color: #ffffff;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title {
    padding: 20px;
  }
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #23537e;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) {
  padding-bottom: 20px;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec0424;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ec0424;
  transform: rotate(-180deg);
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 30px 30px;
}
@media (max-width: 992px) {
  .cid-vaXjbtDSDu .card-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 20px;
  }
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: 0;
}
.cid-vaXjbtDSDu .card-wrapper .panel-group .card .panel-collapse.show .panel-body .panel-text {
  opacity: 1;
}
.cid-vaXjbtDSDu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vaXjbtDSDu .panel-title-edit {
  color: #23537e;
}
.cid-vaXjbtDSDu .panel-text {
  color: #565661;
}
.cid-vaXjbtDSDu .panel-text,
.cid-vaXjbtDSDu .panel-body {
  color: #000000;
  text-align: justify;
}
.cid-vaXr4EqUP4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaXr4EqUP4 .item {
  margin-bottom: 2rem;
}
.cid-vaXr4EqUP4 img {
  width: 100%;
  height: auto;
}
.cid-vaXr4EqUP4 a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .cid-vaXr4EqUP4 img {
    width: 90%;
  }
}
.cid-vaXr4EqUP4 .mbr-section-maintitle {
  color: #144774;
}
.cid-vaXr4EqUP4 .mbr-section-title {
  color: #144774;
}
.cid-vaXr4EqUP4 .mbr-text {
  color: #144774;
}
.cid-vaXr5Zo9gi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaXr5Zo9gi .item {
  margin-bottom: 2rem;
}
.cid-vaXr5Zo9gi img {
  width: 100%;
  height: auto;
}
.cid-vaXr5Zo9gi a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .cid-vaXr5Zo9gi img {
    width: 90%;
  }
}
.cid-vaXr5Zo9gi .mbr-section-maintitle {
  color: #144774;
}
.cid-vaXr5Zo9gi .mbr-section-title {
  color: #144774;
}
.cid-vaXr5Zo9gi .mbr-text {
  color: #144774;
}
.cid-vaXGL2w6uQ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaXGL2w6uQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXGL2w6uQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXGL2w6uQ .mbr-section-subtitle,
.cid-vaXGL2w6uQ .mbr-section-btn {
  color: #144774;
}
.cid-vaXGL2w6uQ .mbr-section-title {
  color: #144774;
}
.cid-vb0mFLyswS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #69a8e0;
}
.cid-vb0mFLyswS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0mFLyswS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0mFLyswS .mbr-section-subtitle,
.cid-vb0mFLyswS .mbr-section-btn {
  color: #144774;
}
.cid-vb0mFLyswS .mbr-section-title {
  color: #000000;
}
.cid-vb0mFLyswS .mbr-section-title DIV {
  text-align: center;
}
.cid-vaXJ0sm1yk {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #69a8e0;
  overflow: hidden;
  position: relative;
}
.cid-vaXJ0sm1yk .decor-wrap_1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 314px;
  height: 314px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144774 0, #9db2d6 43%, #e1eb64 100%);
}
.cid-vaXJ0sm1yk .decor-wrap_2 {
  position: absolute;
  top: 25%;
  right: 2%;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144774 0, #9db2d6 43%, #e1eb64 100%);
}
.cid-vaXJ0sm1yk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaXJ0sm1yk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaXJ0sm1yk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-vaXJ0sm1yk .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vaXJ0sm1yk .container {
    padding: 0 30px;
  }
}
.cid-vaXJ0sm1yk .row {
  justify-content: center;
}
.cid-vaXJ0sm1yk .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs {
    display: block;
    margin-bottom: 64px;
  }
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item {
  width: calc(33.2%);
  padding: 64px 35px;
  background-color: #cccccc;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item:first-child {
  border-radius: 2rem 0 0 0;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item:last-child {
  border-radius: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item {
    width: 100%;
    padding: 36px 50px;
    margin-bottom: 2px;
  }
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item:nth-child(2) .nav-link::before {
  background-color: #30c7bf;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item:nth-child(3) .nav-link::before {
  background-color: #509587;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 0;
  border: none;
  color: #144774;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #3beed5;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
.cid-vaXJ0sm1yk .content-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  transform: scale(1.25);
}
.cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap {
    display: block;
  }
}
.cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
  }
}
.cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  width: 50%;
  margin-bottom: 0;
  padding-left: 40px;
  border-left: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vaXJ0sm1yk .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
    width: 100%;
    padding-left: 20px;
  }
}
.cid-vaXJ0sm1yk .mbr-desc {
  color: #ffffff;
}
.cid-vaXJ0sm1yk .mbr-section-title {
  color: #ffffff;
}
.cid-vaXJ0sm1yk .mbr-text {
  color: #ffffff;
}
.cid-vb0mWIUI6W {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #3481c5;
}
.cid-vb0mWIUI6W .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0mWIUI6W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0mWIUI6W .mbr-section-subtitle,
.cid-vb0mWIUI6W .mbr-section-btn {
  color: #144774;
}
.cid-vb0mWIUI6W .mbr-section-title {
  color: #000000;
}
.cid-vb0mWIUI6W .mbr-section-title DIV {
  text-align: center;
}
.cid-vb0lVa7i3i {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #3481c5;
  overflow: hidden;
  position: relative;
}
.cid-vb0lVa7i3i .decor-wrap_1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 314px;
  height: 314px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144774 0, #9db2d6 43%, #e1eb64 100%);
}
.cid-vb0lVa7i3i .decor-wrap_2 {
  position: absolute;
  top: 25%;
  right: 2%;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144774 0, #9db2d6 43%, #e1eb64 100%);
}
.cid-vb0lVa7i3i .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0lVa7i3i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0lVa7i3i .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-vb0lVa7i3i .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vb0lVa7i3i .container {
    padding: 0 30px;
  }
}
.cid-vb0lVa7i3i .row {
  justify-content: center;
}
.cid-vb0lVa7i3i .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs {
    display: block;
    margin-bottom: 64px;
  }
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item {
  width: calc(33.2%);
  padding: 64px 35px;
  background-color: #cccccc;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item:first-child {
  border-radius: 2rem 0 0 0;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item:last-child {
  border-radius: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item {
    width: 100%;
    padding: 36px 50px;
    margin-bottom: 2px;
  }
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item:nth-child(2) .nav-link::before {
  background-color: #30c7bf;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item:nth-child(3) .nav-link::before {
  background-color: #509587;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 0;
  border: none;
  color: #144774;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #3beed5;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
.cid-vb0lVa7i3i .content-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  transform: scale(1.25);
}
.cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap {
    display: block;
  }
}
.cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
  }
}
.cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  width: 50%;
  margin-bottom: 0;
  padding-left: 40px;
  border-left: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vb0lVa7i3i .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
    width: 100%;
    padding-left: 20px;
  }
}
.cid-vb0lVa7i3i .mbr-desc {
  color: #ffffff;
}
.cid-vb0lVa7i3i .mbr-section-title {
  color: #ffffff;
}
.cid-vb0lVa7i3i .mbr-text {
  color: #ffffff;
}
.cid-vb0mVOQP85 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #205c91;
}
.cid-vb0mVOQP85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0mVOQP85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0mVOQP85 .mbr-section-subtitle,
.cid-vb0mVOQP85 .mbr-section-btn {
  color: #144774;
}
.cid-vb0mVOQP85 .mbr-section-title {
  color: #000000;
}
.cid-vb0mVOQP85 .mbr-section-title DIV {
  text-align: center;
}
.cid-vb0lVWt1gj {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #205c91;
  overflow: hidden;
  position: relative;
}
.cid-vb0lVWt1gj .decor-wrap_1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 314px;
  height: 314px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144774 0, #9db2d6 43%, #e1eb64 100%);
}
.cid-vb0lVWt1gj .decor-wrap_2 {
  position: absolute;
  top: 25%;
  right: 2%;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144774 0, #9db2d6 43%, #e1eb64 100%);
}
.cid-vb0lVWt1gj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0lVWt1gj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0lVWt1gj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-vb0lVWt1gj .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vb0lVWt1gj .container {
    padding: 0 30px;
  }
}
.cid-vb0lVWt1gj .row {
  justify-content: center;
}
.cid-vb0lVWt1gj .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs {
    display: block;
    margin-bottom: 64px;
  }
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item {
  width: calc(33.2%);
  padding: 64px 35px;
  background-color: #cccccc;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item:first-child {
  border-radius: 2rem 0 0 0;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item:last-child {
  border-radius: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item {
    width: 100%;
    padding: 36px 50px;
    margin-bottom: 2px;
  }
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item:nth-child(2) .nav-link::before {
  background-color: #30c7bf;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item:nth-child(3) .nav-link::before {
  background-color: #509587;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 0;
  border: none;
  color: #144774;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #3beed5;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
.cid-vb0lVWt1gj .content-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  transform: scale(1.25);
}
.cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap {
    display: block;
  }
}
.cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
  }
}
.cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  width: 50%;
  margin-bottom: 0;
  padding-left: 40px;
  border-left: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vb0lVWt1gj .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
    width: 100%;
    padding-left: 20px;
  }
}
.cid-vb0lVWt1gj .mbr-desc {
  color: #ffffff;
}
.cid-vb0lVWt1gj .mbr-section-title {
  color: #ffffff;
}
.cid-vb0lVWt1gj .mbr-text {
  color: #ffffff;
}
.cid-vb0oHBlvrC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vb0oHBlvrC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0oHBlvrC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0oHBlvrC .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vb0oHBlvrC .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-vb0oHBlvrC .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-vb0oHBlvrC .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-vb0oHBlvrC .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vb0oHBlvrC .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vb0oHBlvrC .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vb0oHBlvrC .items-wrapper {
  margin: 0 -10px;
}
.cid-vb0oHBlvrC .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vb0oHBlvrC .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vb0oHBlvrC .item .item-wrapper {
  height: 100%;
  background-color: #dedede;
  padding: 8px;
}
.cid-vb0oHBlvrC .item .item-wrapper .card-box {
  height: 100%;
  padding: 24px;
  background-color: #ffffff;
}
.cid-vb0oHBlvrC .item .item-wrapper .card-box .number-wrapper {
  margin-bottom: 24px;
}
.cid-vb0oHBlvrC .item .item-wrapper .card-box .number-wrapper .item-number {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #ec0424;
}
.cid-vb0oHBlvrC .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vb0oHBlvrC .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vb0oHBlvrC .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-vb0oHBlvrC .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vb0oHBlvrC .mbr-label,
.cid-vb0oHBlvrC .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vb0oHBlvrC .mbr-section-title {
  color: #144774;
  text-align: center;
}
.cid-vb0oHBlvrC .mbr-text,
.cid-vb0oHBlvrC .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-vb0oHBlvrC .item-number {
  color: #000000;
}
.cid-vb0oHBlvrC .item-title {
  color: #000000;
}
.cid-vb0oHBlvrC .item-text {
  color: #4f4f4f;
}
.cid-vb0oHBlvrC .item-title,
.cid-vb0oHBlvrC .mbr-section-btn {
  color: #144774;
}
.cid-vb0pA5lcOv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vb0pA5lcOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0pA5lcOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0pA5lcOv .row {
  margin: 0 -15px;
}
.cid-vb0pA5lcOv .row .card {
  padding: 0 15px;
}
.cid-vb0pA5lcOv .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vb0pA5lcOv .content-wrapper {
  margin-bottom: 40px;
}
.cid-vb0pA5lcOv .content-wrapper .main-btn .btn {
  margin-bottom: 0;
}
.cid-vb0pA5lcOv .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .main-btn {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vb0pA5lcOv .items-wrapper .item:hover .item-wrapper,
.cid-vb0pA5lcOv .items-wrapper .item:focus .item-wrapper {
  background-color: #dedede;
  padding: 10px 40px;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .items-wrapper .item:hover .item-wrapper,
  .cid-vb0pA5lcOv .items-wrapper .item:focus .item-wrapper {
    padding: 10px 0;
  }
}
.cid-vb0pA5lcOv .items-wrapper .item:hover .item-wrapper .text-wrapper,
.cid-vb0pA5lcOv .items-wrapper .item:focus .item-wrapper .text-wrapper {
  background-color: #f7f7f7;
}
.cid-vb0pA5lcOv .items-wrapper .item .item-wrapper {
  padding: 10px 0;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-vb0pA5lcOv .items-wrapper .item .item-wrapper .item-title {
  padding: 30px 0;
  margin-bottom: 0;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .items-wrapper .item .item-wrapper .item-title {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vb0pA5lcOv .items-wrapper .item .item-wrapper .text-wrapper {
  width: 35%;
  padding: 30px 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .items-wrapper .item .item-wrapper .text-wrapper {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vb0pA5lcOv .items-wrapper .item .item-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vb0pA5lcOv .items-wrapper .item .item-wrapper .item-date {
  padding: 30px 0;
  margin-bottom: 0;
  width: 15%;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .items-wrapper .item .item-wrapper .item-date {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vb0pA5lcOv .mbr-section-title {
  color: #fefff5;
}
.cid-vb0pA5lcOv .item-title {
  color: #144774;
}
.cid-vb0pA5lcOv .item-text {
  color: #144774;
}
.cid-vb0pA5lcOv .item-date {
  color: #fefff5;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vb0pA5lcOv .item-date {
    text-align: left;
  }
}
.cid-vb0qmtrECb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb0qmtrECb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0qmtrECb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0qmtrECb .mbr-section-subtitle,
.cid-vb0qmtrECb .mbr-section-btn {
  color: #144774;
}
.cid-vb0qmtrECb .mbr-section-title {
  color: #205c91;
}
.cid-vb0qmtrECb .mbr-section-title DIV {
  text-align: center;
}
.cid-vb0q8BeSbs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vb0q8BeSbs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0q8BeSbs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0q8BeSbs .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vb0q8BeSbs .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vb0q8BeSbs .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vb0q8BeSbs .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vb0q8BeSbs .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vb0q8BeSbs .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vb0q8BeSbs .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vb0q8BeSbs .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vb0q8BeSbs .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vb0q8BeSbs .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vb0q8BeSbs .item-title {
  color: #ffffff;
}
.cid-vb0q8BeSbs .item-text {
  color: #205c91;
}
.cid-vb0q8BeSbs .item-title,
.cid-vb0q8BeSbs .mbr-section-btn,
.cid-vb0q8BeSbs .icon-wrapper {
  color: #205c91;
}
.cid-v7wEywY0YZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wEywY0YZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wEywY0YZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wEywY0YZ .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wEywY0YZ .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wEywY0YZ .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wEywY0YZ .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wEywY0YZ .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wEywY0YZ .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wEywY0YZ .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEywY0YZ .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEywY0YZ .item-wrapper:hover .card-title,
.cid-v7wEywY0YZ .item-wrapper:hover .card-text,
.cid-v7wEywY0YZ .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wEywY0YZ .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wEywY0YZ .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEywY0YZ .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wEywY0YZ .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEywY0YZ .mbr-section-title {
  color: #ec0424;
}
.cid-v7wEywY0YZ .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wEywY0YZ .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wEywY0YZ .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wEywY0YZ .content-head {
  max-width: 800px;
}
.cid-v7wEywY0YZ .card-title,
.cid-v7wEywY0YZ .iconfont-wrapper {
  color: #144774;
}
.cid-v7wEywY0YZ .card-text,
.cid-v7wEywY0YZ .item .mbr-section-btn {
  color: #144774;
}
.cid-vaX0zJzQVj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vaX0zJzQVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaX0zJzQVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaX0zJzQVj .mbr-section-subtitle,
.cid-vaX0zJzQVj .mbr-section-btn {
  color: #144774;
}
.cid-v7fbwUEnm7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7fbwUEnm7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbwUEnm7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbwUEnm7 .contects {
  line-height: 2;
}
.cid-v7fbwUEnm7 .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7fbwUEnm7 .mbr-text {
  color: #144774;
}
.cid-v7fbwVrNtD {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7fbwVrNtD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbwVrNtD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbwVrNtD .mbr-section-subtitle,
.cid-v7fbwVrNtD .mbr-section-btn {
  color: #144774;
}
.cid-veuCQILsyA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCQILsyA .container {
  max-width: 1000px;
}
.cid-veuCQILsyA img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCQILsyA .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50WbWJIe {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50WbWJIe .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50WbWJIe .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50WbWJIe .user {
  padding: 0 !important;
}
.cid-va50WbWJIe .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50WbWJIe .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50WbWJIe .carousel-item.active,
.cid-va50WbWJIe .carousel-item-next,
.cid-va50WbWJIe .carousel-item-prev {
  display: flex;
}
.cid-va50WbWJIe .user_name {
  margin: 0;
}
.cid-va50WbWJIe .carousel-controls a {
  font-size: 2rem;
}
.cid-va50WbWJIe .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50WbWJIe .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50WbWJIe ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50WbWJIe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50WbWJIe .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50WbWJIe .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50WbWJIe .user_text {
  color: #144774;
}
.cid-va50WbWJIe .user_desk {
  color: #23537e;
}
.cid-va50WbWJIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50WbWJIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50WbWJIe .title,
.cid-va50WbWJIe .line-align {
  color: #144774;
}
.cid-vaV1tezmjk {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1tezmjk .mbr-text {
  color: #767676;
}
.cid-vaV1tezmjk .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1tezmjk .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1tezmjk .title .card-title {
  z-index: 1;
}
.cid-vaV1tezmjk .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1tezmjk .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1tezmjk * {
    text-align: left !important;
  }
  .cid-vaV1tezmjk .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1tezmjk .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1tezmjk .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1tezmjk .mbr-section-title,
.cid-vaV1tezmjk .card-box {
  color: #144774;
}
.cid-vaV1tezmjk .card-text {
  color: #000000;
}
.cid-veuCPtn5BY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuCPtn5BY .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuCPtn5BY .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuCPtn5BY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuCPtn5BY .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuCPtn5BY .embla__slide .slide-content {
  width: 100%;
}
.cid-veuCPtn5BY .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuCPtn5BY .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuCPtn5BY .embla__button--next,
.cid-veuCPtn5BY .embla__button--prev {
  display: flex;
}
.cid-veuCPtn5BY .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuCPtn5BY .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuCPtn5BY .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuCPtn5BY .embla__button.embla__button--next {
  right: 0;
}
.cid-veuCPtn5BY .embla {
  position: relative;
  width: 100%;
}
.cid-veuCPtn5BY .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuCPtn5BY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuCPtn5BY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuCPtn5BY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1tVtYsz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1tVtYsz .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1tVtYsz .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1tVtYsz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1tVtYsz .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1tVtYsz .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1tVtYsz .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1tVtYsz .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1tVtYsz .embla__button--next,
.cid-vaV1tVtYsz .embla__button--prev {
  display: flex;
}
.cid-vaV1tVtYsz .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1tVtYsz .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1tVtYsz .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1tVtYsz .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1tVtYsz .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1tVtYsz .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1tVtYsz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1tVtYsz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1tVtYsz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7fbwYhIqW {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7fbwYhIqW .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7fbwYhIqW .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7fbwYhIqW button[type="submit"] {
  border-radius: 100px;
}
.cid-v7fbwYhIqW a[type="submit"],
.cid-v7fbwYhIqW button[type="submit"] {
  margin-top: 0;
}
.cid-v7fbwYhIqW .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7fbwYhIqW mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7fbwYhIqW .row .spinner-border,
.cid-v7fbwYhIqW .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7fbwYhIqW .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-v7fbQzmxAV {
  z-index: 1000;
  width: 100%;
}
.cid-v7fbQzmxAV nav.navbar {
  position: fixed;
}
.cid-v7fbQzmxAV .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7fbQzmxAV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7fbQzmxAV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7fbQzmxAV .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v7fbQzmxAV .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-v7fbQzmxAV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7fbQzmxAV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7fbQzmxAV .dropdown-item:hover,
.cid-v7fbQzmxAV .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-v7fbQzmxAV .dropdown-item:hover span {
  color: white;
}
.cid-v7fbQzmxAV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7fbQzmxAV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7fbQzmxAV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7fbQzmxAV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7fbQzmxAV .nav-link {
  position: relative;
}
.cid-v7fbQzmxAV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7fbQzmxAV .container {
    flex-wrap: nowrap;
  }
}
.cid-v7fbQzmxAV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7fbQzmxAV .dropdown-menu,
.cid-v7fbQzmxAV .navbar.opened {
  background: #ffffff !important;
}
.cid-v7fbQzmxAV .nav-item:focus,
.cid-v7fbQzmxAV .nav-link:focus {
  outline: none;
}
.cid-v7fbQzmxAV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7fbQzmxAV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7fbQzmxAV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7fbQzmxAV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7fbQzmxAV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7fbQzmxAV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7fbQzmxAV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-v7fbQzmxAV .navbar.opened {
  transition: all 0.3s;
}
.cid-v7fbQzmxAV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7fbQzmxAV .navbar .navbar-logo img {
  width: auto;
}
.cid-v7fbQzmxAV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7fbQzmxAV .navbar.collapsed {
  justify-content: center;
}
.cid-v7fbQzmxAV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7fbQzmxAV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7fbQzmxAV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-v7fbQzmxAV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7fbQzmxAV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7fbQzmxAV .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-v7fbQzmxAV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7fbQzmxAV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7fbQzmxAV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7fbQzmxAV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7fbQzmxAV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7fbQzmxAV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7fbQzmxAV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7fbQzmxAV .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-v7fbQzmxAV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7fbQzmxAV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7fbQzmxAV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7fbQzmxAV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7fbQzmxAV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7fbQzmxAV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7fbQzmxAV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7fbQzmxAV .navbar.navbar-short {
  min-height: 70px;
}
.cid-v7fbQzmxAV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7fbQzmxAV .dropdown-item.active,
.cid-v7fbQzmxAV .dropdown-item:active {
  background-color: transparent;
}
.cid-v7fbQzmxAV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7fbQzmxAV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7fbQzmxAV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7fbQzmxAV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7fbQzmxAV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7fbQzmxAV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7fbQzmxAV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7fbQzmxAV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7fbQzmxAV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7fbQzmxAV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-v7fbQzmxAV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7fbQzmxAV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fbQzmxAV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7fbQzmxAV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7fbQzmxAV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fbQzmxAV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7fbQzmxAV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7fbQzmxAV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7fbQzmxAV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7fbQzmxAV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7fbQzmxAV .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-v7fbQzmxAV .navbar {
    height: 80px;
  }
  .cid-v7fbQzmxAV .navbar.opened {
    height: auto;
  }
  .cid-v7fbQzmxAV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7fbQAlzoa {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7fbQAlzoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbQAlzoa .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-v7fbQAlzoa .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-v7fbQAlzoa .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-v7fbQAlzoa .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-v7fbQAlzoa .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-v7fbQAlzoa .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7fbQAlzoa .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-v7fbQAlzoa .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7fbQAlzoa .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7fbQAlzoa .btn-wrapper {
  margin-top: -15%;
}
.cid-v7fbQAlzoa .mbr-section-title {
  color: #272b2e;
}
.cid-v7fbQAlzoa .mbr-text,
.cid-v7fbQAlzoa .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-v7fbQAlzoa .mbr-section-title,
.cid-v7fbQAlzoa .mbr-section-btn,
.cid-v7fbQAlzoa .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-v7wzR3Qtsx {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7wzR3Qtsx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wzR3Qtsx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wzR3Qtsx .mbr-section-title {
  color: #ec0424;
}
.cid-v7wzR3Qtsx .mbr-section-subtitle,
.cid-v7wzR3Qtsx .mbr-section-btn {
  color: #144774;
}
.cid-v7fbQB3SlJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7fbQB3SlJ img {
  object-fit: cover;
}
.cid-v7fbQB3SlJ .mbr-section-subtitle {
  color: #23537e;
}
.cid-v7fbQB3SlJ .mbr-text,
.cid-v7fbQB3SlJ .mbr-section-btn {
  color: #144774;
}
.cid-v7wA77IJJe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7wA77IJJe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wA77IJJe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wA77IJJe .mbr-section-subtitle,
.cid-v7wA77IJJe .mbr-section-btn {
  color: #144774;
}
.cid-v7wA77IJJe .mbr-section-title {
  color: #144774;
}
.cid-v7wA7yCWHE {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7wA7yCWHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wA7yCWHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wA7yCWHE .mbr-section-subtitle,
.cid-v7wA7yCWHE .mbr-section-btn {
  color: #144774;
}
.cid-v7wA7yCWHE .mbr-section-title {
  color: #144774;
}
.cid-v7fbQF5Mrm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v7fbQF5Mrm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbQF5Mrm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbQF5Mrm .mbr-section-subtitle,
.cid-v7fbQF5Mrm .mbr-section-btn {
  color: #144774;
}
.cid-v7fbQI3hQt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7fbQI3hQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbQI3hQt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbQI3hQt .contects {
  line-height: 2;
}
.cid-v7fbQI3hQt .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-v7fbQI3hQt .mbr-text {
  color: #144774;
}
.cid-v7fbQIRwtX {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v7fbQIRwtX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fbQIRwtX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fbQIRwtX .mbr-section-subtitle,
.cid-v7fbQIRwtX .mbr-section-btn {
  color: #144774;
}
.cid-v7wEIpIxmE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7wEIpIxmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7wEIpIxmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7wEIpIxmE .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-v7wEIpIxmE .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-v7wEIpIxmE .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7wEIpIxmE .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-v7wEIpIxmE .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-v7wEIpIxmE .card-text {
    padding-top: 5rem;
  }
}
.cid-v7wEIpIxmE .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEIpIxmE .item-wrapper:hover {
  background-color: #144774;
  transition: all ease-in-out 0.3s;
}
.cid-v7wEIpIxmE .item-wrapper:hover .card-title,
.cid-v7wEIpIxmE .item-wrapper:hover .card-text,
.cid-v7wEIpIxmE .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v7wEIpIxmE .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v7wEIpIxmE .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEIpIxmE .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #144774;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-v7wEIpIxmE .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v7wEIpIxmE .mbr-section-title {
  color: #ec0424;
}
.cid-v7wEIpIxmE .mbr-section-subtitle {
  color: #144774;
}
.cid-v7wEIpIxmE .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-v7wEIpIxmE .card-box .item-footer {
  margin-top: auto;
}
.cid-v7wEIpIxmE .content-head {
  max-width: 800px;
}
.cid-v7wEIpIxmE .card-title,
.cid-v7wEIpIxmE .iconfont-wrapper {
  color: #144774;
}
.cid-v7wEIpIxmE .card-text,
.cid-v7wEIpIxmE .item .mbr-section-btn {
  color: #144774;
}
.cid-veuCVALSGp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuCVALSGp .container {
  max-width: 1000px;
}
.cid-veuCVALSGp img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuCVALSGp .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-va50ZTIHgx {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-va50ZTIHgx .carousel {
  z-index: 2;
  position: relative;
}
.cid-va50ZTIHgx .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-va50ZTIHgx .user {
  padding: 0 !important;
}
.cid-va50ZTIHgx .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-va50ZTIHgx .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-va50ZTIHgx .carousel-item.active,
.cid-va50ZTIHgx .carousel-item-next,
.cid-va50ZTIHgx .carousel-item-prev {
  display: flex;
}
.cid-va50ZTIHgx .user_name {
  margin: 0;
}
.cid-va50ZTIHgx .carousel-controls a {
  font-size: 2rem;
}
.cid-va50ZTIHgx .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-va50ZTIHgx .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-va50ZTIHgx ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-va50ZTIHgx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-va50ZTIHgx .carousel-indicators li:hover {
  opacity: 1;
}
.cid-va50ZTIHgx .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-va50ZTIHgx .user_text {
  color: #144774;
}
.cid-va50ZTIHgx .user_desk {
  color: #23537e;
}
.cid-va50ZTIHgx .mbr-fallback-image.disabled {
  display: none;
}
.cid-va50ZTIHgx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va50ZTIHgx .title,
.cid-va50ZTIHgx .line-align {
  color: #144774;
}
.cid-vaV1x73qRO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1x73qRO .mbr-text {
  color: #767676;
}
.cid-vaV1x73qRO .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1x73qRO .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1x73qRO .title .card-title {
  z-index: 1;
}
.cid-vaV1x73qRO .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1x73qRO .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1x73qRO * {
    text-align: left !important;
  }
  .cid-vaV1x73qRO .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1x73qRO .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1x73qRO .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1x73qRO .mbr-section-title,
.cid-vaV1x73qRO .card-box {
  color: #144774;
}
.cid-vaV1x73qRO .card-text {
  color: #000000;
}
.cid-veuCW1RVu0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuCW1RVu0 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuCW1RVu0 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuCW1RVu0 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuCW1RVu0 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuCW1RVu0 .embla__slide .slide-content {
  width: 100%;
}
.cid-veuCW1RVu0 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuCW1RVu0 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuCW1RVu0 .embla__button--next,
.cid-veuCW1RVu0 .embla__button--prev {
  display: flex;
}
.cid-veuCW1RVu0 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuCW1RVu0 .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuCW1RVu0 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuCW1RVu0 .embla__button.embla__button--next {
  right: 0;
}
.cid-veuCW1RVu0 .embla {
  position: relative;
  width: 100%;
}
.cid-veuCW1RVu0 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuCW1RVu0 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuCW1RVu0 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuCW1RVu0 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1xHxO2F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1xHxO2F .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1xHxO2F .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1xHxO2F .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1xHxO2F .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1xHxO2F .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1xHxO2F .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1xHxO2F .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1xHxO2F .embla__button--next,
.cid-vaV1xHxO2F .embla__button--prev {
  display: flex;
}
.cid-vaV1xHxO2F .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1xHxO2F .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1xHxO2F .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1xHxO2F .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1xHxO2F .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1xHxO2F .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1xHxO2F .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1xHxO2F .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1xHxO2F .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7fbQM95vm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7fbQM95vm .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-v7fbQM95vm .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-v7fbQM95vm button[type="submit"] {
  border-radius: 100px;
}
.cid-v7fbQM95vm a[type="submit"],
.cid-v7fbQM95vm button[type="submit"] {
  margin-top: 0;
}
.cid-v7fbQM95vm .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-v7fbQM95vm mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-v7fbQM95vm .row .spinner-border,
.cid-v7fbQM95vm .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-v7fbQM95vm .gdpr-block {
  display: none;
}
.cid-v7BGi7jCZK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .content {
    text-align: center;
  }
  .cid-v7BGi7jCZK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7BGi7jCZK .logo-subtitle {
  color: #8d97ad;
}
.cid-v7BGi7jCZK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7BGi7jCZK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7BGi7jCZK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7BGi7jCZK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-v7BGi7jCZK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7BGi7jCZK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v7BGi7jCZK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7BGi7jCZK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7BGi7jCZK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7BGi7jCZK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7BGi7jCZK .list-item {
  display: flex;
}
.cid-v7BGi7jCZK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-v7BGi7jCZK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v7BGi7jCZK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-v7BGi7jCZK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-v7BGi7jCZK .column-title {
  color: #ec0424;
}
.cid-v7BGi7jCZK P {
  color: #ffffff;
}
.cid-v7BGi7jCZK .mbr-text {
  color: #ffffff;
}
.cid-v7BGi7jCZK .copyright > p {
  color: #ffffff;
}
.cid-vaaIdetCFz {
  z-index: 1000;
  width: 100%;
}
.cid-vaaIdetCFz nav.navbar {
  position: fixed;
}
.cid-vaaIdetCFz .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaaIdetCFz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaaIdetCFz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaaIdetCFz .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vaaIdetCFz .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-vaaIdetCFz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaaIdetCFz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaaIdetCFz .dropdown-item:hover,
.cid-vaaIdetCFz .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vaaIdetCFz .dropdown-item:hover span {
  color: white;
}
.cid-vaaIdetCFz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaaIdetCFz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaaIdetCFz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaaIdetCFz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaaIdetCFz .nav-link {
  position: relative;
}
.cid-vaaIdetCFz .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vaaIdetCFz .container {
    flex-wrap: nowrap;
  }
}
.cid-vaaIdetCFz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaaIdetCFz .dropdown-menu,
.cid-vaaIdetCFz .navbar.opened {
  background: #ffffff !important;
}
.cid-vaaIdetCFz .nav-item:focus,
.cid-vaaIdetCFz .nav-link:focus {
  outline: none;
}
.cid-vaaIdetCFz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaaIdetCFz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaaIdetCFz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaaIdetCFz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaaIdetCFz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaaIdetCFz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaaIdetCFz .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vaaIdetCFz .navbar.opened {
  transition: all 0.3s;
}
.cid-vaaIdetCFz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaaIdetCFz .navbar .navbar-logo img {
  width: auto;
}
.cid-vaaIdetCFz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaaIdetCFz .navbar.collapsed {
  justify-content: center;
}
.cid-vaaIdetCFz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaaIdetCFz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaaIdetCFz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vaaIdetCFz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaaIdetCFz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaaIdetCFz .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-vaaIdetCFz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaaIdetCFz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaaIdetCFz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaaIdetCFz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaaIdetCFz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaaIdetCFz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaaIdetCFz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaaIdetCFz .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-vaaIdetCFz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaaIdetCFz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaaIdetCFz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaaIdetCFz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaaIdetCFz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaaIdetCFz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaaIdetCFz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaaIdetCFz .navbar.navbar-short {
  min-height: 70px;
}
.cid-vaaIdetCFz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaaIdetCFz .dropdown-item.active,
.cid-vaaIdetCFz .dropdown-item:active {
  background-color: transparent;
}
.cid-vaaIdetCFz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaaIdetCFz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaaIdetCFz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaaIdetCFz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vaaIdetCFz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaaIdetCFz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaaIdetCFz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaaIdetCFz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaaIdetCFz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaaIdetCFz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vaaIdetCFz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaaIdetCFz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaaIdetCFz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaaIdetCFz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaaIdetCFz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaaIdetCFz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaaIdetCFz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaaIdetCFz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaaIdetCFz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaaIdetCFz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaaIdetCFz .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-vaaIdetCFz .navbar {
    height: 80px;
  }
  .cid-vaaIdetCFz .navbar.opened {
    height: auto;
  }
  .cid-vaaIdetCFz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaaIdfh5CN {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaaIdfh5CN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdfh5CN .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-vaaIdfh5CN .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vaaIdfh5CN .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vaaIdfh5CN .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vaaIdfh5CN .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vaaIdfh5CN .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vaaIdfh5CN .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vaaIdfh5CN .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vaaIdfh5CN .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vaaIdfh5CN .btn-wrapper {
  margin-top: -15%;
}
.cid-vaaIdfh5CN .mbr-section-title {
  color: #272b2e;
}
.cid-vaaIdfh5CN .mbr-text,
.cid-vaaIdfh5CN .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vaaIdfh5CN .mbr-section-title,
.cid-vaaIdfh5CN .mbr-section-btn,
.cid-vaaIdfh5CN .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vaaIdg5APB {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vaaIdg5APB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdg5APB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdg5APB .mbr-section-title {
  color: #ec0424;
}
.cid-vaaIdg5APB .mbr-section-subtitle,
.cid-vaaIdg5APB .mbr-section-btn {
  color: #144774;
}
.cid-vaaIdgHzzb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vaaIdgHzzb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdgHzzb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdgHzzb .mbr-section-title {
  color: #144774;
}
.cid-vaaIdgHzzb .mbr-text {
  color: #144774;
}
.cid-vaaIdjEjyg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vaaIdjEjyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdjEjyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdjEjyg .mbr-section-subtitle,
.cid-vaaIdjEjyg .mbr-section-btn {
  color: #144774;
}
.cid-vaaIdhhwCI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaaIdhhwCI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdhhwCI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdhhwCI .mbr-section-subtitle,
.cid-vaaIdhhwCI .mbr-section-btn {
  color: #144774;
}
.cid-vaaIdhhwCI .mbr-section-title {
  color: #144774;
}
.cid-vaaSuYrvrh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaaSuYrvrh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaSuYrvrh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaSuYrvrh .mbr-section-title {
  color: #144774;
}
.cid-vaaSuYrvrh .mbr-text {
  color: #144774;
}
.cid-vaaIdhSx37 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaaIdhSx37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdhSx37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdhSx37 .mbr-section-subtitle,
.cid-vaaIdhSx37 .mbr-section-btn {
  color: #144774;
}
.cid-vaaIdhSx37 .mbr-section-title {
  color: #144774;
}
.cid-vaaSS3B13w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaaSS3B13w .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaSS3B13w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaSS3B13w .mbr-section-title {
  color: #144774;
}
.cid-vaaSS3B13w .mbr-text {
  color: #144774;
}
.cid-vaaIdj0QNA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaaIdj0QNA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdj0QNA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdj0QNA .mbr-section-subtitle,
.cid-vaaIdj0QNA .mbr-section-btn {
  color: #144774;
}
.cid-vaaIdj0QNA .mbr-section-title {
  color: #144774;
}
.cid-vaaTO91qjF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaaTO91qjF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaTO91qjF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaTO91qjF .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .card-wrapper {
    padding: 0;
  }
}
.cid-vaaTO91qjF .content-wrap .text-wrap {
  margin-bottom: 32px;
}
.cid-vaaTO91qjF .content-wrap .label-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .content-wrap .label-wrapper {
    margin-bottom: 16px;
  }
}
.cid-vaaTO91qjF .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cid-vaaTO91qjF .content-wrap .label-wrapper .label-wrap .line-wrap {
  height: 6px;
  width: 96px;
  background-image: linear-gradient(90deg, #004aad 0, transparent 100%);
}
.cid-vaaTO91qjF .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vaaTO91qjF .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .content-wrap .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper {
  padding: 8px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .items-wrapper .item .item-wrapper {
    padding: 20px;
    display: block;
  }
}
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_1,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_2,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_3,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_4,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_5 {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_1,
  .cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_2,
  .cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_3,
  .cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_4,
  .cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-number_5 {
    margin-bottom: 10px;
  }
}
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-title_1,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-title_2,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-title_3,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-title_4,
.cid-vaaTO91qjF .items-wrapper .item .item-wrapper .item-title_5 {
  margin-bottom: 0;
}
.cid-vaaTO91qjF .items-wrapper .item .card_1 {
  background-color: #cad3e2;
}
.cid-vaaTO91qjF .items-wrapper .item .card_2 {
  background-color: #9db2d6;
}
.cid-vaaTO91qjF .items-wrapper .item .card_3 {
  background-color: #7090c7;
}
.cid-vaaTO91qjF .items-wrapper .item .card_4 {
  background-color: #416ebb;
}
.cid-vaaTO91qjF .items-wrapper .item .card_5 {
  background-color: #004aad;
}
.cid-vaaTO91qjF .mbr-label {
  color: #004aad;
}
.cid-vaaTO91qjF .mbr-desc {
  color: #004aad;
}
.cid-vaaTO91qjF .item-number_1 {
  color: #004aad;
}
.cid-vaaTO91qjF .item-number_2 {
  color: #f6f4f0;
}
.cid-vaaTO91qjF .item-number_3 {
  color: #f6f4f0;
}
.cid-vaaTO91qjF .item-number_4 {
  color: #f6f4f0;
}
.cid-vaaTO91qjF .item-number_5 {
  color: #f6f4f0;
}
.cid-vaaTO91qjF .item-title_1 {
  color: #004aad;
  text-align: left;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .item-title_1 {
    text-align: left;
  }
}
.cid-vaaTO91qjF .item-title_2 {
  color: #f6f4f0;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .item-title_2 {
    text-align: left;
  }
}
.cid-vaaTO91qjF .item-title_3 {
  color: #f6f4f0;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .item-title_3 {
    text-align: left;
  }
}
.cid-vaaTO91qjF .item-title_4 {
  color: #f6f4f0;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .item-title_4 {
    text-align: left;
  }
}
.cid-vaaTO91qjF .item-title_5 {
  color: #f6f4f0;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vaaTO91qjF .item-title_5 {
    text-align: left;
  }
}
.cid-vaaTO91qjF .mbr-desc,
.cid-vaaTO91qjF .desc-wrapper {
  color: #23537e;
}
.cid-vaaIdkhF45 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaaIdkhF45 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdkhF45 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdkhF45 .contects {
  line-height: 2;
}
.cid-vaaIdkhF45 .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vaaIdkhF45 .mbr-text {
  color: #144774;
}
.cid-vaaIdkVncl {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vaaIdkVncl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdkVncl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdkVncl .mbr-section-subtitle,
.cid-vaaIdkVncl .mbr-section-btn {
  color: #144774;
}
.cid-vaaZ1rw28s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaaZ1rw28s .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaZ1rw28s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaZ1rw28s .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vaaZ1rw28s .mbr-section-subtitle,
.cid-vaaZ1rw28s .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vaaY4PPFRo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaaY4PPFRo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaY4PPFRo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaY4PPFRo .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vaaY4PPFRo .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaaY4PPFRo .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaaY4PPFRo .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaaY4PPFRo .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vaaY4PPFRo .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vaaY4PPFRo .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vaaY4PPFRo .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaaY4PPFRo .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vaaY4PPFRo .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaaY4PPFRo .item-title {
  color: #ffffff;
}
.cid-vaaY4PPFRo .item-text {
  color: #23537e;
}
.cid-vaaY4PPFRo .item-title,
.cid-vaaY4PPFRo .mbr-section-btn,
.cid-vaaY4PPFRo .icon-wrapper {
  color: #23537e;
}
.cid-vab00qtjn1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab00qtjn1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab00qtjn1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab00qtjn1 .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vab00qtjn1 .mbr-section-subtitle,
.cid-vab00qtjn1 .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vab00R66P0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab00R66P0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab00R66P0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab00R66P0 .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vab00R66P0 .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vab00R66P0 .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vab00R66P0 .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vab00R66P0 .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vab00R66P0 .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vab00R66P0 .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vab00R66P0 .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vab00R66P0 .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vab00R66P0 .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vab00R66P0 .item-title {
  color: #ffffff;
}
.cid-vab00R66P0 .item-text {
  color: #23537e;
}
.cid-vab00R66P0 .item-title,
.cid-vab00R66P0 .mbr-section-btn,
.cid-vab00R66P0 .icon-wrapper {
  color: #23537e;
}
.cid-vab000diPU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab000diPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab000diPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab000diPU .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vab000diPU .mbr-section-subtitle,
.cid-vab000diPU .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vaaZVIx3BX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaaZVIx3BX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaZVIx3BX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaZVIx3BX .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vaaZVIx3BX .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaaZVIx3BX .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaaZVIx3BX .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaaZVIx3BX .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vaaZVIx3BX .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vaaZVIx3BX .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vaaZVIx3BX .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaaZVIx3BX .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vaaZVIx3BX .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaaZVIx3BX .item-title {
  color: #ffffff;
}
.cid-vaaZVIx3BX .item-text {
  color: #23537e;
}
.cid-vaaZVIx3BX .item-title,
.cid-vaaZVIx3BX .mbr-section-btn,
.cid-vaaZVIx3BX .icon-wrapper {
  color: #23537e;
}
.cid-vab0j2fl44 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab0j2fl44 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab0j2fl44 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab0j2fl44 .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vab0j2fl44 .mbr-section-subtitle,
.cid-vab0j2fl44 .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vaaZUQOtwX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaaZUQOtwX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaZUQOtwX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaZUQOtwX .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vaaZUQOtwX .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaaZUQOtwX .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vaaZUQOtwX .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaaZUQOtwX .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vaaZUQOtwX .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vaaZUQOtwX .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vaaZUQOtwX .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vaaZUQOtwX .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vaaZUQOtwX .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vaaZUQOtwX .item-title {
  color: #ffffff;
}
.cid-vaaZUQOtwX .item-text {
  color: #23537e;
}
.cid-vaaZUQOtwX .item-title,
.cid-vaaZUQOtwX .mbr-section-btn,
.cid-vaaZUQOtwX .icon-wrapper {
  color: #23537e;
}
.cid-vab06jo2ob {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab06jo2ob .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab06jo2ob .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab06jo2ob .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vab06jo2ob .mbr-section-subtitle,
.cid-vab06jo2ob .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vab0hEwSYc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab0hEwSYc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab0hEwSYc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab0hEwSYc .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vab0hEwSYc .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vab0hEwSYc .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vab0hEwSYc .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vab0hEwSYc .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vab0hEwSYc .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vab0hEwSYc .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vab0hEwSYc .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vab0hEwSYc .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vab0hEwSYc .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vab0hEwSYc .item-title {
  color: #ffffff;
}
.cid-vab0hEwSYc .item-text {
  color: #23537e;
}
.cid-vab0hEwSYc .item-title,
.cid-vab0hEwSYc .mbr-section-btn,
.cid-vab0hEwSYc .icon-wrapper {
  color: #23537e;
}
.cid-vab1n6TCsp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab1n6TCsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab1n6TCsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab1n6TCsp .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vab1n6TCsp .mbr-section-subtitle,
.cid-vab1n6TCsp .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vab1oOFZ3N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab1oOFZ3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab1oOFZ3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab1oOFZ3N .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-vab1oOFZ3N .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vab1oOFZ3N .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vab1oOFZ3N .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vab1oOFZ3N .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vab1oOFZ3N .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-vab1oOFZ3N .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-vab1oOFZ3N .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vab1oOFZ3N .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vab1oOFZ3N .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vab1oOFZ3N .item-title {
  color: #ffffff;
}
.cid-vab1oOFZ3N .item-text {
  color: #23537e;
}
.cid-vab1oOFZ3N .item-title,
.cid-vab1oOFZ3N .mbr-section-btn,
.cid-vab1oOFZ3N .icon-wrapper {
  color: #23537e;
  text-align: center;
}
.cid-veuD1saZRR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuD1saZRR .container {
  max-width: 1000px;
}
.cid-veuD1saZRR img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuD1saZRR .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vaaIdnDHe0 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vaaIdnDHe0 .carousel {
  z-index: 2;
  position: relative;
}
.cid-vaaIdnDHe0 .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vaaIdnDHe0 .user {
  padding: 0 !important;
}
.cid-vaaIdnDHe0 .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vaaIdnDHe0 .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vaaIdnDHe0 .carousel-item.active,
.cid-vaaIdnDHe0 .carousel-item-next,
.cid-vaaIdnDHe0 .carousel-item-prev {
  display: flex;
}
.cid-vaaIdnDHe0 .user_name {
  margin: 0;
}
.cid-vaaIdnDHe0 .carousel-controls a {
  font-size: 2rem;
}
.cid-vaaIdnDHe0 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vaaIdnDHe0 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vaaIdnDHe0 ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vaaIdnDHe0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vaaIdnDHe0 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vaaIdnDHe0 .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vaaIdnDHe0 .user_text {
  color: #144774;
}
.cid-vaaIdnDHe0 .user_desk {
  color: #23537e;
}
.cid-vaaIdnDHe0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaaIdnDHe0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaaIdnDHe0 .title,
.cid-vaaIdnDHe0 .line-align {
  color: #144774;
}
.cid-vaV1CIRELN {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1CIRELN .mbr-text {
  color: #767676;
}
.cid-vaV1CIRELN .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1CIRELN .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1CIRELN .title .card-title {
  z-index: 1;
}
.cid-vaV1CIRELN .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1CIRELN .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1CIRELN * {
    text-align: left !important;
  }
  .cid-vaV1CIRELN .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1CIRELN .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1CIRELN .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1CIRELN .mbr-section-title,
.cid-vaV1CIRELN .card-box {
  color: #144774;
}
.cid-vaV1CIRELN .card-text {
  color: #000000;
}
.cid-veuD21F2MR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuD21F2MR .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuD21F2MR .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuD21F2MR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuD21F2MR .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuD21F2MR .embla__slide .slide-content {
  width: 100%;
}
.cid-veuD21F2MR .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuD21F2MR .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuD21F2MR .embla__button--next,
.cid-veuD21F2MR .embla__button--prev {
  display: flex;
}
.cid-veuD21F2MR .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuD21F2MR .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuD21F2MR .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuD21F2MR .embla__button.embla__button--next {
  right: 0;
}
.cid-veuD21F2MR .embla {
  position: relative;
  width: 100%;
}
.cid-veuD21F2MR .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuD21F2MR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuD21F2MR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuD21F2MR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1DbSsd8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1DbSsd8 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1DbSsd8 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1DbSsd8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1DbSsd8 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1DbSsd8 .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1DbSsd8 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1DbSsd8 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1DbSsd8 .embla__button--next,
.cid-vaV1DbSsd8 .embla__button--prev {
  display: flex;
}
.cid-vaV1DbSsd8 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1DbSsd8 .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1DbSsd8 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1DbSsd8 .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1DbSsd8 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1DbSsd8 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1DbSsd8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1DbSsd8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1DbSsd8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaaIdpv7MK {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vaaIdpv7MK .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vaaIdpv7MK .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vaaIdpv7MK button[type="submit"] {
  border-radius: 100px;
}
.cid-vaaIdpv7MK a[type="submit"],
.cid-vaaIdpv7MK button[type="submit"] {
  margin-top: 0;
}
.cid-vaaIdpv7MK .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vaaIdpv7MK mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vaaIdpv7MK .row .spinner-border,
.cid-vaaIdpv7MK .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vaaIdpv7MK .gdpr-block {
  display: none;
}
.cid-vaaIdqp7WJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vaaIdqp7WJ .content {
    text-align: center;
  }
  .cid-vaaIdqp7WJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vaaIdqp7WJ .logo-subtitle {
  color: #8d97ad;
}
.cid-vaaIdqp7WJ .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vaaIdqp7WJ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vaaIdqp7WJ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vaaIdqp7WJ .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vaaIdqp7WJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vaaIdqp7WJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vaaIdqp7WJ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vaaIdqp7WJ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vaaIdqp7WJ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vaaIdqp7WJ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vaaIdqp7WJ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vaaIdqp7WJ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vaaIdqp7WJ .list-item {
  display: flex;
}
.cid-vaaIdqp7WJ .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vaaIdqp7WJ ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vaaIdqp7WJ ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vaaIdqp7WJ ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vaaIdqp7WJ .column-title {
  color: #ec0424;
}
.cid-vaaIdqp7WJ P {
  color: #ffffff;
}
.cid-vaaIdqp7WJ .mbr-text {
  color: #ffffff;
}
.cid-vaaIdqp7WJ .copyright > p {
  color: #ffffff;
}
.cid-vab8h8Yuf1 {
  z-index: 1000;
  width: 100%;
}
.cid-vab8h8Yuf1 nav.navbar {
  position: fixed;
}
.cid-vab8h8Yuf1 .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab8h8Yuf1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab8h8Yuf1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab8h8Yuf1 .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab8h8Yuf1 .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-vab8h8Yuf1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab8h8Yuf1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab8h8Yuf1 .dropdown-item:hover,
.cid-vab8h8Yuf1 .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab8h8Yuf1 .dropdown-item:hover span {
  color: white;
}
.cid-vab8h8Yuf1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab8h8Yuf1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab8h8Yuf1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab8h8Yuf1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab8h8Yuf1 .nav-link {
  position: relative;
}
.cid-vab8h8Yuf1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab8h8Yuf1 .container {
    flex-wrap: nowrap;
  }
}
.cid-vab8h8Yuf1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab8h8Yuf1 .dropdown-menu,
.cid-vab8h8Yuf1 .navbar.opened {
  background: #ffffff !important;
}
.cid-vab8h8Yuf1 .nav-item:focus,
.cid-vab8h8Yuf1 .nav-link:focus {
  outline: none;
}
.cid-vab8h8Yuf1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab8h8Yuf1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab8h8Yuf1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab8h8Yuf1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab8h8Yuf1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab8h8Yuf1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab8h8Yuf1 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab8h8Yuf1 .navbar.opened {
  transition: all 0.3s;
}
.cid-vab8h8Yuf1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab8h8Yuf1 .navbar .navbar-logo img {
  width: auto;
}
.cid-vab8h8Yuf1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab8h8Yuf1 .navbar.collapsed {
  justify-content: center;
}
.cid-vab8h8Yuf1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab8h8Yuf1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab8h8Yuf1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab8h8Yuf1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab8h8Yuf1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab8h8Yuf1 .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-vab8h8Yuf1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab8h8Yuf1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab8h8Yuf1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab8h8Yuf1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab8h8Yuf1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab8h8Yuf1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab8h8Yuf1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab8h8Yuf1 .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-vab8h8Yuf1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab8h8Yuf1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab8h8Yuf1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab8h8Yuf1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab8h8Yuf1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab8h8Yuf1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab8h8Yuf1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab8h8Yuf1 .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab8h8Yuf1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab8h8Yuf1 .dropdown-item.active,
.cid-vab8h8Yuf1 .dropdown-item:active {
  background-color: transparent;
}
.cid-vab8h8Yuf1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab8h8Yuf1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab8h8Yuf1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab8h8Yuf1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab8h8Yuf1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab8h8Yuf1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab8h8Yuf1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab8h8Yuf1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab8h8Yuf1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab8h8Yuf1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab8h8Yuf1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab8h8Yuf1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8h8Yuf1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8h8Yuf1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab8h8Yuf1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8h8Yuf1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab8h8Yuf1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab8h8Yuf1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8h8Yuf1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab8h8Yuf1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab8h8Yuf1 .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-vab8h8Yuf1 .navbar {
    height: 80px;
  }
  .cid-vab8h8Yuf1 .navbar.opened {
    height: auto;
  }
  .cid-vab8h8Yuf1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab8hbpqRl {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab8hbpqRl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hbpqRl .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-vab8hbpqRl .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab8hbpqRl .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab8hbpqRl .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab8hbpqRl .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab8hbpqRl .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab8hbpqRl .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab8hbpqRl .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab8hbpqRl .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab8hbpqRl .btn-wrapper {
  margin-top: -15%;
}
.cid-vab8hbpqRl .mbr-section-title {
  color: #272b2e;
}
.cid-vab8hbpqRl .mbr-text,
.cid-vab8hbpqRl .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab8hbpqRl .mbr-section-title,
.cid-vab8hbpqRl .mbr-section-btn,
.cid-vab8hbpqRl .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab8hckUzd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8hckUzd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hckUzd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8hckUzd .mbr-section-title {
  color: #ec0424;
}
.cid-vab8hckUzd .mbr-section-subtitle,
.cid-vab8hckUzd .mbr-section-btn {
  color: #144774;
}
.cid-vab8hd0Ffd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8hd0Ffd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hd0Ffd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8hd0Ffd .mbr-section-title {
  color: #144774;
}
.cid-vab8hd0Ffd .mbr-text {
  color: #144774;
}
.cid-vab8heslAy {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8heslAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8heslAy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8heslAy .mbr-section-subtitle,
.cid-vab8heslAy .mbr-section-btn {
  color: #144774;
}
.cid-vab8heslAy .mbr-section-title {
  color: #144774;
}
.cid-vab8hfdxi5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8hfdxi5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hfdxi5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8hfdxi5 .mbr-section-title {
  color: #144774;
}
.cid-vab8hfdxi5 .mbr-text {
  color: #144774;
}
.cid-vab8hdOev3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8hdOev3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hdOev3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8hdOev3 .mbr-section-subtitle,
.cid-vab8hdOev3 .mbr-section-btn {
  color: #144774;
}
.cid-vab8hiEbNu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8hiEbNu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hiEbNu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8hiEbNu .contects {
  line-height: 2;
}
.cid-vab8hiEbNu .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab8hiEbNu .mbr-text {
  color: #144774;
}
.cid-vab8hjlDIn {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab8hjlDIn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hjlDIn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8hjlDIn .mbr-section-subtitle,
.cid-vab8hjlDIn .mbr-section-btn {
  color: #144774;
}
.cid-vahH0gv3Ip {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahH0gv3Ip .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahH0gv3Ip .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahH0gv3Ip .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahH0gv3Ip .mbr-section-subtitle,
.cid-vahH0gv3Ip .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahH1f7N0U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahH1f7N0U .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahH1f7N0U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahH1f7N0U .item {
  margin-bottom: 3rem;
}
.cid-vahH1f7N0U .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahH1f7N0U .mbr-section-title {
  color: #ec0424;
}
.cid-vahH1PhqOX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahH1PhqOX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahH1PhqOX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahH1PhqOX .item {
  margin-bottom: 3rem;
}
.cid-vahH1PhqOX .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahH1PhqOX .mbr-section-title {
  color: #ec0424;
}
.cid-vahH2XcTFd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahH2XcTFd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahH2XcTFd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahH2XcTFd .item {
  margin-bottom: 3rem;
}
.cid-vahH2XcTFd .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahH2XcTFd .mbr-section-title {
  color: #ec0424;
}
.cid-vahH3pzk1u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahH3pzk1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahH3pzk1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahH3pzk1u .item {
  margin-bottom: 3rem;
}
.cid-vahH3pzk1u .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahH3pzk1u .mbr-section-title {
  color: #ec0424;
}
.cid-vahH3PmEUF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahH3PmEUF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahH3PmEUF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahH3PmEUF .item {
  margin-bottom: 3rem;
}
.cid-vahH3PmEUF .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahH3PmEUF .mbr-section-title {
  color: #ec0424;
}
.cid-vahH4ijDY4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahH4ijDY4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahH4ijDY4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahH4ijDY4 .item {
  margin-bottom: 3rem;
}
.cid-vahH4ijDY4 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahH4ijDY4 .mbr-section-title {
  color: #ec0424;
}
.cid-veuD6vi2JG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuD6vi2JG .container {
  max-width: 1000px;
}
.cid-veuD6vi2JG img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuD6vi2JG .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab8hus7FF {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab8hus7FF .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab8hus7FF .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab8hus7FF .user {
  padding: 0 !important;
}
.cid-vab8hus7FF .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab8hus7FF .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab8hus7FF .carousel-item.active,
.cid-vab8hus7FF .carousel-item-next,
.cid-vab8hus7FF .carousel-item-prev {
  display: flex;
}
.cid-vab8hus7FF .user_name {
  margin: 0;
}
.cid-vab8hus7FF .carousel-controls a {
  font-size: 2rem;
}
.cid-vab8hus7FF .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab8hus7FF .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab8hus7FF ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab8hus7FF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab8hus7FF .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab8hus7FF .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab8hus7FF .user_text {
  color: #144774;
}
.cid-vab8hus7FF .user_desk {
  color: #23537e;
}
.cid-vab8hus7FF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8hus7FF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8hus7FF .title,
.cid-vab8hus7FF .line-align {
  color: #144774;
}
.cid-vaV1Gzt3eb {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1Gzt3eb .mbr-text {
  color: #767676;
}
.cid-vaV1Gzt3eb .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1Gzt3eb .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1Gzt3eb .title .card-title {
  z-index: 1;
}
.cid-vaV1Gzt3eb .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1Gzt3eb .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1Gzt3eb * {
    text-align: left !important;
  }
  .cid-vaV1Gzt3eb .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1Gzt3eb .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1Gzt3eb .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1Gzt3eb .mbr-section-title,
.cid-vaV1Gzt3eb .card-box {
  color: #144774;
}
.cid-vaV1Gzt3eb .card-text {
  color: #000000;
}
.cid-veuD74kgwe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuD74kgwe .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuD74kgwe .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuD74kgwe .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuD74kgwe .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuD74kgwe .embla__slide .slide-content {
  width: 100%;
}
.cid-veuD74kgwe .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuD74kgwe .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuD74kgwe .embla__button--next,
.cid-veuD74kgwe .embla__button--prev {
  display: flex;
}
.cid-veuD74kgwe .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuD74kgwe .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuD74kgwe .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuD74kgwe .embla__button.embla__button--next {
  right: 0;
}
.cid-veuD74kgwe .embla {
  position: relative;
  width: 100%;
}
.cid-veuD74kgwe .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuD74kgwe .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuD74kgwe .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuD74kgwe .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1GZJxZp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1GZJxZp .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1GZJxZp .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1GZJxZp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1GZJxZp .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1GZJxZp .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1GZJxZp .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1GZJxZp .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1GZJxZp .embla__button--next,
.cid-vaV1GZJxZp .embla__button--prev {
  display: flex;
}
.cid-vaV1GZJxZp .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1GZJxZp .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1GZJxZp .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1GZJxZp .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1GZJxZp .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1GZJxZp .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1GZJxZp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1GZJxZp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1GZJxZp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab8hwNZ3R {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab8hwNZ3R .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab8hwNZ3R .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab8hwNZ3R button[type="submit"] {
  border-radius: 100px;
}
.cid-vab8hwNZ3R a[type="submit"],
.cid-vab8hwNZ3R button[type="submit"] {
  margin-top: 0;
}
.cid-vab8hwNZ3R .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab8hwNZ3R mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab8hwNZ3R .row .spinner-border,
.cid-vab8hwNZ3R .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab8hwNZ3R .gdpr-block {
  display: none;
}
.cid-vab8hxSH5D {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab8hxSH5D .content {
    text-align: center;
  }
  .cid-vab8hxSH5D .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab8hxSH5D .logo-subtitle {
  color: #8d97ad;
}
.cid-vab8hxSH5D .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab8hxSH5D .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab8hxSH5D .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab8hxSH5D .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab8hxSH5D .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab8hxSH5D .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab8hxSH5D .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab8hxSH5D .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab8hxSH5D .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab8hxSH5D .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab8hxSH5D .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab8hxSH5D .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab8hxSH5D .list-item {
  display: flex;
}
.cid-vab8hxSH5D .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab8hxSH5D ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab8hxSH5D ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab8hxSH5D ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab8hxSH5D .column-title {
  color: #ec0424;
}
.cid-vab8hxSH5D P {
  color: #ffffff;
}
.cid-vab8hxSH5D .mbr-text {
  color: #ffffff;
}
.cid-vab8hxSH5D .copyright > p {
  color: #ffffff;
}
.cid-vab8xgNvyc {
  z-index: 1000;
  width: 100%;
}
.cid-vab8xgNvyc nav.navbar {
  position: fixed;
}
.cid-vab8xgNvyc .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab8xgNvyc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab8xgNvyc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab8xgNvyc .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab8xgNvyc .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-vab8xgNvyc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab8xgNvyc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab8xgNvyc .dropdown-item:hover,
.cid-vab8xgNvyc .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab8xgNvyc .dropdown-item:hover span {
  color: white;
}
.cid-vab8xgNvyc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab8xgNvyc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab8xgNvyc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab8xgNvyc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab8xgNvyc .nav-link {
  position: relative;
}
.cid-vab8xgNvyc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab8xgNvyc .container {
    flex-wrap: nowrap;
  }
}
.cid-vab8xgNvyc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab8xgNvyc .dropdown-menu,
.cid-vab8xgNvyc .navbar.opened {
  background: #ffffff !important;
}
.cid-vab8xgNvyc .nav-item:focus,
.cid-vab8xgNvyc .nav-link:focus {
  outline: none;
}
.cid-vab8xgNvyc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab8xgNvyc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab8xgNvyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab8xgNvyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab8xgNvyc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab8xgNvyc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab8xgNvyc .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab8xgNvyc .navbar.opened {
  transition: all 0.3s;
}
.cid-vab8xgNvyc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab8xgNvyc .navbar .navbar-logo img {
  width: auto;
}
.cid-vab8xgNvyc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab8xgNvyc .navbar.collapsed {
  justify-content: center;
}
.cid-vab8xgNvyc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab8xgNvyc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab8xgNvyc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab8xgNvyc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab8xgNvyc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab8xgNvyc .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-vab8xgNvyc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab8xgNvyc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab8xgNvyc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab8xgNvyc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab8xgNvyc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab8xgNvyc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab8xgNvyc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab8xgNvyc .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-vab8xgNvyc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab8xgNvyc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab8xgNvyc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab8xgNvyc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab8xgNvyc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab8xgNvyc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab8xgNvyc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab8xgNvyc .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab8xgNvyc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab8xgNvyc .dropdown-item.active,
.cid-vab8xgNvyc .dropdown-item:active {
  background-color: transparent;
}
.cid-vab8xgNvyc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab8xgNvyc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab8xgNvyc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab8xgNvyc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab8xgNvyc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab8xgNvyc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab8xgNvyc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab8xgNvyc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab8xgNvyc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab8xgNvyc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab8xgNvyc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab8xgNvyc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8xgNvyc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8xgNvyc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab8xgNvyc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8xgNvyc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab8xgNvyc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab8xgNvyc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8xgNvyc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab8xgNvyc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab8xgNvyc .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-vab8xgNvyc .navbar {
    height: 80px;
  }
  .cid-vab8xgNvyc .navbar.opened {
    height: auto;
  }
  .cid-vab8xgNvyc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab8xhtgyB {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab8xhtgyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xhtgyB .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-vab8xhtgyB .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab8xhtgyB .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab8xhtgyB .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab8xhtgyB .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab8xhtgyB .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab8xhtgyB .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab8xhtgyB .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab8xhtgyB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab8xhtgyB .btn-wrapper {
  margin-top: -15%;
}
.cid-vab8xhtgyB .mbr-section-title {
  color: #272b2e;
}
.cid-vab8xhtgyB .mbr-text,
.cid-vab8xhtgyB .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab8xhtgyB .mbr-section-title,
.cid-vab8xhtgyB .mbr-section-btn,
.cid-vab8xhtgyB .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab8xipZIj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8xipZIj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xipZIj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8xipZIj .mbr-section-title {
  color: #ec0424;
}
.cid-vab8xipZIj .mbr-section-subtitle,
.cid-vab8xipZIj .mbr-section-btn {
  color: #144774;
}
.cid-vab8xj3jzb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8xj3jzb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xj3jzb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8xj3jzb .mbr-section-title {
  color: #144774;
}
.cid-vab8xj3jzb .mbr-text {
  color: #144774;
}
.cid-vab8xkhwA3 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8xkhwA3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xkhwA3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8xkhwA3 .mbr-section-subtitle,
.cid-vab8xkhwA3 .mbr-section-btn {
  color: #144774;
}
.cid-vab8xkhwA3 .mbr-section-title {
  color: #144774;
}
.cid-vab8xjFwGM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8xjFwGM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xjFwGM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8xjFwGM .mbr-section-subtitle,
.cid-vab8xjFwGM .mbr-section-btn {
  color: #144774;
}
.cid-vab8xnV0ko {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8xnV0ko .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xnV0ko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8xnV0ko .contects {
  line-height: 2;
}
.cid-vab8xnV0ko .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab8xnV0ko .mbr-text {
  color: #144774;
}
.cid-vab8xoAKGh {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab8xoAKGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xoAKGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8xoAKGh .mbr-section-subtitle,
.cid-vab8xoAKGh .mbr-section-btn {
  color: #144774;
}
.cid-vahGO3d6ma {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGO3d6ma .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGO3d6ma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGO3d6ma .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahGO3d6ma .mbr-section-subtitle,
.cid-vahGO3d6ma .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahGOL5jx8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGOL5jx8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGOL5jx8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGOL5jx8 .item {
  margin-bottom: 3rem;
}
.cid-vahGOL5jx8 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGOL5jx8 .mbr-section-title {
  color: #ec0424;
}
.cid-vahGPlF4qd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGPlF4qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGPlF4qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGPlF4qd .item {
  margin-bottom: 3rem;
}
.cid-vahGPlF4qd .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGPlF4qd .mbr-section-title {
  color: #ec0424;
}
.cid-vahGPHQ1d2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGPHQ1d2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGPHQ1d2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGPHQ1d2 .item {
  margin-bottom: 3rem;
}
.cid-vahGPHQ1d2 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGPHQ1d2 .mbr-section-title {
  color: #ec0424;
}
.cid-vahGQffapb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGQffapb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGQffapb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGQffapb .item {
  margin-bottom: 3rem;
}
.cid-vahGQffapb .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGQffapb .mbr-section-title {
  color: #ec0424;
}
.cid-vahGQVtWzY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGQVtWzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGQVtWzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGQVtWzY .item {
  margin-bottom: 3rem;
}
.cid-vahGQVtWzY .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGQVtWzY .mbr-section-title {
  color: #ec0424;
}
.cid-vahGRse3gT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGRse3gT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGRse3gT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGRse3gT .item {
  margin-bottom: 3rem;
}
.cid-vahGRse3gT .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGRse3gT .mbr-section-title {
  color: #ec0424;
}
.cid-veuDafEchV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDafEchV .container {
  max-width: 1000px;
}
.cid-veuDafEchV img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDafEchV .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab8xzyzj8 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab8xzyzj8 .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab8xzyzj8 .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab8xzyzj8 .user {
  padding: 0 !important;
}
.cid-vab8xzyzj8 .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab8xzyzj8 .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab8xzyzj8 .carousel-item.active,
.cid-vab8xzyzj8 .carousel-item-next,
.cid-vab8xzyzj8 .carousel-item-prev {
  display: flex;
}
.cid-vab8xzyzj8 .user_name {
  margin: 0;
}
.cid-vab8xzyzj8 .carousel-controls a {
  font-size: 2rem;
}
.cid-vab8xzyzj8 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab8xzyzj8 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab8xzyzj8 ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab8xzyzj8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab8xzyzj8 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab8xzyzj8 .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab8xzyzj8 .user_text {
  color: #144774;
}
.cid-vab8xzyzj8 .user_desk {
  color: #23537e;
}
.cid-vab8xzyzj8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8xzyzj8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8xzyzj8 .title,
.cid-vab8xzyzj8 .line-align {
  color: #144774;
}
.cid-vaV1KMUI89 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1KMUI89 .mbr-text {
  color: #767676;
}
.cid-vaV1KMUI89 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1KMUI89 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1KMUI89 .title .card-title {
  z-index: 1;
}
.cid-vaV1KMUI89 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1KMUI89 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1KMUI89 * {
    text-align: left !important;
  }
  .cid-vaV1KMUI89 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1KMUI89 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1KMUI89 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1KMUI89 .mbr-section-title,
.cid-vaV1KMUI89 .card-box {
  color: #144774;
}
.cid-vaV1KMUI89 .card-text {
  color: #000000;
}
.cid-veuDaK7v23 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDaK7v23 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDaK7v23 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDaK7v23 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDaK7v23 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDaK7v23 .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDaK7v23 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDaK7v23 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDaK7v23 .embla__button--next,
.cid-veuDaK7v23 .embla__button--prev {
  display: flex;
}
.cid-veuDaK7v23 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDaK7v23 .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDaK7v23 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDaK7v23 .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDaK7v23 .embla {
  position: relative;
  width: 100%;
}
.cid-veuDaK7v23 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDaK7v23 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDaK7v23 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDaK7v23 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1Ldys4U {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1Ldys4U .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1Ldys4U .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1Ldys4U .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1Ldys4U .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1Ldys4U .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1Ldys4U .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1Ldys4U .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1Ldys4U .embla__button--next,
.cid-vaV1Ldys4U .embla__button--prev {
  display: flex;
}
.cid-vaV1Ldys4U .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1Ldys4U .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1Ldys4U .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1Ldys4U .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1Ldys4U .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1Ldys4U .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1Ldys4U .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1Ldys4U .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1Ldys4U .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab8xBJ8L9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab8xBJ8L9 .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab8xBJ8L9 .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab8xBJ8L9 button[type="submit"] {
  border-radius: 100px;
}
.cid-vab8xBJ8L9 a[type="submit"],
.cid-vab8xBJ8L9 button[type="submit"] {
  margin-top: 0;
}
.cid-vab8xBJ8L9 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab8xBJ8L9 mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab8xBJ8L9 .row .spinner-border,
.cid-vab8xBJ8L9 .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab8xBJ8L9 .gdpr-block {
  display: none;
}
.cid-vab8xCYPhQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab8xCYPhQ .content {
    text-align: center;
  }
  .cid-vab8xCYPhQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab8xCYPhQ .logo-subtitle {
  color: #8d97ad;
}
.cid-vab8xCYPhQ .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab8xCYPhQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab8xCYPhQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab8xCYPhQ .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab8xCYPhQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab8xCYPhQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab8xCYPhQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab8xCYPhQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab8xCYPhQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab8xCYPhQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab8xCYPhQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab8xCYPhQ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab8xCYPhQ .list-item {
  display: flex;
}
.cid-vab8xCYPhQ .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab8xCYPhQ ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab8xCYPhQ ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab8xCYPhQ ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab8xCYPhQ .column-title {
  color: #ec0424;
}
.cid-vab8xCYPhQ P {
  color: #ffffff;
}
.cid-vab8xCYPhQ .mbr-text {
  color: #ffffff;
}
.cid-vab8xCYPhQ .copyright > p {
  color: #ffffff;
}
.cid-vab8HvpBsl {
  z-index: 1000;
  width: 100%;
}
.cid-vab8HvpBsl nav.navbar {
  position: fixed;
}
.cid-vab8HvpBsl .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab8HvpBsl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab8HvpBsl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab8HvpBsl .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab8HvpBsl .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-vab8HvpBsl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab8HvpBsl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab8HvpBsl .dropdown-item:hover,
.cid-vab8HvpBsl .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab8HvpBsl .dropdown-item:hover span {
  color: white;
}
.cid-vab8HvpBsl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab8HvpBsl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab8HvpBsl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab8HvpBsl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab8HvpBsl .nav-link {
  position: relative;
}
.cid-vab8HvpBsl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab8HvpBsl .container {
    flex-wrap: nowrap;
  }
}
.cid-vab8HvpBsl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab8HvpBsl .dropdown-menu,
.cid-vab8HvpBsl .navbar.opened {
  background: #ffffff !important;
}
.cid-vab8HvpBsl .nav-item:focus,
.cid-vab8HvpBsl .nav-link:focus {
  outline: none;
}
.cid-vab8HvpBsl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab8HvpBsl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab8HvpBsl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab8HvpBsl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab8HvpBsl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab8HvpBsl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab8HvpBsl .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab8HvpBsl .navbar.opened {
  transition: all 0.3s;
}
.cid-vab8HvpBsl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab8HvpBsl .navbar .navbar-logo img {
  width: auto;
}
.cid-vab8HvpBsl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab8HvpBsl .navbar.collapsed {
  justify-content: center;
}
.cid-vab8HvpBsl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab8HvpBsl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab8HvpBsl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab8HvpBsl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab8HvpBsl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab8HvpBsl .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-vab8HvpBsl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab8HvpBsl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab8HvpBsl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab8HvpBsl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab8HvpBsl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab8HvpBsl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab8HvpBsl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab8HvpBsl .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-vab8HvpBsl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab8HvpBsl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab8HvpBsl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab8HvpBsl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab8HvpBsl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab8HvpBsl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab8HvpBsl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab8HvpBsl .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab8HvpBsl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab8HvpBsl .dropdown-item.active,
.cid-vab8HvpBsl .dropdown-item:active {
  background-color: transparent;
}
.cid-vab8HvpBsl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab8HvpBsl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab8HvpBsl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab8HvpBsl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab8HvpBsl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab8HvpBsl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab8HvpBsl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab8HvpBsl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab8HvpBsl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab8HvpBsl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab8HvpBsl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab8HvpBsl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8HvpBsl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8HvpBsl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab8HvpBsl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8HvpBsl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab8HvpBsl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab8HvpBsl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8HvpBsl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab8HvpBsl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab8HvpBsl .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-vab8HvpBsl .navbar {
    height: 80px;
  }
  .cid-vab8HvpBsl .navbar.opened {
    height: auto;
  }
  .cid-vab8HvpBsl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab8HwjnYn {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab8HwjnYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8HwjnYn .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-vab8HwjnYn .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab8HwjnYn .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab8HwjnYn .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab8HwjnYn .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab8HwjnYn .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab8HwjnYn .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab8HwjnYn .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab8HwjnYn .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab8HwjnYn .btn-wrapper {
  margin-top: -15%;
}
.cid-vab8HwjnYn .mbr-section-title {
  color: #272b2e;
}
.cid-vab8HwjnYn .mbr-text,
.cid-vab8HwjnYn .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab8HwjnYn .mbr-section-title,
.cid-vab8HwjnYn .mbr-section-btn,
.cid-vab8HwjnYn .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab8Hx5Orq {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8Hx5Orq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8Hx5Orq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8Hx5Orq .mbr-section-title {
  color: #ec0424;
}
.cid-vab8Hx5Orq .mbr-section-subtitle,
.cid-vab8Hx5Orq .mbr-section-btn {
  color: #144774;
}
.cid-vab8HxIWy2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8HxIWy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8HxIWy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8HxIWy2 .mbr-section-title {
  color: #144774;
}
.cid-vab8HxIWy2 .mbr-text {
  color: #144774;
}
.cid-vab8HzovhI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8HzovhI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8HzovhI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8HzovhI .mbr-section-subtitle,
.cid-vab8HzovhI .mbr-section-btn {
  color: #144774;
}
.cid-vab8HzovhI .mbr-section-title {
  color: #144774;
}
.cid-vab8HDqEL1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8HDqEL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8HDqEL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8HDqEL1 .contects {
  line-height: 2;
}
.cid-vab8HDqEL1 .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab8HDqEL1 .mbr-text {
  color: #144774;
}
.cid-vab8HEeDr6 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab8HEeDr6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8HEeDr6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8HEeDr6 .mbr-section-subtitle,
.cid-vab8HEeDr6 .mbr-section-btn {
  color: #144774;
}
.cid-vahGlum9vY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGlum9vY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGlum9vY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGlum9vY .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahGlum9vY .mbr-section-subtitle,
.cid-vahGlum9vY .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahGmcZQhp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGmcZQhp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGmcZQhp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGmcZQhp .item {
  margin-bottom: 3rem;
}
.cid-vahGmcZQhp .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGmcZQhp .mbr-section-title {
  color: #ec0424;
}
.cid-vahGmK6wop {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGmK6wop .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGmK6wop .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGmK6wop .item {
  margin-bottom: 3rem;
}
.cid-vahGmK6wop .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGmK6wop .mbr-section-title {
  color: #ec0424;
}
.cid-vahGnchwNP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGnchwNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGnchwNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGnchwNP .item {
  margin-bottom: 3rem;
}
.cid-vahGnchwNP .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGnchwNP .mbr-section-title {
  color: #ec0424;
}
.cid-vahGnFNB9T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGnFNB9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGnFNB9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGnFNB9T .item {
  margin-bottom: 3rem;
}
.cid-vahGnFNB9T .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGnFNB9T .mbr-section-title {
  color: #ec0424;
}
.cid-vahGo4h9ZC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGo4h9ZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGo4h9ZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGo4h9ZC .item {
  margin-bottom: 3rem;
}
.cid-vahGo4h9ZC .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGo4h9ZC .mbr-section-title {
  color: #ec0424;
}
.cid-vahGoEihSd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGoEihSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGoEihSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGoEihSd .item {
  margin-bottom: 3rem;
}
.cid-vahGoEihSd .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGoEihSd .mbr-section-title {
  color: #ec0424;
}
.cid-veuDeObEIK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDeObEIK .container {
  max-width: 1000px;
}
.cid-veuDeObEIK img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDeObEIK .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab8HPZp0N {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab8HPZp0N .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab8HPZp0N .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab8HPZp0N .user {
  padding: 0 !important;
}
.cid-vab8HPZp0N .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab8HPZp0N .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab8HPZp0N .carousel-item.active,
.cid-vab8HPZp0N .carousel-item-next,
.cid-vab8HPZp0N .carousel-item-prev {
  display: flex;
}
.cid-vab8HPZp0N .user_name {
  margin: 0;
}
.cid-vab8HPZp0N .carousel-controls a {
  font-size: 2rem;
}
.cid-vab8HPZp0N .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab8HPZp0N .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab8HPZp0N ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab8HPZp0N .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab8HPZp0N .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab8HPZp0N .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab8HPZp0N .user_text {
  color: #144774;
}
.cid-vab8HPZp0N .user_desk {
  color: #23537e;
}
.cid-vab8HPZp0N .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8HPZp0N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8HPZp0N .title,
.cid-vab8HPZp0N .line-align {
  color: #144774;
}
.cid-vaV1Om2Y7D {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1Om2Y7D .mbr-text {
  color: #767676;
}
.cid-vaV1Om2Y7D .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1Om2Y7D .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1Om2Y7D .title .card-title {
  z-index: 1;
}
.cid-vaV1Om2Y7D .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1Om2Y7D .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1Om2Y7D * {
    text-align: left !important;
  }
  .cid-vaV1Om2Y7D .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1Om2Y7D .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1Om2Y7D .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1Om2Y7D .mbr-section-title,
.cid-vaV1Om2Y7D .card-box {
  color: #144774;
}
.cid-vaV1Om2Y7D .card-text {
  color: #000000;
}
.cid-veuDfhc3r1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDfhc3r1 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDfhc3r1 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDfhc3r1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDfhc3r1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDfhc3r1 .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDfhc3r1 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDfhc3r1 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDfhc3r1 .embla__button--next,
.cid-veuDfhc3r1 .embla__button--prev {
  display: flex;
}
.cid-veuDfhc3r1 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDfhc3r1 .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDfhc3r1 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDfhc3r1 .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDfhc3r1 .embla {
  position: relative;
  width: 100%;
}
.cid-veuDfhc3r1 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDfhc3r1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDfhc3r1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDfhc3r1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1P1IDhQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1P1IDhQ .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1P1IDhQ .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1P1IDhQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1P1IDhQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1P1IDhQ .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1P1IDhQ .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1P1IDhQ .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1P1IDhQ .embla__button--next,
.cid-vaV1P1IDhQ .embla__button--prev {
  display: flex;
}
.cid-vaV1P1IDhQ .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1P1IDhQ .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1P1IDhQ .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1P1IDhQ .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1P1IDhQ .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1P1IDhQ .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1P1IDhQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1P1IDhQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1P1IDhQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab8HSmpvX {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab8HSmpvX .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab8HSmpvX .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab8HSmpvX button[type="submit"] {
  border-radius: 100px;
}
.cid-vab8HSmpvX a[type="submit"],
.cid-vab8HSmpvX button[type="submit"] {
  margin-top: 0;
}
.cid-vab8HSmpvX .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab8HSmpvX mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab8HSmpvX .row .spinner-border,
.cid-vab8HSmpvX .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab8HSmpvX .gdpr-block {
  display: none;
}
.cid-vab8HTr7B6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab8HTr7B6 .content {
    text-align: center;
  }
  .cid-vab8HTr7B6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab8HTr7B6 .logo-subtitle {
  color: #8d97ad;
}
.cid-vab8HTr7B6 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab8HTr7B6 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab8HTr7B6 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab8HTr7B6 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab8HTr7B6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab8HTr7B6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab8HTr7B6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab8HTr7B6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab8HTr7B6 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab8HTr7B6 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab8HTr7B6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab8HTr7B6 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab8HTr7B6 .list-item {
  display: flex;
}
.cid-vab8HTr7B6 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab8HTr7B6 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab8HTr7B6 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab8HTr7B6 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab8HTr7B6 .column-title {
  color: #ec0424;
}
.cid-vab8HTr7B6 P {
  color: #ffffff;
}
.cid-vab8HTr7B6 .mbr-text {
  color: #ffffff;
}
.cid-vab8HTr7B6 .copyright > p {
  color: #ffffff;
}
.cid-vab8TiXNhf {
  z-index: 1000;
  width: 100%;
}
.cid-vab8TiXNhf nav.navbar {
  position: fixed;
}
.cid-vab8TiXNhf .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab8TiXNhf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab8TiXNhf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab8TiXNhf .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab8TiXNhf .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-vab8TiXNhf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab8TiXNhf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab8TiXNhf .dropdown-item:hover,
.cid-vab8TiXNhf .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab8TiXNhf .dropdown-item:hover span {
  color: white;
}
.cid-vab8TiXNhf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab8TiXNhf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab8TiXNhf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab8TiXNhf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab8TiXNhf .nav-link {
  position: relative;
}
.cid-vab8TiXNhf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab8TiXNhf .container {
    flex-wrap: nowrap;
  }
}
.cid-vab8TiXNhf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab8TiXNhf .dropdown-menu,
.cid-vab8TiXNhf .navbar.opened {
  background: #ffffff !important;
}
.cid-vab8TiXNhf .nav-item:focus,
.cid-vab8TiXNhf .nav-link:focus {
  outline: none;
}
.cid-vab8TiXNhf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab8TiXNhf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab8TiXNhf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab8TiXNhf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab8TiXNhf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab8TiXNhf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab8TiXNhf .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab8TiXNhf .navbar.opened {
  transition: all 0.3s;
}
.cid-vab8TiXNhf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab8TiXNhf .navbar .navbar-logo img {
  width: auto;
}
.cid-vab8TiXNhf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab8TiXNhf .navbar.collapsed {
  justify-content: center;
}
.cid-vab8TiXNhf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab8TiXNhf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab8TiXNhf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab8TiXNhf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab8TiXNhf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab8TiXNhf .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-vab8TiXNhf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab8TiXNhf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab8TiXNhf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab8TiXNhf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab8TiXNhf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab8TiXNhf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab8TiXNhf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab8TiXNhf .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-vab8TiXNhf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab8TiXNhf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab8TiXNhf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab8TiXNhf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab8TiXNhf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab8TiXNhf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab8TiXNhf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab8TiXNhf .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab8TiXNhf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab8TiXNhf .dropdown-item.active,
.cid-vab8TiXNhf .dropdown-item:active {
  background-color: transparent;
}
.cid-vab8TiXNhf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab8TiXNhf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab8TiXNhf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab8TiXNhf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab8TiXNhf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab8TiXNhf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab8TiXNhf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab8TiXNhf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab8TiXNhf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab8TiXNhf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab8TiXNhf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab8TiXNhf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8TiXNhf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab8TiXNhf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab8TiXNhf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8TiXNhf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab8TiXNhf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab8TiXNhf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab8TiXNhf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab8TiXNhf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab8TiXNhf .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-vab8TiXNhf .navbar {
    height: 80px;
  }
  .cid-vab8TiXNhf .navbar.opened {
    height: auto;
  }
  .cid-vab8TiXNhf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab8TjM7Qg {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab8TjM7Qg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8TjM7Qg .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-vab8TjM7Qg .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab8TjM7Qg .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab8TjM7Qg .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab8TjM7Qg .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab8TjM7Qg .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab8TjM7Qg .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab8TjM7Qg .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab8TjM7Qg .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab8TjM7Qg .btn-wrapper {
  margin-top: -15%;
}
.cid-vab8TjM7Qg .mbr-section-title {
  color: #272b2e;
}
.cid-vab8TjM7Qg .mbr-text,
.cid-vab8TjM7Qg .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab8TjM7Qg .mbr-section-title,
.cid-vab8TjM7Qg .mbr-section-btn,
.cid-vab8TjM7Qg .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab8TkuRCS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8TkuRCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8TkuRCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8TkuRCS .mbr-section-title {
  color: #ec0424;
}
.cid-vab8TkuRCS .mbr-section-subtitle,
.cid-vab8TkuRCS .mbr-section-btn {
  color: #144774;
}
.cid-vab8Tld39B {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab8Tld39B .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8Tld39B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8Tld39B .mbr-section-title {
  color: #144774;
}
.cid-vab8Tld39B .mbr-text {
  color: #144774;
}
.cid-vab8Tms40g {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8Tms40g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8Tms40g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8Tms40g .mbr-section-subtitle,
.cid-vab8Tms40g .mbr-section-btn {
  color: #144774;
}
.cid-vab8Tms40g .mbr-section-title {
  color: #144774;
}
.cid-vab8TqIXcL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab8TqIXcL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8TqIXcL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8TqIXcL .contects {
  line-height: 2;
}
.cid-vab8TqIXcL .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab8TqIXcL .mbr-text {
  color: #144774;
}
.cid-vab8TrnUOt {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab8TrnUOt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8TrnUOt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8TrnUOt .mbr-section-subtitle,
.cid-vab8TrnUOt .mbr-section-btn {
  color: #144774;
}
.cid-vahGsIJ3MJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGsIJ3MJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGsIJ3MJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGsIJ3MJ .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahGsIJ3MJ .mbr-section-subtitle,
.cid-vahGsIJ3MJ .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahG7VNMkw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahG7VNMkw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahG7VNMkw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahG7VNMkw .item {
  margin-bottom: 3rem;
}
.cid-vahG7VNMkw .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahG7VNMkw .mbr-section-title {
  color: #ec0424;
}
.cid-vahG8F3d8n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahG8F3d8n .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahG8F3d8n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahG8F3d8n .item {
  margin-bottom: 3rem;
}
.cid-vahG8F3d8n .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahG8F3d8n .mbr-section-title {
  color: #ec0424;
}
.cid-vahG963Z8H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahG963Z8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahG963Z8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahG963Z8H .item {
  margin-bottom: 3rem;
}
.cid-vahG963Z8H .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahG963Z8H .mbr-section-title {
  color: #ec0424;
}
.cid-vahG9vfMMj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahG9vfMMj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahG9vfMMj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahG9vfMMj .item {
  margin-bottom: 3rem;
}
.cid-vahG9vfMMj .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahG9vfMMj .mbr-section-title {
  color: #ec0424;
}
.cid-vahGa0xoJA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGa0xoJA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGa0xoJA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGa0xoJA .item {
  margin-bottom: 3rem;
}
.cid-vahGa0xoJA .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGa0xoJA .mbr-section-title {
  color: #ec0424;
}
.cid-vahGazLUgb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGazLUgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGazLUgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGazLUgb .item {
  margin-bottom: 3rem;
}
.cid-vahGazLUgb .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahGazLUgb .mbr-section-title {
  color: #ec0424;
}
.cid-veuDjxg1yR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDjxg1yR .container {
  max-width: 1000px;
}
.cid-veuDjxg1yR img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDjxg1yR .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab8TDyoQr {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab8TDyoQr .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab8TDyoQr .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab8TDyoQr .user {
  padding: 0 !important;
}
.cid-vab8TDyoQr .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab8TDyoQr .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab8TDyoQr .carousel-item.active,
.cid-vab8TDyoQr .carousel-item-next,
.cid-vab8TDyoQr .carousel-item-prev {
  display: flex;
}
.cid-vab8TDyoQr .user_name {
  margin: 0;
}
.cid-vab8TDyoQr .carousel-controls a {
  font-size: 2rem;
}
.cid-vab8TDyoQr .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab8TDyoQr .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab8TDyoQr ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab8TDyoQr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab8TDyoQr .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab8TDyoQr .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab8TDyoQr .user_text {
  color: #144774;
}
.cid-vab8TDyoQr .user_desk {
  color: #23537e;
}
.cid-vab8TDyoQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab8TDyoQr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab8TDyoQr .title,
.cid-vab8TDyoQr .line-align {
  color: #144774;
}
.cid-vaV1SXF7Y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1SXF7Y1 .mbr-text {
  color: #767676;
}
.cid-vaV1SXF7Y1 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1SXF7Y1 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1SXF7Y1 .title .card-title {
  z-index: 1;
}
.cid-vaV1SXF7Y1 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1SXF7Y1 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1SXF7Y1 * {
    text-align: left !important;
  }
  .cid-vaV1SXF7Y1 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1SXF7Y1 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1SXF7Y1 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1SXF7Y1 .mbr-section-title,
.cid-vaV1SXF7Y1 .card-box {
  color: #144774;
}
.cid-vaV1SXF7Y1 .card-text {
  color: #000000;
}
.cid-veuDk2lYxL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDk2lYxL .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDk2lYxL .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDk2lYxL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDk2lYxL .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDk2lYxL .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDk2lYxL .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDk2lYxL .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDk2lYxL .embla__button--next,
.cid-veuDk2lYxL .embla__button--prev {
  display: flex;
}
.cid-veuDk2lYxL .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDk2lYxL .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDk2lYxL .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDk2lYxL .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDk2lYxL .embla {
  position: relative;
  width: 100%;
}
.cid-veuDk2lYxL .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDk2lYxL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDk2lYxL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDk2lYxL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1TytL8y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1TytL8y .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1TytL8y .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1TytL8y .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1TytL8y .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1TytL8y .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1TytL8y .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1TytL8y .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1TytL8y .embla__button--next,
.cid-vaV1TytL8y .embla__button--prev {
  display: flex;
}
.cid-vaV1TytL8y .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1TytL8y .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1TytL8y .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1TytL8y .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1TytL8y .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1TytL8y .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1TytL8y .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1TytL8y .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1TytL8y .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab8TGdErH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab8TGdErH .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab8TGdErH .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab8TGdErH button[type="submit"] {
  border-radius: 100px;
}
.cid-vab8TGdErH a[type="submit"],
.cid-vab8TGdErH button[type="submit"] {
  margin-top: 0;
}
.cid-vab8TGdErH .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab8TGdErH mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab8TGdErH .row .spinner-border,
.cid-vab8TGdErH .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab8TGdErH .gdpr-block {
  display: none;
}
.cid-vab8THzKH8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab8THzKH8 .content {
    text-align: center;
  }
  .cid-vab8THzKH8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab8THzKH8 .logo-subtitle {
  color: #8d97ad;
}
.cid-vab8THzKH8 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab8THzKH8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab8THzKH8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab8THzKH8 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab8THzKH8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab8THzKH8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab8THzKH8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab8THzKH8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab8THzKH8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab8THzKH8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab8THzKH8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab8THzKH8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab8THzKH8 .list-item {
  display: flex;
}
.cid-vab8THzKH8 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab8THzKH8 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab8THzKH8 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab8THzKH8 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab8THzKH8 .column-title {
  color: #ec0424;
}
.cid-vab8THzKH8 P {
  color: #ffffff;
}
.cid-vab8THzKH8 .mbr-text {
  color: #ffffff;
}
.cid-vab8THzKH8 .copyright > p {
  color: #ffffff;
}
.cid-vab9jvQien {
  z-index: 1000;
  width: 100%;
}
.cid-vab9jvQien nav.navbar {
  position: fixed;
}
.cid-vab9jvQien .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab9jvQien .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab9jvQien .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab9jvQien .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab9jvQien .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-vab9jvQien .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab9jvQien .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab9jvQien .dropdown-item:hover,
.cid-vab9jvQien .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab9jvQien .dropdown-item:hover span {
  color: white;
}
.cid-vab9jvQien .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab9jvQien .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab9jvQien .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab9jvQien .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab9jvQien .nav-link {
  position: relative;
}
.cid-vab9jvQien .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab9jvQien .container {
    flex-wrap: nowrap;
  }
}
.cid-vab9jvQien .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab9jvQien .dropdown-menu,
.cid-vab9jvQien .navbar.opened {
  background: #ffffff !important;
}
.cid-vab9jvQien .nav-item:focus,
.cid-vab9jvQien .nav-link:focus {
  outline: none;
}
.cid-vab9jvQien .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab9jvQien .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab9jvQien .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab9jvQien .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab9jvQien .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab9jvQien .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab9jvQien .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab9jvQien .navbar.opened {
  transition: all 0.3s;
}
.cid-vab9jvQien .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab9jvQien .navbar .navbar-logo img {
  width: auto;
}
.cid-vab9jvQien .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab9jvQien .navbar.collapsed {
  justify-content: center;
}
.cid-vab9jvQien .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab9jvQien .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab9jvQien .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab9jvQien .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab9jvQien .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab9jvQien .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-vab9jvQien .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab9jvQien .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab9jvQien .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab9jvQien .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab9jvQien .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab9jvQien .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab9jvQien .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab9jvQien .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-vab9jvQien .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab9jvQien .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab9jvQien .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab9jvQien .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab9jvQien .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab9jvQien .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab9jvQien .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab9jvQien .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab9jvQien .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab9jvQien .dropdown-item.active,
.cid-vab9jvQien .dropdown-item:active {
  background-color: transparent;
}
.cid-vab9jvQien .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab9jvQien .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab9jvQien .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab9jvQien .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab9jvQien .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab9jvQien .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab9jvQien ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab9jvQien .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab9jvQien button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab9jvQien button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab9jvQien button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab9jvQien button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9jvQien button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9jvQien button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab9jvQien nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9jvQien nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab9jvQien nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab9jvQien nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9jvQien .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab9jvQien a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab9jvQien .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-vab9jvQien .navbar {
    height: 80px;
  }
  .cid-vab9jvQien .navbar.opened {
    height: auto;
  }
  .cid-vab9jvQien .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab9jwAFq2 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab9jwAFq2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jwAFq2 .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-vab9jwAFq2 .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab9jwAFq2 .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab9jwAFq2 .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab9jwAFq2 .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab9jwAFq2 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab9jwAFq2 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab9jwAFq2 .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab9jwAFq2 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab9jwAFq2 .btn-wrapper {
  margin-top: -15%;
}
.cid-vab9jwAFq2 .mbr-section-title {
  color: #272b2e;
}
.cid-vab9jwAFq2 .mbr-text,
.cid-vab9jwAFq2 .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab9jwAFq2 .mbr-section-title,
.cid-vab9jwAFq2 .mbr-section-btn,
.cid-vab9jwAFq2 .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab9jxiD0D {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9jxiD0D .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jxiD0D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9jxiD0D .mbr-section-title {
  color: #ec0424;
}
.cid-vab9jxiD0D .mbr-section-subtitle,
.cid-vab9jxiD0D .mbr-section-btn {
  color: #144774;
}
.cid-vab9jxUHov {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9jxUHov .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jxUHov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9jxUHov .mbr-section-title {
  color: #144774;
}
.cid-vab9jxUHov .mbr-text {
  color: #144774;
}
.cid-vab9jzarVV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9jzarVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jzarVV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9jzarVV .mbr-section-subtitle,
.cid-vab9jzarVV .mbr-section-btn {
  color: #144774;
}
.cid-vab9jzarVV .mbr-section-title {
  color: #144774;
}
.cid-vab9jzNabF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9jzNabF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jzNabF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9jzNabF .mbr-section-title {
  color: #144774;
}
.cid-vab9jzNabF .mbr-text {
  color: #144774;
}
.cid-vab9jD80h4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9jD80h4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jD80h4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9jD80h4 .contects {
  line-height: 2;
}
.cid-vab9jD80h4 .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab9jD80h4 .mbr-text {
  color: #144774;
}
.cid-vab9jDKQaR {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab9jDKQaR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jDKQaR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9jDKQaR .mbr-section-subtitle,
.cid-vab9jDKQaR .mbr-section-btn {
  color: #144774;
}
.cid-vahGuMN28e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahGuMN28e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahGuMN28e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahGuMN28e .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahGuMN28e .mbr-section-subtitle,
.cid-vahGuMN28e .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahpdISoGH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahpdISoGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahpdISoGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahpdISoGH .item {
  margin-bottom: 3rem;
}
.cid-vahpdISoGH .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahpdISoGH .mbr-section-title {
  color: #ec0424;
}
.cid-vahFTH1TVb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahFTH1TVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahFTH1TVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahFTH1TVb .item {
  margin-bottom: 3rem;
}
.cid-vahFTH1TVb .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahFTH1TVb .mbr-section-title {
  color: #ec0424;
}
.cid-vahFUfTS83 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahFUfTS83 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahFUfTS83 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahFUfTS83 .item {
  margin-bottom: 3rem;
}
.cid-vahFUfTS83 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahFUfTS83 .mbr-section-title {
  color: #ec0424;
}
.cid-vahFUI3DUR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahFUI3DUR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahFUI3DUR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahFUI3DUR .item {
  margin-bottom: 3rem;
}
.cid-vahFUI3DUR .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahFUI3DUR .mbr-section-title {
  color: #ec0424;
}
.cid-vahFV8NTMn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahFV8NTMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahFV8NTMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahFV8NTMn .item {
  margin-bottom: 3rem;
}
.cid-vahFV8NTMn .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahFV8NTMn .mbr-section-title {
  color: #ec0424;
}
.cid-vahFWzmzXA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahFWzmzXA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahFWzmzXA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahFWzmzXA .item {
  margin-bottom: 3rem;
}
.cid-vahFWzmzXA .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahFWzmzXA .mbr-section-title {
  color: #ec0424;
}
.cid-veuDnHGMRp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDnHGMRp .container {
  max-width: 1000px;
}
.cid-veuDnHGMRp img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDnHGMRp .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab9jOwJjt {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab9jOwJjt .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab9jOwJjt .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab9jOwJjt .user {
  padding: 0 !important;
}
.cid-vab9jOwJjt .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab9jOwJjt .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab9jOwJjt .carousel-item.active,
.cid-vab9jOwJjt .carousel-item-next,
.cid-vab9jOwJjt .carousel-item-prev {
  display: flex;
}
.cid-vab9jOwJjt .user_name {
  margin: 0;
}
.cid-vab9jOwJjt .carousel-controls a {
  font-size: 2rem;
}
.cid-vab9jOwJjt .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab9jOwJjt .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab9jOwJjt ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab9jOwJjt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab9jOwJjt .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab9jOwJjt .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab9jOwJjt .user_text {
  color: #144774;
}
.cid-vab9jOwJjt .user_desk {
  color: #23537e;
}
.cid-vab9jOwJjt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9jOwJjt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9jOwJjt .title,
.cid-vab9jOwJjt .line-align {
  color: #144774;
}
.cid-vaV1XhMHyY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV1XhMHyY .mbr-text {
  color: #767676;
}
.cid-vaV1XhMHyY .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV1XhMHyY .title .num {
  width: 100%;
  display: block;
}
.cid-vaV1XhMHyY .title .card-title {
  z-index: 1;
}
.cid-vaV1XhMHyY .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV1XhMHyY .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV1XhMHyY * {
    text-align: left !important;
  }
  .cid-vaV1XhMHyY .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV1XhMHyY .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV1XhMHyY .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV1XhMHyY .mbr-section-title,
.cid-vaV1XhMHyY .card-box {
  color: #144774;
}
.cid-vaV1XhMHyY .card-text {
  color: #000000;
}
.cid-veuDodKJ3U {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDodKJ3U .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDodKJ3U .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDodKJ3U .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDodKJ3U .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDodKJ3U .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDodKJ3U .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDodKJ3U .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDodKJ3U .embla__button--next,
.cid-veuDodKJ3U .embla__button--prev {
  display: flex;
}
.cid-veuDodKJ3U .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDodKJ3U .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDodKJ3U .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDodKJ3U .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDodKJ3U .embla {
  position: relative;
  width: 100%;
}
.cid-veuDodKJ3U .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDodKJ3U .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDodKJ3U .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDodKJ3U .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV1XQPvOp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV1XQPvOp .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV1XQPvOp .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV1XQPvOp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV1XQPvOp .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV1XQPvOp .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV1XQPvOp .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV1XQPvOp .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV1XQPvOp .embla__button--next,
.cid-vaV1XQPvOp .embla__button--prev {
  display: flex;
}
.cid-vaV1XQPvOp .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV1XQPvOp .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV1XQPvOp .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV1XQPvOp .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV1XQPvOp .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV1XQPvOp .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV1XQPvOp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV1XQPvOp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV1XQPvOp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab9jQMrBf {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab9jQMrBf .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab9jQMrBf .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab9jQMrBf button[type="submit"] {
  border-radius: 100px;
}
.cid-vab9jQMrBf a[type="submit"],
.cid-vab9jQMrBf button[type="submit"] {
  margin-top: 0;
}
.cid-vab9jQMrBf .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab9jQMrBf mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab9jQMrBf .row .spinner-border,
.cid-vab9jQMrBf .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab9jQMrBf .gdpr-block {
  display: none;
}
.cid-vab9jRLe3H {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab9jRLe3H .content {
    text-align: center;
  }
  .cid-vab9jRLe3H .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab9jRLe3H .logo-subtitle {
  color: #8d97ad;
}
.cid-vab9jRLe3H .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab9jRLe3H .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab9jRLe3H .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab9jRLe3H .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab9jRLe3H .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab9jRLe3H .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab9jRLe3H .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab9jRLe3H .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab9jRLe3H .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab9jRLe3H .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab9jRLe3H .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab9jRLe3H .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab9jRLe3H .list-item {
  display: flex;
}
.cid-vab9jRLe3H .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab9jRLe3H ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab9jRLe3H ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab9jRLe3H ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab9jRLe3H .column-title {
  color: #ec0424;
}
.cid-vab9jRLe3H P {
  color: #ffffff;
}
.cid-vab9jRLe3H .mbr-text {
  color: #ffffff;
}
.cid-vab9jRLe3H .copyright > p {
  color: #ffffff;
}
.cid-vab9unPCPc {
  z-index: 1000;
  width: 100%;
}
.cid-vab9unPCPc nav.navbar {
  position: fixed;
}
.cid-vab9unPCPc .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab9unPCPc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab9unPCPc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab9unPCPc .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab9unPCPc .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-vab9unPCPc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab9unPCPc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab9unPCPc .dropdown-item:hover,
.cid-vab9unPCPc .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab9unPCPc .dropdown-item:hover span {
  color: white;
}
.cid-vab9unPCPc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab9unPCPc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab9unPCPc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab9unPCPc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab9unPCPc .nav-link {
  position: relative;
}
.cid-vab9unPCPc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab9unPCPc .container {
    flex-wrap: nowrap;
  }
}
.cid-vab9unPCPc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab9unPCPc .dropdown-menu,
.cid-vab9unPCPc .navbar.opened {
  background: #ffffff !important;
}
.cid-vab9unPCPc .nav-item:focus,
.cid-vab9unPCPc .nav-link:focus {
  outline: none;
}
.cid-vab9unPCPc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab9unPCPc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab9unPCPc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab9unPCPc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab9unPCPc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab9unPCPc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab9unPCPc .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab9unPCPc .navbar.opened {
  transition: all 0.3s;
}
.cid-vab9unPCPc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab9unPCPc .navbar .navbar-logo img {
  width: auto;
}
.cid-vab9unPCPc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab9unPCPc .navbar.collapsed {
  justify-content: center;
}
.cid-vab9unPCPc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab9unPCPc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab9unPCPc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab9unPCPc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab9unPCPc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab9unPCPc .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-vab9unPCPc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab9unPCPc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab9unPCPc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab9unPCPc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab9unPCPc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab9unPCPc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab9unPCPc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab9unPCPc .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-vab9unPCPc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab9unPCPc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab9unPCPc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab9unPCPc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab9unPCPc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab9unPCPc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab9unPCPc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab9unPCPc .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab9unPCPc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab9unPCPc .dropdown-item.active,
.cid-vab9unPCPc .dropdown-item:active {
  background-color: transparent;
}
.cid-vab9unPCPc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab9unPCPc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab9unPCPc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab9unPCPc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab9unPCPc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab9unPCPc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab9unPCPc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab9unPCPc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab9unPCPc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab9unPCPc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab9unPCPc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab9unPCPc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9unPCPc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9unPCPc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab9unPCPc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9unPCPc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab9unPCPc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab9unPCPc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9unPCPc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab9unPCPc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab9unPCPc .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-vab9unPCPc .navbar {
    height: 80px;
  }
  .cid-vab9unPCPc .navbar.opened {
    height: auto;
  }
  .cid-vab9unPCPc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab9uoApEQ {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab9uoApEQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9uoApEQ .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-vab9uoApEQ .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab9uoApEQ .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab9uoApEQ .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab9uoApEQ .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab9uoApEQ .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab9uoApEQ .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab9uoApEQ .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab9uoApEQ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab9uoApEQ .btn-wrapper {
  margin-top: -15%;
}
.cid-vab9uoApEQ .mbr-section-title {
  color: #272b2e;
}
.cid-vab9uoApEQ .mbr-text,
.cid-vab9uoApEQ .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab9uoApEQ .mbr-section-title,
.cid-vab9uoApEQ .mbr-section-btn,
.cid-vab9uoApEQ .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab9uph2fe {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9uph2fe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9uph2fe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9uph2fe .mbr-section-title {
  color: #ec0424;
}
.cid-vab9uph2fe .mbr-section-subtitle,
.cid-vab9uph2fe .mbr-section-btn {
  color: #144774;
}
.cid-vab9upS03r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9upS03r .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9upS03r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9upS03r .mbr-section-title {
  color: #144774;
}
.cid-vab9upS03r .mbr-text {
  color: #144774;
}
.cid-vab9ur278N {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9ur278N .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9ur278N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9ur278N .mbr-section-subtitle,
.cid-vab9ur278N .mbr-section-btn {
  color: #144774;
}
.cid-vab9ur278N .mbr-section-title {
  color: #144774;
}
.cid-vab9uuMc8M {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9uuMc8M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9uuMc8M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9uuMc8M .contects {
  line-height: 2;
}
.cid-vab9uuMc8M .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab9uuMc8M .mbr-text {
  color: #144774;
}
.cid-vab9uvsDyg {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab9uvsDyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9uvsDyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9uvsDyg .mbr-section-subtitle,
.cid-vab9uvsDyg .mbr-section-btn {
  color: #144774;
}
.cid-vahp3O1SKN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahp3O1SKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahp3O1SKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahp3O1SKN .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahp3O1SKN .mbr-section-subtitle,
.cid-vahp3O1SKN .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahp4c4LdM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahp4c4LdM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahp4c4LdM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahp4c4LdM .item {
  margin-bottom: 3rem;
}
.cid-vahp4c4LdM .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahp4c4LdM .mbr-section-title {
  color: #ec0424;
}
.cid-vahp4R9KsV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahp4R9KsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahp4R9KsV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahp4R9KsV .item {
  margin-bottom: 3rem;
}
.cid-vahp4R9KsV .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahp4R9KsV .mbr-section-title {
  color: #ec0424;
}
.cid-vahp5hmv4E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahp5hmv4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahp5hmv4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahp5hmv4E .item {
  margin-bottom: 3rem;
}
.cid-vahp5hmv4E .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahp5hmv4E .mbr-section-title {
  color: #ec0424;
}
.cid-vahp5J5Hes {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahp5J5Hes .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahp5J5Hes .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahp5J5Hes .item {
  margin-bottom: 3rem;
}
.cid-vahp5J5Hes .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahp5J5Hes .mbr-section-title {
  color: #ec0424;
}
.cid-vahp66gylU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahp66gylU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahp66gylU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahp66gylU .item {
  margin-bottom: 3rem;
}
.cid-vahp66gylU .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahp66gylU .mbr-section-title {
  color: #ec0424;
}
.cid-vahp6NO1IF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahp6NO1IF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahp6NO1IF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahp6NO1IF .item {
  margin-bottom: 3rem;
}
.cid-vahp6NO1IF .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahp6NO1IF .mbr-section-title {
  color: #ec0424;
}
.cid-veuDt4kfQ4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDt4kfQ4 .container {
  max-width: 1000px;
}
.cid-veuDt4kfQ4 img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDt4kfQ4 .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab9uGnCwG {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab9uGnCwG .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab9uGnCwG .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab9uGnCwG .user {
  padding: 0 !important;
}
.cid-vab9uGnCwG .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab9uGnCwG .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab9uGnCwG .carousel-item.active,
.cid-vab9uGnCwG .carousel-item-next,
.cid-vab9uGnCwG .carousel-item-prev {
  display: flex;
}
.cid-vab9uGnCwG .user_name {
  margin: 0;
}
.cid-vab9uGnCwG .carousel-controls a {
  font-size: 2rem;
}
.cid-vab9uGnCwG .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab9uGnCwG .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab9uGnCwG ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab9uGnCwG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab9uGnCwG .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab9uGnCwG .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab9uGnCwG .user_text {
  color: #144774;
}
.cid-vab9uGnCwG .user_desk {
  color: #23537e;
}
.cid-vab9uGnCwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9uGnCwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9uGnCwG .title,
.cid-vab9uGnCwG .line-align {
  color: #144774;
}
.cid-vaV22ar92O {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV22ar92O .mbr-text {
  color: #767676;
}
.cid-vaV22ar92O .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV22ar92O .title .num {
  width: 100%;
  display: block;
}
.cid-vaV22ar92O .title .card-title {
  z-index: 1;
}
.cid-vaV22ar92O .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV22ar92O .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV22ar92O * {
    text-align: left !important;
  }
  .cid-vaV22ar92O .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV22ar92O .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV22ar92O .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV22ar92O .mbr-section-title,
.cid-vaV22ar92O .card-box {
  color: #144774;
}
.cid-vaV22ar92O .card-text {
  color: #000000;
}
.cid-veuDtIkWIv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDtIkWIv .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDtIkWIv .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDtIkWIv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDtIkWIv .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDtIkWIv .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDtIkWIv .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDtIkWIv .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDtIkWIv .embla__button--next,
.cid-veuDtIkWIv .embla__button--prev {
  display: flex;
}
.cid-veuDtIkWIv .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDtIkWIv .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDtIkWIv .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDtIkWIv .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDtIkWIv .embla {
  position: relative;
  width: 100%;
}
.cid-veuDtIkWIv .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDtIkWIv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDtIkWIv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDtIkWIv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV22Bge8X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV22Bge8X .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV22Bge8X .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV22Bge8X .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV22Bge8X .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV22Bge8X .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV22Bge8X .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV22Bge8X .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV22Bge8X .embla__button--next,
.cid-vaV22Bge8X .embla__button--prev {
  display: flex;
}
.cid-vaV22Bge8X .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV22Bge8X .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV22Bge8X .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV22Bge8X .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV22Bge8X .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV22Bge8X .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV22Bge8X .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV22Bge8X .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV22Bge8X .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab9uJFzJp {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab9uJFzJp .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab9uJFzJp .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab9uJFzJp button[type="submit"] {
  border-radius: 100px;
}
.cid-vab9uJFzJp a[type="submit"],
.cid-vab9uJFzJp button[type="submit"] {
  margin-top: 0;
}
.cid-vab9uJFzJp .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab9uJFzJp mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab9uJFzJp .row .spinner-border,
.cid-vab9uJFzJp .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab9uJFzJp .gdpr-block {
  display: none;
}
.cid-vab9uKITLP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab9uKITLP .content {
    text-align: center;
  }
  .cid-vab9uKITLP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab9uKITLP .logo-subtitle {
  color: #8d97ad;
}
.cid-vab9uKITLP .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab9uKITLP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab9uKITLP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab9uKITLP .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab9uKITLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab9uKITLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab9uKITLP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab9uKITLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab9uKITLP .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab9uKITLP .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab9uKITLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab9uKITLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab9uKITLP .list-item {
  display: flex;
}
.cid-vab9uKITLP .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab9uKITLP ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab9uKITLP ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab9uKITLP ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab9uKITLP .column-title {
  color: #ec0424;
}
.cid-vab9uKITLP P {
  color: #ffffff;
}
.cid-vab9uKITLP .mbr-text {
  color: #ffffff;
}
.cid-vab9uKITLP .copyright > p {
  color: #ffffff;
}
.cid-vab9FzRevz {
  z-index: 1000;
  width: 100%;
}
.cid-vab9FzRevz nav.navbar {
  position: fixed;
}
.cid-vab9FzRevz .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab9FzRevz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab9FzRevz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab9FzRevz .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab9FzRevz .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-vab9FzRevz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab9FzRevz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab9FzRevz .dropdown-item:hover,
.cid-vab9FzRevz .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab9FzRevz .dropdown-item:hover span {
  color: white;
}
.cid-vab9FzRevz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab9FzRevz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab9FzRevz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab9FzRevz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab9FzRevz .nav-link {
  position: relative;
}
.cid-vab9FzRevz .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab9FzRevz .container {
    flex-wrap: nowrap;
  }
}
.cid-vab9FzRevz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab9FzRevz .dropdown-menu,
.cid-vab9FzRevz .navbar.opened {
  background: #ffffff !important;
}
.cid-vab9FzRevz .nav-item:focus,
.cid-vab9FzRevz .nav-link:focus {
  outline: none;
}
.cid-vab9FzRevz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab9FzRevz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab9FzRevz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab9FzRevz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab9FzRevz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab9FzRevz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab9FzRevz .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab9FzRevz .navbar.opened {
  transition: all 0.3s;
}
.cid-vab9FzRevz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab9FzRevz .navbar .navbar-logo img {
  width: auto;
}
.cid-vab9FzRevz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab9FzRevz .navbar.collapsed {
  justify-content: center;
}
.cid-vab9FzRevz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab9FzRevz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab9FzRevz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab9FzRevz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab9FzRevz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab9FzRevz .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-vab9FzRevz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab9FzRevz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab9FzRevz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab9FzRevz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab9FzRevz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab9FzRevz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab9FzRevz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab9FzRevz .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-vab9FzRevz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab9FzRevz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab9FzRevz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab9FzRevz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab9FzRevz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab9FzRevz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab9FzRevz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab9FzRevz .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab9FzRevz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab9FzRevz .dropdown-item.active,
.cid-vab9FzRevz .dropdown-item:active {
  background-color: transparent;
}
.cid-vab9FzRevz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab9FzRevz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab9FzRevz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab9FzRevz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab9FzRevz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab9FzRevz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab9FzRevz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab9FzRevz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab9FzRevz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab9FzRevz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab9FzRevz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab9FzRevz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9FzRevz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9FzRevz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab9FzRevz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9FzRevz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab9FzRevz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab9FzRevz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9FzRevz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab9FzRevz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab9FzRevz .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-vab9FzRevz .navbar {
    height: 80px;
  }
  .cid-vab9FzRevz .navbar.opened {
    height: auto;
  }
  .cid-vab9FzRevz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab9FACtG6 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab9FACtG6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9FACtG6 .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-vab9FACtG6 .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab9FACtG6 .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab9FACtG6 .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab9FACtG6 .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab9FACtG6 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab9FACtG6 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab9FACtG6 .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab9FACtG6 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab9FACtG6 .btn-wrapper {
  margin-top: -15%;
}
.cid-vab9FACtG6 .mbr-section-title {
  color: #272b2e;
}
.cid-vab9FACtG6 .mbr-text,
.cid-vab9FACtG6 .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab9FACtG6 .mbr-section-title,
.cid-vab9FACtG6 .mbr-section-btn,
.cid-vab9FACtG6 .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab9FBrIJD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9FBrIJD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9FBrIJD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9FBrIJD .mbr-section-title {
  color: #ec0424;
}
.cid-vab9FBrIJD .mbr-section-subtitle,
.cid-vab9FBrIJD .mbr-section-btn {
  color: #144774;
}
.cid-vab9FC2Dyi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9FC2Dyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9FC2Dyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9FC2Dyi .mbr-section-title {
  color: #144774;
}
.cid-vab9FC2Dyi .mbr-text {
  color: #144774;
}
.cid-vab9FDiHYw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9FDiHYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9FDiHYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9FDiHYw .mbr-section-subtitle,
.cid-vab9FDiHYw .mbr-section-btn {
  color: #144774;
}
.cid-vab9FDiHYw .mbr-section-title {
  color: #144774;
}
.cid-vab9FH9yov {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9FH9yov .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9FH9yov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9FH9yov .contects {
  line-height: 2;
}
.cid-vab9FH9yov .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab9FH9yov .mbr-text {
  color: #144774;
}
.cid-vab9FHT59I {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab9FHT59I .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9FHT59I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9FHT59I .mbr-section-subtitle,
.cid-vab9FHT59I .mbr-section-btn {
  color: #144774;
}
.cid-vahoTDWQpg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoTDWQpg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoTDWQpg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoTDWQpg .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahoTDWQpg .mbr-section-subtitle,
.cid-vahoTDWQpg .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahoUnKLje {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoUnKLje .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoUnKLje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoUnKLje .item {
  margin-bottom: 3rem;
}
.cid-vahoUnKLje .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoUnKLje .mbr-section-title {
  color: #ec0424;
}
.cid-vahoV3pgV3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoV3pgV3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoV3pgV3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoV3pgV3 .item {
  margin-bottom: 3rem;
}
.cid-vahoV3pgV3 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoV3pgV3 .mbr-section-title {
  color: #ec0424;
}
.cid-vahoVrqnl1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoVrqnl1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoVrqnl1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoVrqnl1 .item {
  margin-bottom: 3rem;
}
.cid-vahoVrqnl1 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoVrqnl1 .mbr-section-title {
  color: #ec0424;
}
.cid-vahoVQjLHp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoVQjLHp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoVQjLHp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoVQjLHp .item {
  margin-bottom: 3rem;
}
.cid-vahoVQjLHp .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoVQjLHp .mbr-section-title {
  color: #ec0424;
}
.cid-vahoWzcxdS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoWzcxdS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoWzcxdS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoWzcxdS .item {
  margin-bottom: 3rem;
}
.cid-vahoWzcxdS .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoWzcxdS .mbr-section-title {
  color: #ec0424;
}
.cid-vahoX6NtPh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoX6NtPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoX6NtPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoX6NtPh .item {
  margin-bottom: 3rem;
}
.cid-vahoX6NtPh .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoX6NtPh .mbr-section-title {
  color: #ec0424;
}
.cid-veuDCOH8nV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDCOH8nV .container {
  max-width: 1000px;
}
.cid-veuDCOH8nV img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDCOH8nV .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab9FSXqGl {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab9FSXqGl .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab9FSXqGl .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab9FSXqGl .user {
  padding: 0 !important;
}
.cid-vab9FSXqGl .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab9FSXqGl .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab9FSXqGl .carousel-item.active,
.cid-vab9FSXqGl .carousel-item-next,
.cid-vab9FSXqGl .carousel-item-prev {
  display: flex;
}
.cid-vab9FSXqGl .user_name {
  margin: 0;
}
.cid-vab9FSXqGl .carousel-controls a {
  font-size: 2rem;
}
.cid-vab9FSXqGl .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab9FSXqGl .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab9FSXqGl ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab9FSXqGl .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab9FSXqGl .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab9FSXqGl .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab9FSXqGl .user_text {
  color: #144774;
}
.cid-vab9FSXqGl .user_desk {
  color: #23537e;
}
.cid-vab9FSXqGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9FSXqGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9FSXqGl .title,
.cid-vab9FSXqGl .line-align {
  color: #144774;
}
.cid-vaV26op8dP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV26op8dP .mbr-text {
  color: #767676;
}
.cid-vaV26op8dP .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV26op8dP .title .num {
  width: 100%;
  display: block;
}
.cid-vaV26op8dP .title .card-title {
  z-index: 1;
}
.cid-vaV26op8dP .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV26op8dP .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV26op8dP * {
    text-align: left !important;
  }
  .cid-vaV26op8dP .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV26op8dP .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV26op8dP .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV26op8dP .mbr-section-title,
.cid-vaV26op8dP .card-box {
  color: #144774;
}
.cid-vaV26op8dP .card-text {
  color: #000000;
}
.cid-veuDDh3tDs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDDh3tDs .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDDh3tDs .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDDh3tDs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDDh3tDs .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDDh3tDs .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDDh3tDs .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDDh3tDs .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDDh3tDs .embla__button--next,
.cid-veuDDh3tDs .embla__button--prev {
  display: flex;
}
.cid-veuDDh3tDs .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDDh3tDs .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDDh3tDs .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDDh3tDs .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDDh3tDs .embla {
  position: relative;
  width: 100%;
}
.cid-veuDDh3tDs .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDDh3tDs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDDh3tDs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDDh3tDs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV272moDJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV272moDJ .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV272moDJ .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV272moDJ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV272moDJ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV272moDJ .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV272moDJ .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV272moDJ .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV272moDJ .embla__button--next,
.cid-vaV272moDJ .embla__button--prev {
  display: flex;
}
.cid-vaV272moDJ .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV272moDJ .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV272moDJ .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV272moDJ .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV272moDJ .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV272moDJ .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV272moDJ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV272moDJ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV272moDJ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab9FV1jsa {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab9FV1jsa .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab9FV1jsa .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab9FV1jsa button[type="submit"] {
  border-radius: 100px;
}
.cid-vab9FV1jsa a[type="submit"],
.cid-vab9FV1jsa button[type="submit"] {
  margin-top: 0;
}
.cid-vab9FV1jsa .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab9FV1jsa mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab9FV1jsa .row .spinner-border,
.cid-vab9FV1jsa .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab9FV1jsa .gdpr-block {
  display: none;
}
.cid-vab9FW0KFs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab9FW0KFs .content {
    text-align: center;
  }
  .cid-vab9FW0KFs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab9FW0KFs .logo-subtitle {
  color: #8d97ad;
}
.cid-vab9FW0KFs .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab9FW0KFs .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab9FW0KFs .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab9FW0KFs .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab9FW0KFs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab9FW0KFs .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab9FW0KFs .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab9FW0KFs .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab9FW0KFs .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab9FW0KFs .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab9FW0KFs .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab9FW0KFs .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab9FW0KFs .list-item {
  display: flex;
}
.cid-vab9FW0KFs .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab9FW0KFs ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab9FW0KFs ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab9FW0KFs ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab9FW0KFs .column-title {
  color: #ec0424;
}
.cid-vab9FW0KFs P {
  color: #ffffff;
}
.cid-vab9FW0KFs .mbr-text {
  color: #ffffff;
}
.cid-vab9FW0KFs .copyright > p {
  color: #ffffff;
}
.cid-vab9PvvBUm {
  z-index: 1000;
  width: 100%;
}
.cid-vab9PvvBUm nav.navbar {
  position: fixed;
}
.cid-vab9PvvBUm .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab9PvvBUm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab9PvvBUm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab9PvvBUm .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab9PvvBUm .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-vab9PvvBUm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab9PvvBUm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab9PvvBUm .dropdown-item:hover,
.cid-vab9PvvBUm .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab9PvvBUm .dropdown-item:hover span {
  color: white;
}
.cid-vab9PvvBUm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab9PvvBUm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab9PvvBUm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab9PvvBUm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab9PvvBUm .nav-link {
  position: relative;
}
.cid-vab9PvvBUm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab9PvvBUm .container {
    flex-wrap: nowrap;
  }
}
.cid-vab9PvvBUm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab9PvvBUm .dropdown-menu,
.cid-vab9PvvBUm .navbar.opened {
  background: #ffffff !important;
}
.cid-vab9PvvBUm .nav-item:focus,
.cid-vab9PvvBUm .nav-link:focus {
  outline: none;
}
.cid-vab9PvvBUm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab9PvvBUm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab9PvvBUm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab9PvvBUm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab9PvvBUm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab9PvvBUm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab9PvvBUm .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab9PvvBUm .navbar.opened {
  transition: all 0.3s;
}
.cid-vab9PvvBUm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab9PvvBUm .navbar .navbar-logo img {
  width: auto;
}
.cid-vab9PvvBUm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab9PvvBUm .navbar.collapsed {
  justify-content: center;
}
.cid-vab9PvvBUm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab9PvvBUm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab9PvvBUm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab9PvvBUm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab9PvvBUm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab9PvvBUm .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-vab9PvvBUm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab9PvvBUm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab9PvvBUm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab9PvvBUm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab9PvvBUm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab9PvvBUm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab9PvvBUm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab9PvvBUm .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-vab9PvvBUm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab9PvvBUm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab9PvvBUm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab9PvvBUm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab9PvvBUm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab9PvvBUm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab9PvvBUm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab9PvvBUm .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab9PvvBUm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab9PvvBUm .dropdown-item.active,
.cid-vab9PvvBUm .dropdown-item:active {
  background-color: transparent;
}
.cid-vab9PvvBUm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab9PvvBUm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab9PvvBUm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab9PvvBUm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab9PvvBUm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab9PvvBUm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab9PvvBUm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab9PvvBUm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab9PvvBUm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab9PvvBUm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab9PvvBUm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab9PvvBUm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9PvvBUm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9PvvBUm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab9PvvBUm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9PvvBUm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab9PvvBUm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab9PvvBUm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9PvvBUm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab9PvvBUm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab9PvvBUm .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-vab9PvvBUm .navbar {
    height: 80px;
  }
  .cid-vab9PvvBUm .navbar.opened {
    height: auto;
  }
  .cid-vab9PvvBUm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab9PwflUy {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab9PwflUy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9PwflUy .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-vab9PwflUy .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab9PwflUy .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab9PwflUy .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab9PwflUy .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab9PwflUy .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab9PwflUy .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab9PwflUy .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab9PwflUy .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab9PwflUy .btn-wrapper {
  margin-top: -15%;
}
.cid-vab9PwflUy .mbr-section-title {
  color: #272b2e;
}
.cid-vab9PwflUy .mbr-text,
.cid-vab9PwflUy .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab9PwflUy .mbr-section-title,
.cid-vab9PwflUy .mbr-section-btn,
.cid-vab9PwflUy .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab9Px666o {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9Px666o .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9Px666o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9Px666o .mbr-section-title {
  color: #ec0424;
}
.cid-vab9Px666o .mbr-section-subtitle,
.cid-vab9Px666o .mbr-section-btn {
  color: #144774;
}
.cid-vab9PxKRoK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9PxKRoK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9PxKRoK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9PxKRoK .mbr-section-title {
  color: #144774;
}
.cid-vab9PxKRoK .mbr-text {
  color: #144774;
}
.cid-vab9PyWgVd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9PyWgVd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9PyWgVd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9PyWgVd .mbr-section-subtitle,
.cid-vab9PyWgVd .mbr-section-btn {
  color: #144774;
}
.cid-vab9PyWgVd .mbr-section-title {
  color: #144774;
}
.cid-vab9PCGIkh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9PCGIkh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9PCGIkh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9PCGIkh .contects {
  line-height: 2;
}
.cid-vab9PCGIkh .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab9PCGIkh .mbr-text {
  color: #144774;
}
.cid-vab9PDjkzi {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab9PDjkzi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9PDjkzi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9PDjkzi .mbr-section-subtitle,
.cid-vab9PDjkzi .mbr-section-btn {
  color: #144774;
}
.cid-vahoJRQZhi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoJRQZhi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoJRQZhi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoJRQZhi .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahoJRQZhi .mbr-section-subtitle,
.cid-vahoJRQZhi .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahoKMRrBq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoKMRrBq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoKMRrBq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoKMRrBq .item {
  margin-bottom: 3rem;
}
.cid-vahoKMRrBq .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoKMRrBq .mbr-section-title {
  color: #ec0424;
}
.cid-vahoLxqixh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoLxqixh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoLxqixh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoLxqixh .item {
  margin-bottom: 3rem;
}
.cid-vahoLxqixh .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoLxqixh .mbr-section-title {
  color: #ec0424;
}
.cid-vahoLY1B9Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoLY1B9Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoLY1B9Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoLY1B9Q .item {
  margin-bottom: 3rem;
}
.cid-vahoLY1B9Q .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoLY1B9Q .mbr-section-title {
  color: #ec0424;
}
.cid-vahoMtXvBK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoMtXvBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoMtXvBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoMtXvBK .item {
  margin-bottom: 3rem;
}
.cid-vahoMtXvBK .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoMtXvBK .mbr-section-title {
  color: #ec0424;
}
.cid-vahoMU5Cba {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoMU5Cba .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoMU5Cba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoMU5Cba .item {
  margin-bottom: 3rem;
}
.cid-vahoMU5Cba .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoMU5Cba .mbr-section-title {
  color: #ec0424;
}
.cid-vahoNCX8CY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoNCX8CY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoNCX8CY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoNCX8CY .item {
  margin-bottom: 3rem;
}
.cid-vahoNCX8CY .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoNCX8CY .mbr-section-title {
  color: #ec0424;
}
.cid-veuDHXyx31 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDHXyx31 .container {
  max-width: 1000px;
}
.cid-veuDHXyx31 img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDHXyx31 .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vab9POxL9D {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vab9POxL9D .carousel {
  z-index: 2;
  position: relative;
}
.cid-vab9POxL9D .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vab9POxL9D .user {
  padding: 0 !important;
}
.cid-vab9POxL9D .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vab9POxL9D .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vab9POxL9D .carousel-item.active,
.cid-vab9POxL9D .carousel-item-next,
.cid-vab9POxL9D .carousel-item-prev {
  display: flex;
}
.cid-vab9POxL9D .user_name {
  margin: 0;
}
.cid-vab9POxL9D .carousel-controls a {
  font-size: 2rem;
}
.cid-vab9POxL9D .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vab9POxL9D .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vab9POxL9D ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vab9POxL9D .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vab9POxL9D .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vab9POxL9D .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vab9POxL9D .user_text {
  color: #144774;
}
.cid-vab9POxL9D .user_desk {
  color: #23537e;
}
.cid-vab9POxL9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9POxL9D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9POxL9D .title,
.cid-vab9POxL9D .line-align {
  color: #144774;
}
.cid-vaV2agbNZo {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2agbNZo .mbr-text {
  color: #767676;
}
.cid-vaV2agbNZo .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2agbNZo .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2agbNZo .title .card-title {
  z-index: 1;
}
.cid-vaV2agbNZo .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2agbNZo .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2agbNZo * {
    text-align: left !important;
  }
  .cid-vaV2agbNZo .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2agbNZo .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2agbNZo .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2agbNZo .mbr-section-title,
.cid-vaV2agbNZo .card-box {
  color: #144774;
}
.cid-vaV2agbNZo .card-text {
  color: #000000;
}
.cid-veuDIn6sl2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDIn6sl2 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDIn6sl2 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDIn6sl2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDIn6sl2 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDIn6sl2 .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDIn6sl2 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDIn6sl2 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDIn6sl2 .embla__button--next,
.cid-veuDIn6sl2 .embla__button--prev {
  display: flex;
}
.cid-veuDIn6sl2 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDIn6sl2 .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDIn6sl2 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDIn6sl2 .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDIn6sl2 .embla {
  position: relative;
  width: 100%;
}
.cid-veuDIn6sl2 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDIn6sl2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDIn6sl2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDIn6sl2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2aEJuc1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2aEJuc1 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2aEJuc1 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2aEJuc1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2aEJuc1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2aEJuc1 .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2aEJuc1 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2aEJuc1 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2aEJuc1 .embla__button--next,
.cid-vaV2aEJuc1 .embla__button--prev {
  display: flex;
}
.cid-vaV2aEJuc1 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2aEJuc1 .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2aEJuc1 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2aEJuc1 .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2aEJuc1 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2aEJuc1 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2aEJuc1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2aEJuc1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2aEJuc1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vab9PQDaNJ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vab9PQDaNJ .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vab9PQDaNJ .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vab9PQDaNJ button[type="submit"] {
  border-radius: 100px;
}
.cid-vab9PQDaNJ a[type="submit"],
.cid-vab9PQDaNJ button[type="submit"] {
  margin-top: 0;
}
.cid-vab9PQDaNJ .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vab9PQDaNJ mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vab9PQDaNJ .row .spinner-border,
.cid-vab9PQDaNJ .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vab9PQDaNJ .gdpr-block {
  display: none;
}
.cid-vab9PRBmgT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vab9PRBmgT .content {
    text-align: center;
  }
  .cid-vab9PRBmgT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vab9PRBmgT .logo-subtitle {
  color: #8d97ad;
}
.cid-vab9PRBmgT .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vab9PRBmgT .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vab9PRBmgT .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vab9PRBmgT .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vab9PRBmgT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vab9PRBmgT .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vab9PRBmgT .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vab9PRBmgT .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vab9PRBmgT .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vab9PRBmgT .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vab9PRBmgT .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vab9PRBmgT .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vab9PRBmgT .list-item {
  display: flex;
}
.cid-vab9PRBmgT .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vab9PRBmgT ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vab9PRBmgT ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vab9PRBmgT ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vab9PRBmgT .column-title {
  color: #ec0424;
}
.cid-vab9PRBmgT P {
  color: #ffffff;
}
.cid-vab9PRBmgT .mbr-text {
  color: #ffffff;
}
.cid-vab9PRBmgT .copyright > p {
  color: #ffffff;
}
.cid-vab9ZL8LG0 {
  z-index: 1000;
  width: 100%;
}
.cid-vab9ZL8LG0 nav.navbar {
  position: fixed;
}
.cid-vab9ZL8LG0 .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vab9ZL8LG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vab9ZL8LG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vab9ZL8LG0 .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vab9ZL8LG0 .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-vab9ZL8LG0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vab9ZL8LG0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vab9ZL8LG0 .dropdown-item:hover,
.cid-vab9ZL8LG0 .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vab9ZL8LG0 .dropdown-item:hover span {
  color: white;
}
.cid-vab9ZL8LG0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vab9ZL8LG0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vab9ZL8LG0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vab9ZL8LG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vab9ZL8LG0 .nav-link {
  position: relative;
}
.cid-vab9ZL8LG0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vab9ZL8LG0 .container {
    flex-wrap: nowrap;
  }
}
.cid-vab9ZL8LG0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vab9ZL8LG0 .dropdown-menu,
.cid-vab9ZL8LG0 .navbar.opened {
  background: #ffffff !important;
}
.cid-vab9ZL8LG0 .nav-item:focus,
.cid-vab9ZL8LG0 .nav-link:focus {
  outline: none;
}
.cid-vab9ZL8LG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vab9ZL8LG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vab9ZL8LG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vab9ZL8LG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vab9ZL8LG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vab9ZL8LG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vab9ZL8LG0 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vab9ZL8LG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-vab9ZL8LG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vab9ZL8LG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-vab9ZL8LG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vab9ZL8LG0 .navbar.collapsed {
  justify-content: center;
}
.cid-vab9ZL8LG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vab9ZL8LG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vab9ZL8LG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vab9ZL8LG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vab9ZL8LG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vab9ZL8LG0 .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-vab9ZL8LG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vab9ZL8LG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vab9ZL8LG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vab9ZL8LG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vab9ZL8LG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vab9ZL8LG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vab9ZL8LG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vab9ZL8LG0 .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-vab9ZL8LG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vab9ZL8LG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vab9ZL8LG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vab9ZL8LG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vab9ZL8LG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vab9ZL8LG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vab9ZL8LG0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vab9ZL8LG0 .navbar.navbar-short {
  min-height: 70px;
}
.cid-vab9ZL8LG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vab9ZL8LG0 .dropdown-item.active,
.cid-vab9ZL8LG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-vab9ZL8LG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vab9ZL8LG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vab9ZL8LG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vab9ZL8LG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vab9ZL8LG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vab9ZL8LG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vab9ZL8LG0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vab9ZL8LG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vab9ZL8LG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vab9ZL8LG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vab9ZL8LG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vab9ZL8LG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9ZL8LG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vab9ZL8LG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vab9ZL8LG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9ZL8LG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vab9ZL8LG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vab9ZL8LG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vab9ZL8LG0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vab9ZL8LG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vab9ZL8LG0 .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-vab9ZL8LG0 .navbar {
    height: 80px;
  }
  .cid-vab9ZL8LG0 .navbar.opened {
    height: auto;
  }
  .cid-vab9ZL8LG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab9ZMaE3x {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vab9ZMaE3x .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9ZMaE3x .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-vab9ZMaE3x .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vab9ZMaE3x .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vab9ZMaE3x .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vab9ZMaE3x .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vab9ZMaE3x .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vab9ZMaE3x .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vab9ZMaE3x .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vab9ZMaE3x .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vab9ZMaE3x .btn-wrapper {
  margin-top: -15%;
}
.cid-vab9ZMaE3x .mbr-section-title {
  color: #272b2e;
}
.cid-vab9ZMaE3x .mbr-text,
.cid-vab9ZMaE3x .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vab9ZMaE3x .mbr-section-title,
.cid-vab9ZMaE3x .mbr-section-btn,
.cid-vab9ZMaE3x .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vab9ZMXcig {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9ZMXcig .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9ZMXcig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9ZMXcig .mbr-section-title {
  color: #ec0424;
}
.cid-vab9ZMXcig .mbr-section-subtitle,
.cid-vab9ZMXcig .mbr-section-btn {
  color: #144774;
}
.cid-vab9ZNywPp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vab9ZNywPp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9ZNywPp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9ZNywPp .mbr-section-title {
  color: #144774;
}
.cid-vab9ZNywPp .mbr-text {
  color: #144774;
}
.cid-vab9ZOSrV1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9ZOSrV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9ZOSrV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9ZOSrV1 .mbr-section-subtitle,
.cid-vab9ZOSrV1 .mbr-section-btn {
  color: #144774;
}
.cid-vab9ZOSrV1 .mbr-section-title {
  color: #144774;
}
.cid-vab9ZT0wI1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vab9ZT0wI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9ZT0wI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9ZT0wI1 .contects {
  line-height: 2;
}
.cid-vab9ZT0wI1 .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vab9ZT0wI1 .mbr-text {
  color: #144774;
}
.cid-vab9ZTH6Oj {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vab9ZTH6Oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vab9ZTH6Oj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vab9ZTH6Oj .mbr-section-subtitle,
.cid-vab9ZTH6Oj .mbr-section-btn {
  color: #144774;
}
.cid-vahotgx09L {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahotgx09L .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahotgx09L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahotgx09L .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahotgx09L .mbr-section-subtitle,
.cid-vahotgx09L .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahosSKQNR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahosSKQNR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahosSKQNR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahosSKQNR .item {
  margin-bottom: 3rem;
}
.cid-vahosSKQNR .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahosSKQNR .mbr-section-title {
  color: #ec0424;
}
.cid-vahowFYPHp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahowFYPHp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahowFYPHp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahowFYPHp .item {
  margin-bottom: 3rem;
}
.cid-vahowFYPHp .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahowFYPHp .mbr-section-title {
  color: #ec0424;
}
.cid-vahoueBBFC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoueBBFC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoueBBFC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoueBBFC .item {
  margin-bottom: 3rem;
}
.cid-vahoueBBFC .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoueBBFC .mbr-section-title {
  color: #ec0424;
}
.cid-vahouC1OWs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahouC1OWs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahouC1OWs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahouC1OWs .item {
  margin-bottom: 3rem;
}
.cid-vahouC1OWs .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahouC1OWs .mbr-section-title {
  color: #ec0424;
}
.cid-vahov1wmEF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahov1wmEF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahov1wmEF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahov1wmEF .item {
  margin-bottom: 3rem;
}
.cid-vahov1wmEF .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahov1wmEF .mbr-section-title {
  color: #ec0424;
}
.cid-vahoyQQsWe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahoyQQsWe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahoyQQsWe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahoyQQsWe .item {
  margin-bottom: 3rem;
}
.cid-vahoyQQsWe .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahoyQQsWe .mbr-section-title {
  color: #ec0424;
}
.cid-veuDMoAGVh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDMoAGVh .container {
  max-width: 1000px;
}
.cid-veuDMoAGVh img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDMoAGVh .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vaba0528AY {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vaba0528AY .carousel {
  z-index: 2;
  position: relative;
}
.cid-vaba0528AY .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vaba0528AY .user {
  padding: 0 !important;
}
.cid-vaba0528AY .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vaba0528AY .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vaba0528AY .carousel-item.active,
.cid-vaba0528AY .carousel-item-next,
.cid-vaba0528AY .carousel-item-prev {
  display: flex;
}
.cid-vaba0528AY .user_name {
  margin: 0;
}
.cid-vaba0528AY .carousel-controls a {
  font-size: 2rem;
}
.cid-vaba0528AY .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vaba0528AY .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vaba0528AY ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vaba0528AY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vaba0528AY .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vaba0528AY .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vaba0528AY .user_text {
  color: #144774;
}
.cid-vaba0528AY .user_desk {
  color: #23537e;
}
.cid-vaba0528AY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaba0528AY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaba0528AY .title,
.cid-vaba0528AY .line-align {
  color: #144774;
}
.cid-vaV2ftAM00 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2ftAM00 .mbr-text {
  color: #767676;
}
.cid-vaV2ftAM00 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2ftAM00 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2ftAM00 .title .card-title {
  z-index: 1;
}
.cid-vaV2ftAM00 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2ftAM00 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2ftAM00 * {
    text-align: left !important;
  }
  .cid-vaV2ftAM00 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2ftAM00 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2ftAM00 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2ftAM00 .mbr-section-title,
.cid-vaV2ftAM00 .card-box {
  color: #144774;
}
.cid-vaV2ftAM00 .card-text {
  color: #000000;
}
.cid-veuDMQFODt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDMQFODt .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDMQFODt .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDMQFODt .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDMQFODt .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDMQFODt .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDMQFODt .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDMQFODt .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDMQFODt .embla__button--next,
.cid-veuDMQFODt .embla__button--prev {
  display: flex;
}
.cid-veuDMQFODt .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDMQFODt .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDMQFODt .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDMQFODt .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDMQFODt .embla {
  position: relative;
  width: 100%;
}
.cid-veuDMQFODt .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDMQFODt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDMQFODt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDMQFODt .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2fWg0rU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2fWg0rU .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2fWg0rU .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2fWg0rU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2fWg0rU .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2fWg0rU .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2fWg0rU .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2fWg0rU .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2fWg0rU .embla__button--next,
.cid-vaV2fWg0rU .embla__button--prev {
  display: flex;
}
.cid-vaV2fWg0rU .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2fWg0rU .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2fWg0rU .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2fWg0rU .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2fWg0rU .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2fWg0rU .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2fWg0rU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2fWg0rU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2fWg0rU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaba07fNX7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vaba07fNX7 .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vaba07fNX7 .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vaba07fNX7 button[type="submit"] {
  border-radius: 100px;
}
.cid-vaba07fNX7 a[type="submit"],
.cid-vaba07fNX7 button[type="submit"] {
  margin-top: 0;
}
.cid-vaba07fNX7 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vaba07fNX7 mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vaba07fNX7 .row .spinner-border,
.cid-vaba07fNX7 .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vaba07fNX7 .gdpr-block {
  display: none;
}
.cid-vaba08rYcm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vaba08rYcm .content {
    text-align: center;
  }
  .cid-vaba08rYcm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vaba08rYcm .logo-subtitle {
  color: #8d97ad;
}
.cid-vaba08rYcm .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vaba08rYcm .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vaba08rYcm .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vaba08rYcm .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vaba08rYcm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vaba08rYcm .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vaba08rYcm .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vaba08rYcm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vaba08rYcm .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vaba08rYcm .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vaba08rYcm .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vaba08rYcm .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vaba08rYcm .list-item {
  display: flex;
}
.cid-vaba08rYcm .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vaba08rYcm ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vaba08rYcm ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vaba08rYcm ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vaba08rYcm .column-title {
  color: #ec0424;
}
.cid-vaba08rYcm P {
  color: #ffffff;
}
.cid-vaba08rYcm .mbr-text {
  color: #ffffff;
}
.cid-vaba08rYcm .copyright > p {
  color: #ffffff;
}
.cid-vabaa8wgzC {
  z-index: 1000;
  width: 100%;
}
.cid-vabaa8wgzC nav.navbar {
  position: fixed;
}
.cid-vabaa8wgzC .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabaa8wgzC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabaa8wgzC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabaa8wgzC .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabaa8wgzC .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-vabaa8wgzC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabaa8wgzC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabaa8wgzC .dropdown-item:hover,
.cid-vabaa8wgzC .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabaa8wgzC .dropdown-item:hover span {
  color: white;
}
.cid-vabaa8wgzC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabaa8wgzC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabaa8wgzC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabaa8wgzC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabaa8wgzC .nav-link {
  position: relative;
}
.cid-vabaa8wgzC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabaa8wgzC .container {
    flex-wrap: nowrap;
  }
}
.cid-vabaa8wgzC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabaa8wgzC .dropdown-menu,
.cid-vabaa8wgzC .navbar.opened {
  background: #ffffff !important;
}
.cid-vabaa8wgzC .nav-item:focus,
.cid-vabaa8wgzC .nav-link:focus {
  outline: none;
}
.cid-vabaa8wgzC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabaa8wgzC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabaa8wgzC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabaa8wgzC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabaa8wgzC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabaa8wgzC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabaa8wgzC .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabaa8wgzC .navbar.opened {
  transition: all 0.3s;
}
.cid-vabaa8wgzC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabaa8wgzC .navbar .navbar-logo img {
  width: auto;
}
.cid-vabaa8wgzC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabaa8wgzC .navbar.collapsed {
  justify-content: center;
}
.cid-vabaa8wgzC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabaa8wgzC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabaa8wgzC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabaa8wgzC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabaa8wgzC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabaa8wgzC .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-vabaa8wgzC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabaa8wgzC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabaa8wgzC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabaa8wgzC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabaa8wgzC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabaa8wgzC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabaa8wgzC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabaa8wgzC .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-vabaa8wgzC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabaa8wgzC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabaa8wgzC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabaa8wgzC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabaa8wgzC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabaa8wgzC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabaa8wgzC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabaa8wgzC .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabaa8wgzC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabaa8wgzC .dropdown-item.active,
.cid-vabaa8wgzC .dropdown-item:active {
  background-color: transparent;
}
.cid-vabaa8wgzC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabaa8wgzC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabaa8wgzC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabaa8wgzC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabaa8wgzC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabaa8wgzC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabaa8wgzC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabaa8wgzC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabaa8wgzC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabaa8wgzC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabaa8wgzC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabaa8wgzC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabaa8wgzC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabaa8wgzC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabaa8wgzC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabaa8wgzC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabaa8wgzC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabaa8wgzC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabaa8wgzC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabaa8wgzC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabaa8wgzC .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-vabaa8wgzC .navbar {
    height: 80px;
  }
  .cid-vabaa8wgzC .navbar.opened {
    height: auto;
  }
  .cid-vabaa8wgzC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabaa9G7S3 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabaa9G7S3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaa9G7S3 .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-vabaa9G7S3 .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabaa9G7S3 .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabaa9G7S3 .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabaa9G7S3 .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabaa9G7S3 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabaa9G7S3 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabaa9G7S3 .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabaa9G7S3 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabaa9G7S3 .btn-wrapper {
  margin-top: -15%;
}
.cid-vabaa9G7S3 .mbr-section-title {
  color: #272b2e;
}
.cid-vabaa9G7S3 .mbr-text,
.cid-vabaa9G7S3 .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabaa9G7S3 .mbr-section-title,
.cid-vabaa9G7S3 .mbr-section-btn,
.cid-vabaa9G7S3 .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabaaaDOPj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabaaaDOPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaaaDOPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaaaDOPj .mbr-section-title {
  color: #ec0424;
}
.cid-vabaaaDOPj .mbr-section-subtitle,
.cid-vabaaaDOPj .mbr-section-btn {
  color: #144774;
}
.cid-vabaabilHt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabaabilHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaabilHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaabilHt .mbr-section-title {
  color: #144774;
}
.cid-vabaabilHt .mbr-text {
  color: #144774;
}
.cid-vabaacOicW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaacOicW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaacOicW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaacOicW .mbr-section-subtitle,
.cid-vabaacOicW .mbr-section-btn {
  color: #144774;
}
.cid-vabaacOicW .mbr-section-title {
  color: #144774;
}
.cid-vabaagLdsE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaagLdsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaagLdsE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaagLdsE .contects {
  line-height: 2;
}
.cid-vabaagLdsE .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabaagLdsE .mbr-text {
  color: #144774;
}
.cid-vabaahtS5G {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabaahtS5G .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaahtS5G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaahtS5G .mbr-section-subtitle,
.cid-vabaahtS5G .mbr-section-btn {
  color: #144774;
}
.cid-vahnGx1SjR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnGx1SjR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnGx1SjR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnGx1SjR .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahnGx1SjR .mbr-section-subtitle,
.cid-vahnGx1SjR .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahnHcbQYT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnHcbQYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnHcbQYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnHcbQYT .item {
  margin-bottom: 3rem;
}
.cid-vahnHcbQYT .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnHcbQYT .mbr-section-title {
  color: #ec0424;
}
.cid-vahnHD3ZrH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnHD3ZrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnHD3ZrH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnHD3ZrH .item {
  margin-bottom: 3rem;
}
.cid-vahnHD3ZrH .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnHD3ZrH .mbr-section-title {
  color: #ec0424;
}
.cid-vahnI5ZLye {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnI5ZLye .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnI5ZLye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnI5ZLye .item {
  margin-bottom: 3rem;
}
.cid-vahnI5ZLye .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnI5ZLye .mbr-section-title {
  color: #ec0424;
}
.cid-vahnIxSZS2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnIxSZS2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnIxSZS2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnIxSZS2 .item {
  margin-bottom: 3rem;
}
.cid-vahnIxSZS2 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnIxSZS2 .mbr-section-title {
  color: #ec0424;
}
.cid-vahnIVpoll {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnIVpoll .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnIVpoll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnIVpoll .item {
  margin-bottom: 3rem;
}
.cid-vahnIVpoll .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnIVpoll .mbr-section-title {
  color: #ec0424;
}
.cid-vahnJYf6LF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnJYf6LF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnJYf6LF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnJYf6LF .item {
  margin-bottom: 3rem;
}
.cid-vahnJYf6LF .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnJYf6LF .mbr-section-title {
  color: #ec0424;
}
.cid-veuDQvjCb0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDQvjCb0 .container {
  max-width: 1000px;
}
.cid-veuDQvjCb0 img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDQvjCb0 .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabaasvliJ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabaasvliJ .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabaasvliJ .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabaasvliJ .user {
  padding: 0 !important;
}
.cid-vabaasvliJ .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabaasvliJ .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabaasvliJ .carousel-item.active,
.cid-vabaasvliJ .carousel-item-next,
.cid-vabaasvliJ .carousel-item-prev {
  display: flex;
}
.cid-vabaasvliJ .user_name {
  margin: 0;
}
.cid-vabaasvliJ .carousel-controls a {
  font-size: 2rem;
}
.cid-vabaasvliJ .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabaasvliJ .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabaasvliJ ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabaasvliJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabaasvliJ .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabaasvliJ .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabaasvliJ .user_text {
  color: #144774;
}
.cid-vabaasvliJ .user_desk {
  color: #23537e;
}
.cid-vabaasvliJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaasvliJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaasvliJ .title,
.cid-vabaasvliJ .line-align {
  color: #144774;
}
.cid-vaV2j9ajVD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2j9ajVD .mbr-text {
  color: #767676;
}
.cid-vaV2j9ajVD .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2j9ajVD .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2j9ajVD .title .card-title {
  z-index: 1;
}
.cid-vaV2j9ajVD .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2j9ajVD .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2j9ajVD * {
    text-align: left !important;
  }
  .cid-vaV2j9ajVD .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2j9ajVD .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2j9ajVD .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2j9ajVD .mbr-section-title,
.cid-vaV2j9ajVD .card-box {
  color: #144774;
}
.cid-vaV2j9ajVD .card-text {
  color: #000000;
}
.cid-veuDQXnxpl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDQXnxpl .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDQXnxpl .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDQXnxpl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDQXnxpl .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDQXnxpl .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDQXnxpl .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDQXnxpl .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDQXnxpl .embla__button--next,
.cid-veuDQXnxpl .embla__button--prev {
  display: flex;
}
.cid-veuDQXnxpl .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDQXnxpl .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDQXnxpl .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDQXnxpl .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDQXnxpl .embla {
  position: relative;
  width: 100%;
}
.cid-veuDQXnxpl .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDQXnxpl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDQXnxpl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDQXnxpl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2jHm23x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2jHm23x .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2jHm23x .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2jHm23x .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2jHm23x .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2jHm23x .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2jHm23x .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2jHm23x .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2jHm23x .embla__button--next,
.cid-vaV2jHm23x .embla__button--prev {
  display: flex;
}
.cid-vaV2jHm23x .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2jHm23x .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2jHm23x .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2jHm23x .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2jHm23x .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2jHm23x .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2jHm23x .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2jHm23x .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2jHm23x .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabaauMlrt {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabaauMlrt .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabaauMlrt .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabaauMlrt button[type="submit"] {
  border-radius: 100px;
}
.cid-vabaauMlrt a[type="submit"],
.cid-vabaauMlrt button[type="submit"] {
  margin-top: 0;
}
.cid-vabaauMlrt .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabaauMlrt mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabaauMlrt .row .spinner-border,
.cid-vabaauMlrt .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabaauMlrt .gdpr-block {
  display: none;
}
.cid-vabaavQxEG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabaavQxEG .content {
    text-align: center;
  }
  .cid-vabaavQxEG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabaavQxEG .logo-subtitle {
  color: #8d97ad;
}
.cid-vabaavQxEG .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabaavQxEG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabaavQxEG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabaavQxEG .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabaavQxEG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabaavQxEG .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabaavQxEG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabaavQxEG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabaavQxEG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabaavQxEG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabaavQxEG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabaavQxEG .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabaavQxEG .list-item {
  display: flex;
}
.cid-vabaavQxEG .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabaavQxEG ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabaavQxEG ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabaavQxEG ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabaavQxEG .column-title {
  color: #ec0424;
}
.cid-vabaavQxEG P {
  color: #ffffff;
}
.cid-vabaavQxEG .mbr-text {
  color: #ffffff;
}
.cid-vabaavQxEG .copyright > p {
  color: #ffffff;
}
.cid-vabanfJC5v {
  z-index: 1000;
  width: 100%;
}
.cid-vabanfJC5v nav.navbar {
  position: fixed;
}
.cid-vabanfJC5v .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabanfJC5v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabanfJC5v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabanfJC5v .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabanfJC5v .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-vabanfJC5v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabanfJC5v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabanfJC5v .dropdown-item:hover,
.cid-vabanfJC5v .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabanfJC5v .dropdown-item:hover span {
  color: white;
}
.cid-vabanfJC5v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabanfJC5v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabanfJC5v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabanfJC5v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabanfJC5v .nav-link {
  position: relative;
}
.cid-vabanfJC5v .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabanfJC5v .container {
    flex-wrap: nowrap;
  }
}
.cid-vabanfJC5v .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabanfJC5v .dropdown-menu,
.cid-vabanfJC5v .navbar.opened {
  background: #ffffff !important;
}
.cid-vabanfJC5v .nav-item:focus,
.cid-vabanfJC5v .nav-link:focus {
  outline: none;
}
.cid-vabanfJC5v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabanfJC5v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabanfJC5v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabanfJC5v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabanfJC5v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabanfJC5v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabanfJC5v .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabanfJC5v .navbar.opened {
  transition: all 0.3s;
}
.cid-vabanfJC5v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabanfJC5v .navbar .navbar-logo img {
  width: auto;
}
.cid-vabanfJC5v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabanfJC5v .navbar.collapsed {
  justify-content: center;
}
.cid-vabanfJC5v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabanfJC5v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabanfJC5v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabanfJC5v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabanfJC5v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabanfJC5v .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-vabanfJC5v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabanfJC5v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabanfJC5v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabanfJC5v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabanfJC5v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabanfJC5v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabanfJC5v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabanfJC5v .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-vabanfJC5v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabanfJC5v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabanfJC5v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabanfJC5v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabanfJC5v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabanfJC5v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabanfJC5v .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabanfJC5v .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabanfJC5v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabanfJC5v .dropdown-item.active,
.cid-vabanfJC5v .dropdown-item:active {
  background-color: transparent;
}
.cid-vabanfJC5v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabanfJC5v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabanfJC5v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabanfJC5v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabanfJC5v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabanfJC5v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabanfJC5v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabanfJC5v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabanfJC5v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabanfJC5v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabanfJC5v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabanfJC5v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabanfJC5v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabanfJC5v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabanfJC5v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabanfJC5v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabanfJC5v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabanfJC5v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabanfJC5v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabanfJC5v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabanfJC5v .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-vabanfJC5v .navbar {
    height: 80px;
  }
  .cid-vabanfJC5v .navbar.opened {
    height: auto;
  }
  .cid-vabanfJC5v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabangARcZ {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabangARcZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabangARcZ .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-vabangARcZ .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabangARcZ .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabangARcZ .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabangARcZ .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabangARcZ .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabangARcZ .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabangARcZ .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabangARcZ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabangARcZ .btn-wrapper {
  margin-top: -15%;
}
.cid-vabangARcZ .mbr-section-title {
  color: #272b2e;
}
.cid-vabangARcZ .mbr-text,
.cid-vabangARcZ .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabangARcZ .mbr-section-title,
.cid-vabangARcZ .mbr-section-btn,
.cid-vabangARcZ .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabanhoANY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabanhoANY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabanhoANY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabanhoANY .mbr-section-title {
  color: #ec0424;
}
.cid-vabanhoANY .mbr-section-subtitle,
.cid-vabanhoANY .mbr-section-btn {
  color: #144774;
}
.cid-vabanhXjl3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabanhXjl3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabanhXjl3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabanhXjl3 .mbr-section-title {
  color: #144774;
}
.cid-vabanhXjl3 .mbr-text {
  color: #144774;
}
.cid-vabanjdZfg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabanjdZfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabanjdZfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabanjdZfg .mbr-section-subtitle,
.cid-vabanjdZfg .mbr-section-btn {
  color: #144774;
}
.cid-vabanjdZfg .mbr-section-title {
  color: #144774;
}
.cid-vabann7kqS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabann7kqS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabann7kqS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabann7kqS .contects {
  line-height: 2;
}
.cid-vabann7kqS .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabann7kqS .mbr-text {
  color: #144774;
}
.cid-vabannNX42 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabannNX42 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabannNX42 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabannNX42 .mbr-section-subtitle,
.cid-vabannNX42 .mbr-section-btn {
  color: #144774;
}
.cid-vahnz3ARkq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnz3ARkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnz3ARkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnz3ARkq .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahnz3ARkq .mbr-section-subtitle,
.cid-vahnz3ARkq .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahnzx3YGr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnzx3YGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnzx3YGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnzx3YGr .item {
  margin-bottom: 3rem;
}
.cid-vahnzx3YGr .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnzx3YGr .mbr-section-title {
  color: #ec0424;
}
.cid-vahnAhpJUa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnAhpJUa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnAhpJUa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnAhpJUa .item {
  margin-bottom: 3rem;
}
.cid-vahnAhpJUa .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnAhpJUa .mbr-section-title {
  color: #ec0424;
}
.cid-vahnB4BLV5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnB4BLV5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnB4BLV5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnB4BLV5 .item {
  margin-bottom: 3rem;
}
.cid-vahnB4BLV5 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnB4BLV5 .mbr-section-title {
  color: #ec0424;
}
.cid-vahnBqVdTf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnBqVdTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnBqVdTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnBqVdTf .item {
  margin-bottom: 3rem;
}
.cid-vahnBqVdTf .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnBqVdTf .mbr-section-title {
  color: #ec0424;
}
.cid-vahnBQMEAh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnBQMEAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnBQMEAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnBQMEAh .item {
  margin-bottom: 3rem;
}
.cid-vahnBQMEAh .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnBQMEAh .mbr-section-title {
  color: #ec0424;
}
.cid-vahnCqgiXV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnCqgiXV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnCqgiXV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnCqgiXV .item {
  margin-bottom: 3rem;
}
.cid-vahnCqgiXV .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnCqgiXV .mbr-section-title {
  color: #ec0424;
}
.cid-veuDVhevZU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuDVhevZU .container {
  max-width: 1000px;
}
.cid-veuDVhevZU img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuDVhevZU .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabanzalvc {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabanzalvc .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabanzalvc .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabanzalvc .user {
  padding: 0 !important;
}
.cid-vabanzalvc .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabanzalvc .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabanzalvc .carousel-item.active,
.cid-vabanzalvc .carousel-item-next,
.cid-vabanzalvc .carousel-item-prev {
  display: flex;
}
.cid-vabanzalvc .user_name {
  margin: 0;
}
.cid-vabanzalvc .carousel-controls a {
  font-size: 2rem;
}
.cid-vabanzalvc .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabanzalvc .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabanzalvc ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabanzalvc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabanzalvc .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabanzalvc .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabanzalvc .user_text {
  color: #144774;
}
.cid-vabanzalvc .user_desk {
  color: #23537e;
}
.cid-vabanzalvc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabanzalvc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabanzalvc .title,
.cid-vabanzalvc .line-align {
  color: #144774;
}
.cid-vaV2rgS7Jm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2rgS7Jm .mbr-text {
  color: #767676;
}
.cid-vaV2rgS7Jm .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2rgS7Jm .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2rgS7Jm .title .card-title {
  z-index: 1;
}
.cid-vaV2rgS7Jm .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2rgS7Jm .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2rgS7Jm * {
    text-align: left !important;
  }
  .cid-vaV2rgS7Jm .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2rgS7Jm .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2rgS7Jm .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2rgS7Jm .mbr-section-title,
.cid-vaV2rgS7Jm .card-box {
  color: #144774;
}
.cid-vaV2rgS7Jm .card-text {
  color: #000000;
}
.cid-veuDVEurBN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuDVEurBN .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuDVEurBN .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuDVEurBN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuDVEurBN .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuDVEurBN .embla__slide .slide-content {
  width: 100%;
}
.cid-veuDVEurBN .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuDVEurBN .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuDVEurBN .embla__button--next,
.cid-veuDVEurBN .embla__button--prev {
  display: flex;
}
.cid-veuDVEurBN .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuDVEurBN .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuDVEurBN .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuDVEurBN .embla__button.embla__button--next {
  right: 0;
}
.cid-veuDVEurBN .embla {
  position: relative;
  width: 100%;
}
.cid-veuDVEurBN .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuDVEurBN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuDVEurBN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuDVEurBN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2rFhbkk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2rFhbkk .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2rFhbkk .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2rFhbkk .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2rFhbkk .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2rFhbkk .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2rFhbkk .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2rFhbkk .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2rFhbkk .embla__button--next,
.cid-vaV2rFhbkk .embla__button--prev {
  display: flex;
}
.cid-vaV2rFhbkk .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2rFhbkk .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2rFhbkk .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2rFhbkk .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2rFhbkk .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2rFhbkk .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2rFhbkk .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2rFhbkk .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2rFhbkk .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabanBjMoG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabanBjMoG .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabanBjMoG .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabanBjMoG button[type="submit"] {
  border-radius: 100px;
}
.cid-vabanBjMoG a[type="submit"],
.cid-vabanBjMoG button[type="submit"] {
  margin-top: 0;
}
.cid-vabanBjMoG .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabanBjMoG mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabanBjMoG .row .spinner-border,
.cid-vabanBjMoG .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabanBjMoG .gdpr-block {
  display: none;
}
.cid-vabanCq3ve {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabanCq3ve .content {
    text-align: center;
  }
  .cid-vabanCq3ve .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabanCq3ve .logo-subtitle {
  color: #8d97ad;
}
.cid-vabanCq3ve .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabanCq3ve .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabanCq3ve .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabanCq3ve .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabanCq3ve .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabanCq3ve .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabanCq3ve .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabanCq3ve .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabanCq3ve .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabanCq3ve .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabanCq3ve .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabanCq3ve .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabanCq3ve .list-item {
  display: flex;
}
.cid-vabanCq3ve .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabanCq3ve ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabanCq3ve ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabanCq3ve ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabanCq3ve .column-title {
  color: #ec0424;
}
.cid-vabanCq3ve P {
  color: #ffffff;
}
.cid-vabanCq3ve .mbr-text {
  color: #ffffff;
}
.cid-vabanCq3ve .copyright > p {
  color: #ffffff;
}
.cid-vabayI65Qx {
  z-index: 1000;
  width: 100%;
}
.cid-vabayI65Qx nav.navbar {
  position: fixed;
}
.cid-vabayI65Qx .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabayI65Qx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabayI65Qx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabayI65Qx .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabayI65Qx .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-vabayI65Qx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabayI65Qx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabayI65Qx .dropdown-item:hover,
.cid-vabayI65Qx .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabayI65Qx .dropdown-item:hover span {
  color: white;
}
.cid-vabayI65Qx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabayI65Qx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabayI65Qx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabayI65Qx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabayI65Qx .nav-link {
  position: relative;
}
.cid-vabayI65Qx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabayI65Qx .container {
    flex-wrap: nowrap;
  }
}
.cid-vabayI65Qx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabayI65Qx .dropdown-menu,
.cid-vabayI65Qx .navbar.opened {
  background: #ffffff !important;
}
.cid-vabayI65Qx .nav-item:focus,
.cid-vabayI65Qx .nav-link:focus {
  outline: none;
}
.cid-vabayI65Qx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabayI65Qx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabayI65Qx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabayI65Qx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabayI65Qx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabayI65Qx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabayI65Qx .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabayI65Qx .navbar.opened {
  transition: all 0.3s;
}
.cid-vabayI65Qx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabayI65Qx .navbar .navbar-logo img {
  width: auto;
}
.cid-vabayI65Qx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabayI65Qx .navbar.collapsed {
  justify-content: center;
}
.cid-vabayI65Qx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabayI65Qx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabayI65Qx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabayI65Qx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabayI65Qx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabayI65Qx .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-vabayI65Qx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabayI65Qx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabayI65Qx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabayI65Qx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabayI65Qx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabayI65Qx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabayI65Qx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabayI65Qx .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-vabayI65Qx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabayI65Qx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabayI65Qx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabayI65Qx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabayI65Qx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabayI65Qx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabayI65Qx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabayI65Qx .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabayI65Qx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabayI65Qx .dropdown-item.active,
.cid-vabayI65Qx .dropdown-item:active {
  background-color: transparent;
}
.cid-vabayI65Qx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabayI65Qx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabayI65Qx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabayI65Qx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabayI65Qx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabayI65Qx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabayI65Qx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabayI65Qx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabayI65Qx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabayI65Qx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabayI65Qx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabayI65Qx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabayI65Qx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabayI65Qx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabayI65Qx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabayI65Qx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabayI65Qx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabayI65Qx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabayI65Qx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabayI65Qx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabayI65Qx .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-vabayI65Qx .navbar {
    height: 80px;
  }
  .cid-vabayI65Qx .navbar.opened {
    height: auto;
  }
  .cid-vabayI65Qx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabayITn7r {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabayITn7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabayITn7r .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-vabayITn7r .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabayITn7r .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabayITn7r .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabayITn7r .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabayITn7r .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabayITn7r .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabayITn7r .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabayITn7r .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabayITn7r .btn-wrapper {
  margin-top: -15%;
}
.cid-vabayITn7r .mbr-section-title {
  color: #272b2e;
}
.cid-vabayITn7r .mbr-text,
.cid-vabayITn7r .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabayITn7r .mbr-section-title,
.cid-vabayITn7r .mbr-section-btn,
.cid-vabayITn7r .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabayJDmoH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabayJDmoH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabayJDmoH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabayJDmoH .mbr-section-title {
  color: #ec0424;
}
.cid-vabayJDmoH .mbr-section-subtitle,
.cid-vabayJDmoH .mbr-section-btn {
  color: #144774;
}
.cid-vabayKesNl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabayKesNl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabayKesNl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabayKesNl .mbr-section-title {
  color: #144774;
}
.cid-vabayKesNl .mbr-text {
  color: #144774;
}
.cid-vabayLtbSp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabayLtbSp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabayLtbSp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabayLtbSp .mbr-section-subtitle,
.cid-vabayLtbSp .mbr-section-btn {
  color: #144774;
}
.cid-vabayLtbSp .mbr-section-title {
  color: #144774;
}
.cid-vabayPvimX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabayPvimX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabayPvimX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabayPvimX .contects {
  line-height: 2;
}
.cid-vabayPvimX .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabayPvimX .mbr-text {
  color: #144774;
}
.cid-vabayQtyWn {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabayQtyWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabayQtyWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabayQtyWn .mbr-section-subtitle,
.cid-vabayQtyWn .mbr-section-btn {
  color: #144774;
}
.cid-vahno19TF6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahno19TF6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahno19TF6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahno19TF6 .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahno19TF6 .mbr-section-subtitle,
.cid-vahno19TF6 .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahnnA74F5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnnA74F5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnnA74F5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnnA74F5 .item {
  margin-bottom: 3rem;
}
.cid-vahnnA74F5 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnnA74F5 .mbr-section-title {
  color: #ec0424;
}
.cid-vahnoYAraL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnoYAraL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnoYAraL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnoYAraL .item {
  margin-bottom: 3rem;
}
.cid-vahnoYAraL .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnoYAraL .mbr-section-title {
  color: #ec0424;
}
.cid-vahnpS8vFy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnpS8vFy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnpS8vFy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnpS8vFy .item {
  margin-bottom: 3rem;
}
.cid-vahnpS8vFy .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnpS8vFy .mbr-section-title {
  color: #ec0424;
}
.cid-vahnqtYxcN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnqtYxcN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnqtYxcN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnqtYxcN .item {
  margin-bottom: 3rem;
}
.cid-vahnqtYxcN .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnqtYxcN .mbr-section-title {
  color: #ec0424;
}
.cid-vahnqRmt7p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnqRmt7p .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnqRmt7p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnqRmt7p .item {
  margin-bottom: 3rem;
}
.cid-vahnqRmt7p .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnqRmt7p .mbr-section-title {
  color: #ec0424;
}
.cid-vahnrurpPU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnrurpPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnrurpPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnrurpPU .item {
  margin-bottom: 3rem;
}
.cid-vahnrurpPU .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnrurpPU .mbr-section-title {
  color: #ec0424;
}
.cid-veuE0eBePT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuE0eBePT .container {
  max-width: 1000px;
}
.cid-veuE0eBePT img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuE0eBePT .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabaz1vakH {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabaz1vakH .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabaz1vakH .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabaz1vakH .user {
  padding: 0 !important;
}
.cid-vabaz1vakH .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabaz1vakH .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabaz1vakH .carousel-item.active,
.cid-vabaz1vakH .carousel-item-next,
.cid-vabaz1vakH .carousel-item-prev {
  display: flex;
}
.cid-vabaz1vakH .user_name {
  margin: 0;
}
.cid-vabaz1vakH .carousel-controls a {
  font-size: 2rem;
}
.cid-vabaz1vakH .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabaz1vakH .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabaz1vakH ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabaz1vakH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabaz1vakH .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabaz1vakH .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabaz1vakH .user_text {
  color: #144774;
}
.cid-vabaz1vakH .user_desk {
  color: #23537e;
}
.cid-vabaz1vakH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaz1vakH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaz1vakH .title,
.cid-vabaz1vakH .line-align {
  color: #144774;
}
.cid-vaV2APsfeN {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2APsfeN .mbr-text {
  color: #767676;
}
.cid-vaV2APsfeN .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2APsfeN .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2APsfeN .title .card-title {
  z-index: 1;
}
.cid-vaV2APsfeN .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2APsfeN .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2APsfeN * {
    text-align: left !important;
  }
  .cid-vaV2APsfeN .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2APsfeN .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2APsfeN .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2APsfeN .mbr-section-title,
.cid-vaV2APsfeN .card-box {
  color: #144774;
}
.cid-vaV2APsfeN .card-text {
  color: #000000;
}
.cid-veuE0FEOq5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuE0FEOq5 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuE0FEOq5 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuE0FEOq5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuE0FEOq5 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuE0FEOq5 .embla__slide .slide-content {
  width: 100%;
}
.cid-veuE0FEOq5 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuE0FEOq5 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuE0FEOq5 .embla__button--next,
.cid-veuE0FEOq5 .embla__button--prev {
  display: flex;
}
.cid-veuE0FEOq5 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuE0FEOq5 .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuE0FEOq5 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuE0FEOq5 .embla__button.embla__button--next {
  right: 0;
}
.cid-veuE0FEOq5 .embla {
  position: relative;
  width: 100%;
}
.cid-veuE0FEOq5 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuE0FEOq5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuE0FEOq5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuE0FEOq5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2BsLcul {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2BsLcul .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2BsLcul .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2BsLcul .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2BsLcul .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2BsLcul .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2BsLcul .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2BsLcul .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2BsLcul .embla__button--next,
.cid-vaV2BsLcul .embla__button--prev {
  display: flex;
}
.cid-vaV2BsLcul .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2BsLcul .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2BsLcul .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2BsLcul .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2BsLcul .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2BsLcul .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2BsLcul .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2BsLcul .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2BsLcul .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabaz3C5a4 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabaz3C5a4 .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabaz3C5a4 .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabaz3C5a4 button[type="submit"] {
  border-radius: 100px;
}
.cid-vabaz3C5a4 a[type="submit"],
.cid-vabaz3C5a4 button[type="submit"] {
  margin-top: 0;
}
.cid-vabaz3C5a4 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabaz3C5a4 mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabaz3C5a4 .row .spinner-border,
.cid-vabaz3C5a4 .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabaz3C5a4 .gdpr-block {
  display: none;
}
.cid-vabaz4KTfX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabaz4KTfX .content {
    text-align: center;
  }
  .cid-vabaz4KTfX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabaz4KTfX .logo-subtitle {
  color: #8d97ad;
}
.cid-vabaz4KTfX .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabaz4KTfX .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabaz4KTfX .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabaz4KTfX .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabaz4KTfX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabaz4KTfX .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabaz4KTfX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabaz4KTfX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabaz4KTfX .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabaz4KTfX .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabaz4KTfX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabaz4KTfX .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabaz4KTfX .list-item {
  display: flex;
}
.cid-vabaz4KTfX .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabaz4KTfX ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabaz4KTfX ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabaz4KTfX ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabaz4KTfX .column-title {
  color: #ec0424;
}
.cid-vabaz4KTfX P {
  color: #ffffff;
}
.cid-vabaz4KTfX .mbr-text {
  color: #ffffff;
}
.cid-vabaz4KTfX .copyright > p {
  color: #ffffff;
}
.cid-vabaJU0Azh {
  z-index: 1000;
  width: 100%;
}
.cid-vabaJU0Azh nav.navbar {
  position: fixed;
}
.cid-vabaJU0Azh .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabaJU0Azh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabaJU0Azh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabaJU0Azh .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabaJU0Azh .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-vabaJU0Azh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabaJU0Azh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabaJU0Azh .dropdown-item:hover,
.cid-vabaJU0Azh .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabaJU0Azh .dropdown-item:hover span {
  color: white;
}
.cid-vabaJU0Azh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabaJU0Azh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabaJU0Azh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabaJU0Azh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabaJU0Azh .nav-link {
  position: relative;
}
.cid-vabaJU0Azh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabaJU0Azh .container {
    flex-wrap: nowrap;
  }
}
.cid-vabaJU0Azh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabaJU0Azh .dropdown-menu,
.cid-vabaJU0Azh .navbar.opened {
  background: #ffffff !important;
}
.cid-vabaJU0Azh .nav-item:focus,
.cid-vabaJU0Azh .nav-link:focus {
  outline: none;
}
.cid-vabaJU0Azh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabaJU0Azh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabaJU0Azh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabaJU0Azh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabaJU0Azh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabaJU0Azh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabaJU0Azh .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabaJU0Azh .navbar.opened {
  transition: all 0.3s;
}
.cid-vabaJU0Azh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabaJU0Azh .navbar .navbar-logo img {
  width: auto;
}
.cid-vabaJU0Azh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabaJU0Azh .navbar.collapsed {
  justify-content: center;
}
.cid-vabaJU0Azh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabaJU0Azh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabaJU0Azh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabaJU0Azh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabaJU0Azh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabaJU0Azh .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-vabaJU0Azh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabaJU0Azh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabaJU0Azh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabaJU0Azh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabaJU0Azh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabaJU0Azh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabaJU0Azh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabaJU0Azh .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-vabaJU0Azh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabaJU0Azh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabaJU0Azh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabaJU0Azh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabaJU0Azh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabaJU0Azh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabaJU0Azh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabaJU0Azh .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabaJU0Azh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabaJU0Azh .dropdown-item.active,
.cid-vabaJU0Azh .dropdown-item:active {
  background-color: transparent;
}
.cid-vabaJU0Azh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabaJU0Azh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabaJU0Azh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabaJU0Azh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabaJU0Azh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabaJU0Azh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabaJU0Azh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabaJU0Azh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabaJU0Azh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabaJU0Azh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabaJU0Azh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabaJU0Azh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabaJU0Azh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabaJU0Azh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabaJU0Azh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabaJU0Azh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabaJU0Azh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabaJU0Azh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabaJU0Azh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabaJU0Azh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabaJU0Azh .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-vabaJU0Azh .navbar {
    height: 80px;
  }
  .cid-vabaJU0Azh .navbar.opened {
    height: auto;
  }
  .cid-vabaJU0Azh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabaJUUxRf {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabaJUUxRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaJUUxRf .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-vabaJUUxRf .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabaJUUxRf .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabaJUUxRf .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabaJUUxRf .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabaJUUxRf .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabaJUUxRf .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabaJUUxRf .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabaJUUxRf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabaJUUxRf .btn-wrapper {
  margin-top: -15%;
}
.cid-vabaJUUxRf .mbr-section-title {
  color: #272b2e;
}
.cid-vabaJUUxRf .mbr-text,
.cid-vabaJUUxRf .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabaJUUxRf .mbr-section-title,
.cid-vabaJUUxRf .mbr-section-btn,
.cid-vabaJUUxRf .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabaJVz37w {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabaJVz37w .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaJVz37w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaJVz37w .mbr-section-title {
  color: #ec0424;
}
.cid-vabaJVz37w .mbr-section-subtitle,
.cid-vabaJVz37w .mbr-section-btn {
  color: #144774;
}
.cid-vabaJWcPJ4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabaJWcPJ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaJWcPJ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaJWcPJ4 .mbr-section-title {
  color: #144774;
}
.cid-vabaJWcPJ4 .mbr-text {
  color: #144774;
}
.cid-vabaJXwalr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaJXwalr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaJXwalr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaJXwalr .mbr-section-subtitle,
.cid-vabaJXwalr .mbr-section-btn {
  color: #144774;
}
.cid-vabaJXwalr .mbr-section-title {
  color: #144774;
}
.cid-vabaK1t2Ki {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaK1t2Ki .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaK1t2Ki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaK1t2Ki .contects {
  line-height: 2;
}
.cid-vabaK1t2Ki .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabaK1t2Ki .mbr-text {
  color: #144774;
}
.cid-vabaK2fUke {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabaK2fUke .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaK2fUke .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaK2fUke .mbr-section-subtitle,
.cid-vabaK2fUke .mbr-section-btn {
  color: #144774;
}
.cid-vahnbdLDLi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnbdLDLi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnbdLDLi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnbdLDLi .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahnbdLDLi .mbr-section-subtitle,
.cid-vahnbdLDLi .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahnaQz58g {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnaQz58g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnaQz58g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnaQz58g .item {
  margin-bottom: 3rem;
}
.cid-vahnaQz58g .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnaQz58g .mbr-section-title {
  color: #ec0424;
}
.cid-vahnbT6alX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnbT6alX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnbT6alX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnbT6alX .item {
  margin-bottom: 3rem;
}
.cid-vahnbT6alX .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnbT6alX .mbr-section-title {
  color: #ec0424;
}
.cid-vahncRXdgh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahncRXdgh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahncRXdgh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahncRXdgh .item {
  margin-bottom: 3rem;
}
.cid-vahncRXdgh .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahncRXdgh .mbr-section-title {
  color: #ec0424;
}
.cid-vahndtCQ1W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahndtCQ1W .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahndtCQ1W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahndtCQ1W .item {
  margin-bottom: 3rem;
}
.cid-vahndtCQ1W .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahndtCQ1W .mbr-section-title {
  color: #ec0424;
}
.cid-vahnglub5w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahnglub5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahnglub5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahnglub5w .item {
  margin-bottom: 3rem;
}
.cid-vahnglub5w .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahnglub5w .mbr-section-title {
  color: #ec0424;
}
.cid-vahngWsOZm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahngWsOZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahngWsOZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahngWsOZm .item {
  margin-bottom: 3rem;
}
.cid-vahngWsOZm .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahngWsOZm .mbr-section-title {
  color: #ec0424;
}
.cid-veuE59b4w1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuE59b4w1 .container {
  max-width: 1000px;
}
.cid-veuE59b4w1 img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuE59b4w1 .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabaKd7Cmc {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabaKd7Cmc .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabaKd7Cmc .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabaKd7Cmc .user {
  padding: 0 !important;
}
.cid-vabaKd7Cmc .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabaKd7Cmc .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabaKd7Cmc .carousel-item.active,
.cid-vabaKd7Cmc .carousel-item-next,
.cid-vabaKd7Cmc .carousel-item-prev {
  display: flex;
}
.cid-vabaKd7Cmc .user_name {
  margin: 0;
}
.cid-vabaKd7Cmc .carousel-controls a {
  font-size: 2rem;
}
.cid-vabaKd7Cmc .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabaKd7Cmc .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabaKd7Cmc ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabaKd7Cmc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabaKd7Cmc .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabaKd7Cmc .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabaKd7Cmc .user_text {
  color: #144774;
}
.cid-vabaKd7Cmc .user_desk {
  color: #23537e;
}
.cid-vabaKd7Cmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaKd7Cmc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaKd7Cmc .title,
.cid-vabaKd7Cmc .line-align {
  color: #144774;
}
.cid-vaV2EW8E5I {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2EW8E5I .mbr-text {
  color: #767676;
}
.cid-vaV2EW8E5I .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2EW8E5I .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2EW8E5I .title .card-title {
  z-index: 1;
}
.cid-vaV2EW8E5I .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2EW8E5I .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2EW8E5I * {
    text-align: left !important;
  }
  .cid-vaV2EW8E5I .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2EW8E5I .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2EW8E5I .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2EW8E5I .mbr-section-title,
.cid-vaV2EW8E5I .card-box {
  color: #144774;
}
.cid-vaV2EW8E5I .card-text {
  color: #000000;
}
.cid-veuE5PNoFV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuE5PNoFV .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuE5PNoFV .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuE5PNoFV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuE5PNoFV .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuE5PNoFV .embla__slide .slide-content {
  width: 100%;
}
.cid-veuE5PNoFV .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuE5PNoFV .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuE5PNoFV .embla__button--next,
.cid-veuE5PNoFV .embla__button--prev {
  display: flex;
}
.cid-veuE5PNoFV .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuE5PNoFV .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuE5PNoFV .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuE5PNoFV .embla__button.embla__button--next {
  right: 0;
}
.cid-veuE5PNoFV .embla {
  position: relative;
  width: 100%;
}
.cid-veuE5PNoFV .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuE5PNoFV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuE5PNoFV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuE5PNoFV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2FlSccM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2FlSccM .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2FlSccM .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2FlSccM .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2FlSccM .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2FlSccM .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2FlSccM .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2FlSccM .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2FlSccM .embla__button--next,
.cid-vaV2FlSccM .embla__button--prev {
  display: flex;
}
.cid-vaV2FlSccM .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2FlSccM .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2FlSccM .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2FlSccM .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2FlSccM .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2FlSccM .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2FlSccM .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2FlSccM .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2FlSccM .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabaKfeyzF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabaKfeyzF .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabaKfeyzF .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabaKfeyzF button[type="submit"] {
  border-radius: 100px;
}
.cid-vabaKfeyzF a[type="submit"],
.cid-vabaKfeyzF button[type="submit"] {
  margin-top: 0;
}
.cid-vabaKfeyzF .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabaKfeyzF mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabaKfeyzF .row .spinner-border,
.cid-vabaKfeyzF .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabaKfeyzF .gdpr-block {
  display: none;
}
.cid-vabaKgvhzf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabaKgvhzf .content {
    text-align: center;
  }
  .cid-vabaKgvhzf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabaKgvhzf .logo-subtitle {
  color: #8d97ad;
}
.cid-vabaKgvhzf .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabaKgvhzf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabaKgvhzf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabaKgvhzf .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabaKgvhzf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabaKgvhzf .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabaKgvhzf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabaKgvhzf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabaKgvhzf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabaKgvhzf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabaKgvhzf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabaKgvhzf .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabaKgvhzf .list-item {
  display: flex;
}
.cid-vabaKgvhzf .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabaKgvhzf ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabaKgvhzf ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabaKgvhzf ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabaKgvhzf .column-title {
  color: #ec0424;
}
.cid-vabaKgvhzf P {
  color: #ffffff;
}
.cid-vabaKgvhzf .mbr-text {
  color: #ffffff;
}
.cid-vabaKgvhzf .copyright > p {
  color: #ffffff;
}
.cid-vabaXO5Wtw {
  z-index: 1000;
  width: 100%;
}
.cid-vabaXO5Wtw nav.navbar {
  position: fixed;
}
.cid-vabaXO5Wtw .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabaXO5Wtw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabaXO5Wtw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabaXO5Wtw .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabaXO5Wtw .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-vabaXO5Wtw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabaXO5Wtw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabaXO5Wtw .dropdown-item:hover,
.cid-vabaXO5Wtw .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabaXO5Wtw .dropdown-item:hover span {
  color: white;
}
.cid-vabaXO5Wtw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabaXO5Wtw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabaXO5Wtw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabaXO5Wtw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabaXO5Wtw .nav-link {
  position: relative;
}
.cid-vabaXO5Wtw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabaXO5Wtw .container {
    flex-wrap: nowrap;
  }
}
.cid-vabaXO5Wtw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabaXO5Wtw .dropdown-menu,
.cid-vabaXO5Wtw .navbar.opened {
  background: #ffffff !important;
}
.cid-vabaXO5Wtw .nav-item:focus,
.cid-vabaXO5Wtw .nav-link:focus {
  outline: none;
}
.cid-vabaXO5Wtw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabaXO5Wtw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabaXO5Wtw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabaXO5Wtw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabaXO5Wtw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabaXO5Wtw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabaXO5Wtw .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabaXO5Wtw .navbar.opened {
  transition: all 0.3s;
}
.cid-vabaXO5Wtw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabaXO5Wtw .navbar .navbar-logo img {
  width: auto;
}
.cid-vabaXO5Wtw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabaXO5Wtw .navbar.collapsed {
  justify-content: center;
}
.cid-vabaXO5Wtw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabaXO5Wtw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabaXO5Wtw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabaXO5Wtw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabaXO5Wtw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabaXO5Wtw .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-vabaXO5Wtw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabaXO5Wtw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabaXO5Wtw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabaXO5Wtw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabaXO5Wtw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabaXO5Wtw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabaXO5Wtw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabaXO5Wtw .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-vabaXO5Wtw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabaXO5Wtw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabaXO5Wtw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabaXO5Wtw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabaXO5Wtw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabaXO5Wtw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabaXO5Wtw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabaXO5Wtw .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabaXO5Wtw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabaXO5Wtw .dropdown-item.active,
.cid-vabaXO5Wtw .dropdown-item:active {
  background-color: transparent;
}
.cid-vabaXO5Wtw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabaXO5Wtw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabaXO5Wtw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabaXO5Wtw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabaXO5Wtw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabaXO5Wtw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabaXO5Wtw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabaXO5Wtw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabaXO5Wtw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabaXO5Wtw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabaXO5Wtw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabaXO5Wtw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabaXO5Wtw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabaXO5Wtw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabaXO5Wtw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabaXO5Wtw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabaXO5Wtw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabaXO5Wtw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabaXO5Wtw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabaXO5Wtw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabaXO5Wtw .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-vabaXO5Wtw .navbar {
    height: 80px;
  }
  .cid-vabaXO5Wtw .navbar.opened {
    height: auto;
  }
  .cid-vabaXO5Wtw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabaXOVuiL {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabaXOVuiL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXOVuiL .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-vabaXOVuiL .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabaXOVuiL .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabaXOVuiL .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabaXOVuiL .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabaXOVuiL .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabaXOVuiL .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabaXOVuiL .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabaXOVuiL .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabaXOVuiL .btn-wrapper {
  margin-top: -15%;
}
.cid-vabaXOVuiL .mbr-section-title {
  color: #272b2e;
}
.cid-vabaXOVuiL .mbr-text,
.cid-vabaXOVuiL .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabaXOVuiL .mbr-section-title,
.cid-vabaXOVuiL .mbr-section-btn,
.cid-vabaXOVuiL .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabaXPEaEF {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabaXPEaEF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXPEaEF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXPEaEF .mbr-section-title {
  color: #ec0424;
}
.cid-vabaXPEaEF .mbr-section-subtitle,
.cid-vabaXPEaEF .mbr-section-btn {
  color: #144774;
}
.cid-vabaXQgrhb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabaXQgrhb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXQgrhb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXQgrhb .mbr-section-title {
  color: #144774;
}
.cid-vabaXQgrhb .mbr-text {
  color: #144774;
}
.cid-vabaXSF4ni {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaXSF4ni .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXSF4ni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXSF4ni .mbr-section-subtitle,
.cid-vabaXSF4ni .mbr-section-btn {
  color: #144774;
}
.cid-vabaXSF4ni .mbr-section-title {
  color: #144774;
}
.cid-vabaXS499p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaXS499p .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXS499p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXS499p .mbr-section-title {
  color: #144774;
}
.cid-vabaXS499p .mbr-text {
  color: #144774;
}
.cid-vabaXRt0Zf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaXRt0Zf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXRt0Zf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXRt0Zf .mbr-section-subtitle,
.cid-vabaXRt0Zf .mbr-section-btn {
  color: #144774;
}
.cid-vabaXRt0Zf .mbr-section-title {
  color: #144774;
}
.cid-vagukIZJZ7 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagukIZJZ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagukIZJZ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagukIZJZ7 .mbr-section-title {
  color: #144774;
}
.cid-vagukIZJZ7 .mbr-text {
  color: #144774;
}
.cid-vagudlqngu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagudlqngu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagudlqngu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagudlqngu .mbr-section-subtitle,
.cid-vagudlqngu .mbr-section-btn {
  color: #144774;
}
.cid-vagudlqngu .mbr-section-title {
  color: #144774;
}
.cid-vaguIs9kwx {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaguIs9kwx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaguIs9kwx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaguIs9kwx .mbr-section-subtitle,
.cid-vaguIs9kwx .mbr-section-btn {
  color: #144774;
}
.cid-vaguIs9kwx .mbr-section-title {
  color: #144774;
}
.cid-vaguWiOs4o {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaguWiOs4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaguWiOs4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaguWiOs4o .mbr-section-subtitle,
.cid-vaguWiOs4o .mbr-section-btn {
  color: #144774;
}
.cid-vaguWiOs4o .mbr-section-title {
  color: #144774;
}
.cid-vagvrhX0SN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vagvrhX0SN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagvrhX0SN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagvrhX0SN .row {
  margin: 0 -15px;
}
.cid-vagvrhX0SN .row .card {
  padding: 0 15px;
}
.cid-vagvrhX0SN .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vagvrhX0SN .content-wrapper {
  margin-bottom: 40px;
}
.cid-vagvrhX0SN .content-wrapper .main-btn .btn {
  margin-bottom: 0;
}
.cid-vagvrhX0SN .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .main-btn {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-vagvrhX0SN .items-wrapper .item:hover .item-wrapper,
.cid-vagvrhX0SN .items-wrapper .item:focus .item-wrapper {
  background-color: #dedede;
  padding: 10px 40px;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .items-wrapper .item:hover .item-wrapper,
  .cid-vagvrhX0SN .items-wrapper .item:focus .item-wrapper {
    padding: 10px 0;
  }
}
.cid-vagvrhX0SN .items-wrapper .item:hover .item-wrapper .text-wrapper,
.cid-vagvrhX0SN .items-wrapper .item:focus .item-wrapper .text-wrapper {
  background-color: #9db2d6;
}
.cid-vagvrhX0SN .items-wrapper .item .item-wrapper {
  padding: 10px 0;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fefff5;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-vagvrhX0SN .items-wrapper .item .item-wrapper .item-title {
  padding: 30px 0;
  margin-bottom: 0;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .items-wrapper .item .item-wrapper .item-title {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vagvrhX0SN .items-wrapper .item .item-wrapper .text-wrapper {
  width: 35%;
  padding: 30px 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .items-wrapper .item .item-wrapper .text-wrapper {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vagvrhX0SN .items-wrapper .item .item-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vagvrhX0SN .items-wrapper .item .item-wrapper .item-date {
  padding: 30px 0;
  margin-bottom: 0;
  width: 15%;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .items-wrapper .item .item-wrapper .item-date {
    padding: 10px 0;
    width: 100%;
  }
}
.cid-vagvrhX0SN .mbr-section-title {
  color: #fefff5;
}
.cid-vagvrhX0SN .item-title {
  color: #23537e;
}
.cid-vagvrhX0SN .item-text {
  color: #23537e;
}
.cid-vagvrhX0SN .item-date {
  color: #fefff5;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vagvrhX0SN .item-date {
    text-align: left;
  }
}
.cid-vagvrhX0SN .mbr-section-title,
.cid-vagvrhX0SN .main-btn {
  color: #23537e;
}
.cid-vabaXW3N1K {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaXW3N1K .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXW3N1K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXW3N1K .contects {
  line-height: 2;
}
.cid-vabaXW3N1K .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabaXW3N1K .mbr-text {
  color: #144774;
}
.cid-vabaXWMHfX {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabaXWMHfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXWMHfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXWMHfX .mbr-section-subtitle,
.cid-vabaXWMHfX .mbr-section-btn {
  color: #144774;
}
.cid-vabaXXtqg2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabaXXtqg2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaXXtqg2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaXXtqg2 .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vabaXXtqg2 .mbr-section-subtitle,
.cid-vabaXXtqg2 .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vagwQSVq2J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagwQSVq2J .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagwQSVq2J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagwQSVq2J .item {
  margin-bottom: 3rem;
}
.cid-vagwQSVq2J .mbr-section-maintitle {
  color: #23537e;
}
.cid-vagwQSVq2J .mbr-section-title {
  color: #ec0424;
}
.cid-vagylfMLYQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagylfMLYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagylfMLYQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagylfMLYQ .item {
  margin-bottom: 3rem;
}
.cid-vagylfMLYQ .mbr-section-maintitle {
  color: #23537e;
}
.cid-vagylfMLYQ .mbr-section-title {
  color: #ec0424;
}
.cid-vagzIZQDwu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagzIZQDwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagzIZQDwu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagzIZQDwu .item {
  margin-bottom: 3rem;
}
.cid-vagzIZQDwu .mbr-section-maintitle {
  color: #23537e;
}
.cid-vagzIZQDwu .mbr-section-title {
  color: #ec0424;
}
.cid-vagAK5ZBL2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagAK5ZBL2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagAK5ZBL2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagAK5ZBL2 .item {
  margin-bottom: 3rem;
}
.cid-vagAK5ZBL2 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vagAK5ZBL2 .mbr-section-title {
  color: #ec0424;
}
.cid-vagBhnq6IA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagBhnq6IA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagBhnq6IA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagBhnq6IA .item {
  margin-bottom: 3rem;
}
.cid-vagBhnq6IA .mbr-section-maintitle {
  color: #23537e;
}
.cid-vagBhnq6IA .mbr-section-title {
  color: #ec0424;
}
.cid-vagBgChhN6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vagBgChhN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vagBgChhN6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vagBgChhN6 .item {
  margin-bottom: 3rem;
}
.cid-vagBgChhN6 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vagBgChhN6 .mbr-section-title {
  color: #ec0424;
}
.cid-veuEgvIM91 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuEgvIM91 .container {
  max-width: 1000px;
}
.cid-veuEgvIM91 img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuEgvIM91 .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabaY8hGn2 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabaY8hGn2 .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabaY8hGn2 .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabaY8hGn2 .user {
  padding: 0 !important;
}
.cid-vabaY8hGn2 .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabaY8hGn2 .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabaY8hGn2 .carousel-item.active,
.cid-vabaY8hGn2 .carousel-item-next,
.cid-vabaY8hGn2 .carousel-item-prev {
  display: flex;
}
.cid-vabaY8hGn2 .user_name {
  margin: 0;
}
.cid-vabaY8hGn2 .carousel-controls a {
  font-size: 2rem;
}
.cid-vabaY8hGn2 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabaY8hGn2 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabaY8hGn2 ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabaY8hGn2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabaY8hGn2 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabaY8hGn2 .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabaY8hGn2 .user_text {
  color: #144774;
}
.cid-vabaY8hGn2 .user_desk {
  color: #23537e;
}
.cid-vabaY8hGn2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabaY8hGn2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabaY8hGn2 .title,
.cid-vabaY8hGn2 .line-align {
  color: #144774;
}
.cid-vaV2JQIvJ9 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2JQIvJ9 .mbr-text {
  color: #767676;
}
.cid-vaV2JQIvJ9 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2JQIvJ9 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2JQIvJ9 .title .card-title {
  z-index: 1;
}
.cid-vaV2JQIvJ9 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2JQIvJ9 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2JQIvJ9 * {
    text-align: left !important;
  }
  .cid-vaV2JQIvJ9 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2JQIvJ9 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2JQIvJ9 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2JQIvJ9 .mbr-section-title,
.cid-vaV2JQIvJ9 .card-box {
  color: #144774;
}
.cid-vaV2JQIvJ9 .card-text {
  color: #000000;
}
.cid-veuEffvPjm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuEffvPjm .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuEffvPjm .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuEffvPjm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuEffvPjm .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuEffvPjm .embla__slide .slide-content {
  width: 100%;
}
.cid-veuEffvPjm .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuEffvPjm .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuEffvPjm .embla__button--next,
.cid-veuEffvPjm .embla__button--prev {
  display: flex;
}
.cid-veuEffvPjm .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuEffvPjm .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuEffvPjm .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuEffvPjm .embla__button.embla__button--next {
  right: 0;
}
.cid-veuEffvPjm .embla {
  position: relative;
  width: 100%;
}
.cid-veuEffvPjm .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuEffvPjm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuEffvPjm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuEffvPjm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2KnV2nJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2KnV2nJ .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2KnV2nJ .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2KnV2nJ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2KnV2nJ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2KnV2nJ .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2KnV2nJ .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2KnV2nJ .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2KnV2nJ .embla__button--next,
.cid-vaV2KnV2nJ .embla__button--prev {
  display: flex;
}
.cid-vaV2KnV2nJ .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2KnV2nJ .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2KnV2nJ .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2KnV2nJ .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2KnV2nJ .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2KnV2nJ .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2KnV2nJ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2KnV2nJ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2KnV2nJ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabaYaxyI6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabaYaxyI6 .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabaYaxyI6 .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabaYaxyI6 button[type="submit"] {
  border-radius: 100px;
}
.cid-vabaYaxyI6 a[type="submit"],
.cid-vabaYaxyI6 button[type="submit"] {
  margin-top: 0;
}
.cid-vabaYaxyI6 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabaYaxyI6 mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabaYaxyI6 .row .spinner-border,
.cid-vabaYaxyI6 .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabaYaxyI6 .gdpr-block {
  display: none;
}
.cid-vabaYbwVEa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabaYbwVEa .content {
    text-align: center;
  }
  .cid-vabaYbwVEa .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabaYbwVEa .logo-subtitle {
  color: #8d97ad;
}
.cid-vabaYbwVEa .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabaYbwVEa .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabaYbwVEa .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabaYbwVEa .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabaYbwVEa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabaYbwVEa .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabaYbwVEa .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabaYbwVEa .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabaYbwVEa .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabaYbwVEa .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabaYbwVEa .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabaYbwVEa .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabaYbwVEa .list-item {
  display: flex;
}
.cid-vabaYbwVEa .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabaYbwVEa ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabaYbwVEa ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabaYbwVEa ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabaYbwVEa .column-title {
  color: #ec0424;
}
.cid-vabaYbwVEa P {
  color: #ffffff;
}
.cid-vabaYbwVEa .mbr-text {
  color: #ffffff;
}
.cid-vabaYbwVEa .copyright > p {
  color: #ffffff;
}
.cid-vabb6TbHqO {
  z-index: 1000;
  width: 100%;
}
.cid-vabb6TbHqO nav.navbar {
  position: fixed;
}
.cid-vabb6TbHqO .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabb6TbHqO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabb6TbHqO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabb6TbHqO .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabb6TbHqO .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-vabb6TbHqO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabb6TbHqO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabb6TbHqO .dropdown-item:hover,
.cid-vabb6TbHqO .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabb6TbHqO .dropdown-item:hover span {
  color: white;
}
.cid-vabb6TbHqO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabb6TbHqO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabb6TbHqO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabb6TbHqO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabb6TbHqO .nav-link {
  position: relative;
}
.cid-vabb6TbHqO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabb6TbHqO .container {
    flex-wrap: nowrap;
  }
}
.cid-vabb6TbHqO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabb6TbHqO .dropdown-menu,
.cid-vabb6TbHqO .navbar.opened {
  background: #ffffff !important;
}
.cid-vabb6TbHqO .nav-item:focus,
.cid-vabb6TbHqO .nav-link:focus {
  outline: none;
}
.cid-vabb6TbHqO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabb6TbHqO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabb6TbHqO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabb6TbHqO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabb6TbHqO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabb6TbHqO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabb6TbHqO .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabb6TbHqO .navbar.opened {
  transition: all 0.3s;
}
.cid-vabb6TbHqO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabb6TbHqO .navbar .navbar-logo img {
  width: auto;
}
.cid-vabb6TbHqO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabb6TbHqO .navbar.collapsed {
  justify-content: center;
}
.cid-vabb6TbHqO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabb6TbHqO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabb6TbHqO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabb6TbHqO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabb6TbHqO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabb6TbHqO .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-vabb6TbHqO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabb6TbHqO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabb6TbHqO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabb6TbHqO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabb6TbHqO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabb6TbHqO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabb6TbHqO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabb6TbHqO .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-vabb6TbHqO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabb6TbHqO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabb6TbHqO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabb6TbHqO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabb6TbHqO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabb6TbHqO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabb6TbHqO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabb6TbHqO .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabb6TbHqO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabb6TbHqO .dropdown-item.active,
.cid-vabb6TbHqO .dropdown-item:active {
  background-color: transparent;
}
.cid-vabb6TbHqO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabb6TbHqO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabb6TbHqO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabb6TbHqO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabb6TbHqO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabb6TbHqO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabb6TbHqO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabb6TbHqO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabb6TbHqO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabb6TbHqO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabb6TbHqO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabb6TbHqO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabb6TbHqO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabb6TbHqO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabb6TbHqO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabb6TbHqO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabb6TbHqO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabb6TbHqO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabb6TbHqO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabb6TbHqO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabb6TbHqO .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-vabb6TbHqO .navbar {
    height: 80px;
  }
  .cid-vabb6TbHqO .navbar.opened {
    height: auto;
  }
  .cid-vabb6TbHqO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabb6U0oGY {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabb6U0oGY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabb6U0oGY .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-vabb6U0oGY .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabb6U0oGY .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabb6U0oGY .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabb6U0oGY .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabb6U0oGY .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabb6U0oGY .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabb6U0oGY .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabb6U0oGY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabb6U0oGY .btn-wrapper {
  margin-top: -15%;
}
.cid-vabb6U0oGY .mbr-section-title {
  color: #272b2e;
}
.cid-vabb6U0oGY .mbr-text,
.cid-vabb6U0oGY .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabb6U0oGY .mbr-section-title,
.cid-vabb6U0oGY .mbr-section-btn,
.cid-vabb6U0oGY .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabb6UKHmG {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabb6UKHmG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabb6UKHmG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabb6UKHmG .mbr-section-title {
  color: #ec0424;
}
.cid-vabb6UKHmG .mbr-section-subtitle,
.cid-vabb6UKHmG .mbr-section-btn {
  color: #144774;
}
.cid-vabb6Vr1Lg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabb6Vr1Lg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabb6Vr1Lg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabb6Vr1Lg .mbr-section-title {
  color: #144774;
}
.cid-vabb6Vr1Lg .mbr-text {
  color: #144774;
}
.cid-vabb6WJc2p {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabb6WJc2p .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabb6WJc2p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabb6WJc2p .mbr-section-subtitle,
.cid-vabb6WJc2p .mbr-section-btn {
  color: #144774;
}
.cid-vabb6WJc2p .mbr-section-title {
  color: #144774;
}
.cid-vabb70BF6Q {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabb70BF6Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabb70BF6Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabb70BF6Q .contects {
  line-height: 2;
}
.cid-vabb70BF6Q .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabb70BF6Q .mbr-text {
  color: #144774;
}
.cid-vabb71hojV {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabb71hojV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabb71hojV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabb71hojV .mbr-section-subtitle,
.cid-vabb71hojV .mbr-section-btn {
  color: #144774;
}
.cid-vahlmTnVqH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlmTnVqH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlmTnVqH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlmTnVqH .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahlmTnVqH .mbr-section-subtitle,
.cid-vahlmTnVqH .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahlnGfD8J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlnGfD8J .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlnGfD8J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlnGfD8J .item {
  margin-bottom: 3rem;
}
.cid-vahlnGfD8J .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlnGfD8J .mbr-section-title {
  color: #ec0424;
}
.cid-vahloGvAAg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahloGvAAg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahloGvAAg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahloGvAAg .item {
  margin-bottom: 3rem;
}
.cid-vahloGvAAg .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahloGvAAg .mbr-section-title {
  color: #ec0424;
}
.cid-vahlqklpQj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlqklpQj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlqklpQj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlqklpQj .item {
  margin-bottom: 3rem;
}
.cid-vahlqklpQj .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlqklpQj .mbr-section-title {
  color: #ec0424;
}
.cid-vahlrmScxs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlrmScxs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlrmScxs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlrmScxs .item {
  margin-bottom: 3rem;
}
.cid-vahlrmScxs .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlrmScxs .mbr-section-title {
  color: #ec0424;
}
.cid-vahlrN9HG9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlrN9HG9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlrN9HG9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlrN9HG9 .item {
  margin-bottom: 3rem;
}
.cid-vahlrN9HG9 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlrN9HG9 .mbr-section-title {
  color: #ec0424;
}
.cid-vahlsQKfJP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlsQKfJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlsQKfJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlsQKfJP .item {
  margin-bottom: 3rem;
}
.cid-vahlsQKfJP .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlsQKfJP .mbr-section-title {
  color: #ec0424;
}
.cid-veuEmBo8Ai {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuEmBo8Ai .container {
  max-width: 1000px;
}
.cid-veuEmBo8Ai img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuEmBo8Ai .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabb7c1mnP {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabb7c1mnP .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabb7c1mnP .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabb7c1mnP .user {
  padding: 0 !important;
}
.cid-vabb7c1mnP .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabb7c1mnP .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabb7c1mnP .carousel-item.active,
.cid-vabb7c1mnP .carousel-item-next,
.cid-vabb7c1mnP .carousel-item-prev {
  display: flex;
}
.cid-vabb7c1mnP .user_name {
  margin: 0;
}
.cid-vabb7c1mnP .carousel-controls a {
  font-size: 2rem;
}
.cid-vabb7c1mnP .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabb7c1mnP .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabb7c1mnP ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabb7c1mnP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabb7c1mnP .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabb7c1mnP .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabb7c1mnP .user_text {
  color: #144774;
}
.cid-vabb7c1mnP .user_desk {
  color: #23537e;
}
.cid-vabb7c1mnP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabb7c1mnP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabb7c1mnP .title,
.cid-vabb7c1mnP .line-align {
  color: #144774;
}
.cid-vaV2NyqPwC {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2NyqPwC .mbr-text {
  color: #767676;
}
.cid-vaV2NyqPwC .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2NyqPwC .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2NyqPwC .title .card-title {
  z-index: 1;
}
.cid-vaV2NyqPwC .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2NyqPwC .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2NyqPwC * {
    text-align: left !important;
  }
  .cid-vaV2NyqPwC .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2NyqPwC .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2NyqPwC .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2NyqPwC .mbr-section-title,
.cid-vaV2NyqPwC .card-box {
  color: #144774;
}
.cid-vaV2NyqPwC .card-text {
  color: #000000;
}
.cid-veuEn7PICN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuEn7PICN .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuEn7PICN .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuEn7PICN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuEn7PICN .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuEn7PICN .embla__slide .slide-content {
  width: 100%;
}
.cid-veuEn7PICN .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuEn7PICN .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuEn7PICN .embla__button--next,
.cid-veuEn7PICN .embla__button--prev {
  display: flex;
}
.cid-veuEn7PICN .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuEn7PICN .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuEn7PICN .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuEn7PICN .embla__button.embla__button--next {
  right: 0;
}
.cid-veuEn7PICN .embla {
  position: relative;
  width: 100%;
}
.cid-veuEn7PICN .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuEn7PICN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuEn7PICN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuEn7PICN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2O7dOeR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2O7dOeR .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2O7dOeR .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2O7dOeR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2O7dOeR .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2O7dOeR .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2O7dOeR .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2O7dOeR .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2O7dOeR .embla__button--next,
.cid-vaV2O7dOeR .embla__button--prev {
  display: flex;
}
.cid-vaV2O7dOeR .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2O7dOeR .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2O7dOeR .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2O7dOeR .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2O7dOeR .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2O7dOeR .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2O7dOeR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2O7dOeR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2O7dOeR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabb7eb6vH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabb7eb6vH .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabb7eb6vH .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabb7eb6vH button[type="submit"] {
  border-radius: 100px;
}
.cid-vabb7eb6vH a[type="submit"],
.cid-vabb7eb6vH button[type="submit"] {
  margin-top: 0;
}
.cid-vabb7eb6vH .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabb7eb6vH mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabb7eb6vH .row .spinner-border,
.cid-vabb7eb6vH .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabb7eb6vH .gdpr-block {
  display: none;
}
.cid-vabb7faEuo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabb7faEuo .content {
    text-align: center;
  }
  .cid-vabb7faEuo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabb7faEuo .logo-subtitle {
  color: #8d97ad;
}
.cid-vabb7faEuo .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabb7faEuo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabb7faEuo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabb7faEuo .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabb7faEuo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabb7faEuo .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabb7faEuo .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabb7faEuo .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabb7faEuo .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabb7faEuo .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabb7faEuo .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabb7faEuo .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabb7faEuo .list-item {
  display: flex;
}
.cid-vabb7faEuo .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabb7faEuo ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabb7faEuo ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabb7faEuo ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabb7faEuo .column-title {
  color: #ec0424;
}
.cid-vabb7faEuo P {
  color: #ffffff;
}
.cid-vabb7faEuo .mbr-text {
  color: #ffffff;
}
.cid-vabb7faEuo .copyright > p {
  color: #ffffff;
}
.cid-vabbfckRyE {
  z-index: 1000;
  width: 100%;
}
.cid-vabbfckRyE nav.navbar {
  position: fixed;
}
.cid-vabbfckRyE .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabbfckRyE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabbfckRyE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabbfckRyE .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabbfckRyE .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-vabbfckRyE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabbfckRyE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabbfckRyE .dropdown-item:hover,
.cid-vabbfckRyE .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabbfckRyE .dropdown-item:hover span {
  color: white;
}
.cid-vabbfckRyE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabbfckRyE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabbfckRyE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabbfckRyE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabbfckRyE .nav-link {
  position: relative;
}
.cid-vabbfckRyE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabbfckRyE .container {
    flex-wrap: nowrap;
  }
}
.cid-vabbfckRyE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabbfckRyE .dropdown-menu,
.cid-vabbfckRyE .navbar.opened {
  background: #ffffff !important;
}
.cid-vabbfckRyE .nav-item:focus,
.cid-vabbfckRyE .nav-link:focus {
  outline: none;
}
.cid-vabbfckRyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabbfckRyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabbfckRyE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabbfckRyE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabbfckRyE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabbfckRyE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabbfckRyE .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabbfckRyE .navbar.opened {
  transition: all 0.3s;
}
.cid-vabbfckRyE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabbfckRyE .navbar .navbar-logo img {
  width: auto;
}
.cid-vabbfckRyE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabbfckRyE .navbar.collapsed {
  justify-content: center;
}
.cid-vabbfckRyE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabbfckRyE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabbfckRyE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabbfckRyE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabbfckRyE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabbfckRyE .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-vabbfckRyE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabbfckRyE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabbfckRyE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabbfckRyE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabbfckRyE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabbfckRyE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabbfckRyE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabbfckRyE .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-vabbfckRyE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabbfckRyE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabbfckRyE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabbfckRyE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabbfckRyE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabbfckRyE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabbfckRyE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabbfckRyE .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabbfckRyE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabbfckRyE .dropdown-item.active,
.cid-vabbfckRyE .dropdown-item:active {
  background-color: transparent;
}
.cid-vabbfckRyE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabbfckRyE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabbfckRyE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabbfckRyE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabbfckRyE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabbfckRyE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabbfckRyE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabbfckRyE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabbfckRyE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabbfckRyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabbfckRyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabbfckRyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabbfckRyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabbfckRyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabbfckRyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabbfckRyE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabbfckRyE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabbfckRyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabbfckRyE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabbfckRyE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabbfckRyE .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-vabbfckRyE .navbar {
    height: 80px;
  }
  .cid-vabbfckRyE .navbar.opened {
    height: auto;
  }
  .cid-vabbfckRyE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabbfd2vtY {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabbfd2vtY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbfd2vtY .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-vabbfd2vtY .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabbfd2vtY .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabbfd2vtY .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabbfd2vtY .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabbfd2vtY .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabbfd2vtY .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabbfd2vtY .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabbfd2vtY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabbfd2vtY .btn-wrapper {
  margin-top: -15%;
}
.cid-vabbfd2vtY .mbr-section-title {
  color: #272b2e;
}
.cid-vabbfd2vtY .mbr-text,
.cid-vabbfd2vtY .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabbfd2vtY .mbr-section-title,
.cid-vabbfd2vtY .mbr-section-btn,
.cid-vabbfd2vtY .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabbfdKQLj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabbfdKQLj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbfdKQLj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbfdKQLj .mbr-section-title {
  color: #ec0424;
}
.cid-vabbfdKQLj .mbr-section-subtitle,
.cid-vabbfdKQLj .mbr-section-btn {
  color: #144774;
}
.cid-vabbfeiN6Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabbfeiN6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbfeiN6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbfeiN6Z .mbr-section-title {
  color: #144774;
}
.cid-vabbfeiN6Z .mbr-text {
  color: #144774;
}
.cid-vabbffxgBi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabbffxgBi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbffxgBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbffxgBi .mbr-section-subtitle,
.cid-vabbffxgBi .mbr-section-btn {
  color: #144774;
}
.cid-vabbffxgBi .mbr-section-title {
  color: #144774;
}
.cid-vabbfjntxy {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabbfjntxy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbfjntxy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbfjntxy .contects {
  line-height: 2;
}
.cid-vabbfjntxy .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabbfjntxy .mbr-text {
  color: #144774;
}
.cid-vabbfk3JPS {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabbfk3JPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbfk3JPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbfk3JPS .mbr-section-subtitle,
.cid-vabbfk3JPS .mbr-section-btn {
  color: #144774;
}
.cid-vahlHf46yQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlHf46yQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlHf46yQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlHf46yQ .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahlHf46yQ .mbr-section-subtitle,
.cid-vahlHf46yQ .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahlHIQgcc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlHIQgcc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlHIQgcc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlHIQgcc .item {
  margin-bottom: 3rem;
}
.cid-vahlHIQgcc .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlHIQgcc .mbr-section-title {
  color: #ec0424;
}
.cid-vahlNDTvxJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlNDTvxJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlNDTvxJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlNDTvxJ .item {
  margin-bottom: 3rem;
}
.cid-vahlNDTvxJ .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlNDTvxJ .mbr-section-title {
  color: #ec0424;
}
.cid-vahlJb0qXG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlJb0qXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlJb0qXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlJb0qXG .item {
  margin-bottom: 3rem;
}
.cid-vahlJb0qXG .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlJb0qXG .mbr-section-title {
  color: #ec0424;
}
.cid-vahlJWgFfm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlJWgFfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlJWgFfm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlJWgFfm .item {
  margin-bottom: 3rem;
}
.cid-vahlJWgFfm .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlJWgFfm .mbr-section-title {
  color: #ec0424;
}
.cid-vahlKA4QJc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlKA4QJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlKA4QJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlKA4QJc .item {
  margin-bottom: 3rem;
}
.cid-vahlKA4QJc .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlKA4QJc .mbr-section-title {
  color: #ec0424;
}
.cid-vahlOgbbGh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahlOgbbGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahlOgbbGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahlOgbbGh .item {
  margin-bottom: 3rem;
}
.cid-vahlOgbbGh .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahlOgbbGh .mbr-section-title {
  color: #ec0424;
}
.cid-veuEu1mt0k {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuEu1mt0k .container {
  max-width: 1000px;
}
.cid-veuEu1mt0k img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuEu1mt0k .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabbfuRKIC {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabbfuRKIC .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabbfuRKIC .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabbfuRKIC .user {
  padding: 0 !important;
}
.cid-vabbfuRKIC .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabbfuRKIC .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabbfuRKIC .carousel-item.active,
.cid-vabbfuRKIC .carousel-item-next,
.cid-vabbfuRKIC .carousel-item-prev {
  display: flex;
}
.cid-vabbfuRKIC .user_name {
  margin: 0;
}
.cid-vabbfuRKIC .carousel-controls a {
  font-size: 2rem;
}
.cid-vabbfuRKIC .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabbfuRKIC .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabbfuRKIC ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabbfuRKIC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabbfuRKIC .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabbfuRKIC .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabbfuRKIC .user_text {
  color: #144774;
}
.cid-vabbfuRKIC .user_desk {
  color: #23537e;
}
.cid-vabbfuRKIC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbfuRKIC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbfuRKIC .title,
.cid-vabbfuRKIC .line-align {
  color: #144774;
}
.cid-vaV2RqeKN2 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2RqeKN2 .mbr-text {
  color: #767676;
}
.cid-vaV2RqeKN2 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2RqeKN2 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2RqeKN2 .title .card-title {
  z-index: 1;
}
.cid-vaV2RqeKN2 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2RqeKN2 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2RqeKN2 * {
    text-align: left !important;
  }
  .cid-vaV2RqeKN2 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2RqeKN2 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2RqeKN2 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2RqeKN2 .mbr-section-title,
.cid-vaV2RqeKN2 .card-box {
  color: #144774;
}
.cid-vaV2RqeKN2 .card-text {
  color: #000000;
}
.cid-veuEux61xs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuEux61xs .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuEux61xs .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuEux61xs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuEux61xs .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuEux61xs .embla__slide .slide-content {
  width: 100%;
}
.cid-veuEux61xs .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuEux61xs .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuEux61xs .embla__button--next,
.cid-veuEux61xs .embla__button--prev {
  display: flex;
}
.cid-veuEux61xs .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuEux61xs .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuEux61xs .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuEux61xs .embla__button.embla__button--next {
  right: 0;
}
.cid-veuEux61xs .embla {
  position: relative;
  width: 100%;
}
.cid-veuEux61xs .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuEux61xs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuEux61xs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuEux61xs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2RVXD3s {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2RVXD3s .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2RVXD3s .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2RVXD3s .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2RVXD3s .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2RVXD3s .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2RVXD3s .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2RVXD3s .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2RVXD3s .embla__button--next,
.cid-vaV2RVXD3s .embla__button--prev {
  display: flex;
}
.cid-vaV2RVXD3s .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2RVXD3s .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2RVXD3s .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2RVXD3s .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2RVXD3s .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2RVXD3s .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2RVXD3s .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2RVXD3s .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2RVXD3s .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabbfwW21W {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabbfwW21W .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabbfwW21W .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabbfwW21W button[type="submit"] {
  border-radius: 100px;
}
.cid-vabbfwW21W a[type="submit"],
.cid-vabbfwW21W button[type="submit"] {
  margin-top: 0;
}
.cid-vabbfwW21W .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabbfwW21W mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabbfwW21W .row .spinner-border,
.cid-vabbfwW21W .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabbfwW21W .gdpr-block {
  display: none;
}
.cid-vabbfxXqpL {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabbfxXqpL .content {
    text-align: center;
  }
  .cid-vabbfxXqpL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabbfxXqpL .logo-subtitle {
  color: #8d97ad;
}
.cid-vabbfxXqpL .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabbfxXqpL .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabbfxXqpL .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabbfxXqpL .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabbfxXqpL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabbfxXqpL .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabbfxXqpL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabbfxXqpL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabbfxXqpL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabbfxXqpL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabbfxXqpL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabbfxXqpL .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabbfxXqpL .list-item {
  display: flex;
}
.cid-vabbfxXqpL .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabbfxXqpL ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabbfxXqpL ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabbfxXqpL ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabbfxXqpL .column-title {
  color: #ec0424;
}
.cid-vabbfxXqpL P {
  color: #ffffff;
}
.cid-vabbfxXqpL .mbr-text {
  color: #ffffff;
}
.cid-vabbfxXqpL .copyright > p {
  color: #ffffff;
}
.cid-vabbq7ba34 {
  z-index: 1000;
  width: 100%;
}
.cid-vabbq7ba34 nav.navbar {
  position: fixed;
}
.cid-vabbq7ba34 .navbar-brand {
  border-left: 4px solid #144774;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabbq7ba34 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabbq7ba34 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabbq7ba34 .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabbq7ba34 .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-vabbq7ba34 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vabbq7ba34 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vabbq7ba34 .dropdown-item:hover,
.cid-vabbq7ba34 .dropdown-item:focus {
  background: #144774 !important;
  color: white !important;
}
.cid-vabbq7ba34 .dropdown-item:hover span {
  color: white;
}
.cid-vabbq7ba34 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vabbq7ba34 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vabbq7ba34 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vabbq7ba34 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vabbq7ba34 .nav-link {
  position: relative;
}
.cid-vabbq7ba34 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vabbq7ba34 .container {
    flex-wrap: nowrap;
  }
}
.cid-vabbq7ba34 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vabbq7ba34 .dropdown-menu,
.cid-vabbq7ba34 .navbar.opened {
  background: #ffffff !important;
}
.cid-vabbq7ba34 .nav-item:focus,
.cid-vabbq7ba34 .nav-link:focus {
  outline: none;
}
.cid-vabbq7ba34 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vabbq7ba34 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabbq7ba34 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vabbq7ba34 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vabbq7ba34 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabbq7ba34 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabbq7ba34 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vabbq7ba34 .navbar.opened {
  transition: all 0.3s;
}
.cid-vabbq7ba34 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vabbq7ba34 .navbar .navbar-logo img {
  width: auto;
}
.cid-vabbq7ba34 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabbq7ba34 .navbar.collapsed {
  justify-content: center;
}
.cid-vabbq7ba34 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabbq7ba34 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vabbq7ba34 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-vabbq7ba34 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabbq7ba34 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabbq7ba34 .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-vabbq7ba34 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabbq7ba34 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vabbq7ba34 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vabbq7ba34 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabbq7ba34 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabbq7ba34 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabbq7ba34 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabbq7ba34 .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-vabbq7ba34 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vabbq7ba34 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabbq7ba34 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabbq7ba34 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vabbq7ba34 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vabbq7ba34 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vabbq7ba34 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vabbq7ba34 .navbar.navbar-short {
  min-height: 70px;
}
.cid-vabbq7ba34 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vabbq7ba34 .dropdown-item.active,
.cid-vabbq7ba34 .dropdown-item:active {
  background-color: transparent;
}
.cid-vabbq7ba34 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabbq7ba34 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabbq7ba34 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabbq7ba34 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabbq7ba34 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabbq7ba34 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vabbq7ba34 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vabbq7ba34 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vabbq7ba34 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vabbq7ba34 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #144774;
}
.cid-vabbq7ba34 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vabbq7ba34 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabbq7ba34 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vabbq7ba34 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vabbq7ba34 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabbq7ba34 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vabbq7ba34 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vabbq7ba34 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vabbq7ba34 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vabbq7ba34 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vabbq7ba34 .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-vabbq7ba34 .navbar {
    height: 80px;
  }
  .cid-vabbq7ba34 .navbar.opened {
    height: auto;
  }
  .cid-vabbq7ba34 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabbq81u3j {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabbq81u3j .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbq81u3j .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-vabbq81u3j .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-vabbq81u3j .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-vabbq81u3j .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-vabbq81u3j .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-vabbq81u3j .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vabbq81u3j .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #ec0424, #fb2845);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-vabbq81u3j .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vabbq81u3j .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vabbq81u3j .btn-wrapper {
  margin-top: -15%;
}
.cid-vabbq81u3j .mbr-section-title {
  color: #272b2e;
}
.cid-vabbq81u3j .mbr-text,
.cid-vabbq81u3j .text-wrapper {
  color: #144774;
  text-align: right;
}
.cid-vabbq81u3j .mbr-section-title,
.cid-vabbq81u3j .mbr-section-btn,
.cid-vabbq81u3j .clients-wrapper {
  text-align: right;
  color: #144774;
}
.cid-vabbq8LNCP {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabbq8LNCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbq8LNCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbq8LNCP .mbr-section-title {
  color: #ec0424;
}
.cid-vabbq8LNCP .mbr-section-subtitle,
.cid-vabbq8LNCP .mbr-section-btn {
  color: #144774;
}
.cid-vabbq9mNnE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vabbq9mNnE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbq9mNnE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbq9mNnE .mbr-section-title {
  color: #144774;
}
.cid-vabbq9mNnE .mbr-text {
  color: #144774;
}
.cid-vabbqaBNGJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabbqaBNGJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbqaBNGJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbqaBNGJ .mbr-section-subtitle,
.cid-vabbqaBNGJ .mbr-section-btn {
  color: #144774;
}
.cid-vabbqaBNGJ .mbr-section-title {
  color: #144774;
}
.cid-vabbqep0NX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vabbqep0NX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbqep0NX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbqep0NX .contects {
  line-height: 2;
}
.cid-vabbqep0NX .mbr-section-title {
  text-align: left;
  color: #ec0424;
}
.cid-vabbqep0NX .mbr-text {
  color: #144774;
}
.cid-vabbqf5BTn {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vabbqf5BTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbqf5BTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbqf5BTn .mbr-section-subtitle,
.cid-vabbqf5BTn .mbr-section-btn {
  color: #144774;
}
.cid-vahmw8gkmu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahmw8gkmu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahmw8gkmu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahmw8gkmu .mbr-section-title {
  color: #ec0424;
  text-align: center;
}
.cid-vahmw8gkmu .mbr-section-subtitle,
.cid-vahmw8gkmu .mbr-section-btn {
  text-align: center;
  color: #23537e;
}
.cid-vahmvFP3aS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahmvFP3aS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahmvFP3aS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahmvFP3aS .item {
  margin-bottom: 3rem;
}
.cid-vahmvFP3aS .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahmvFP3aS .mbr-section-title {
  color: #ec0424;
}
.cid-vahmwZvJU3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahmwZvJU3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahmwZvJU3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahmwZvJU3 .item {
  margin-bottom: 3rem;
}
.cid-vahmwZvJU3 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahmwZvJU3 .mbr-section-title {
  color: #ec0424;
}
.cid-vahmyWSf3W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahmyWSf3W .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahmyWSf3W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahmyWSf3W .item {
  margin-bottom: 3rem;
}
.cid-vahmyWSf3W .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahmyWSf3W .mbr-section-title {
  color: #ec0424;
}
.cid-vahmzrXjY8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahmzrXjY8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahmzrXjY8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahmzrXjY8 .item {
  margin-bottom: 3rem;
}
.cid-vahmzrXjY8 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahmzrXjY8 .mbr-section-title {
  color: #ec0424;
}
.cid-vahmBbNtRs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahmBbNtRs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahmBbNtRs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahmBbNtRs .item {
  margin-bottom: 3rem;
}
.cid-vahmBbNtRs .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahmBbNtRs .mbr-section-title {
  color: #ec0424;
}
.cid-vahmC5V3S5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vahmC5V3S5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vahmC5V3S5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vahmC5V3S5 .item {
  margin-bottom: 3rem;
}
.cid-vahmC5V3S5 .mbr-section-maintitle {
  color: #23537e;
}
.cid-vahmC5V3S5 .mbr-section-title {
  color: #ec0424;
}
.cid-veuExXroP7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #144774;
}
.cid-veuExXroP7 .container {
  max-width: 1000px;
}
.cid-veuExXroP7 img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-veuExXroP7 .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vabbqq6pRz {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vabbqq6pRz .carousel {
  z-index: 2;
  position: relative;
}
.cid-vabbqq6pRz .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #23537e;
  opacity: 0.5;
}
.cid-vabbqq6pRz .user {
  padding: 0 !important;
}
.cid-vabbqq6pRz .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vabbqq6pRz .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-vabbqq6pRz .carousel-item.active,
.cid-vabbqq6pRz .carousel-item-next,
.cid-vabbqq6pRz .carousel-item-prev {
  display: flex;
}
.cid-vabbqq6pRz .user_name {
  margin: 0;
}
.cid-vabbqq6pRz .carousel-controls a {
  font-size: 2rem;
}
.cid-vabbqq6pRz .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vabbqq6pRz .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vabbqq6pRz ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vabbqq6pRz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vabbqq6pRz .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vabbqq6pRz .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vabbqq6pRz .user_text {
  color: #144774;
}
.cid-vabbqq6pRz .user_desk {
  color: #23537e;
}
.cid-vabbqq6pRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabbqq6pRz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabbqq6pRz .title,
.cid-vabbqq6pRz .line-align {
  color: #144774;
}
.cid-vaV2W6Ow57 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vaV2W6Ow57 .mbr-text {
  color: #767676;
}
.cid-vaV2W6Ow57 .mbr-section-subtitle {
  color: #767676;
}
.cid-vaV2W6Ow57 .title .num {
  width: 100%;
  display: block;
}
.cid-vaV2W6Ow57 .title .card-title {
  z-index: 1;
}
.cid-vaV2W6Ow57 .card {
  padding-left: 1rem;
  border-left: 1px solid #144774;
}
.cid-vaV2W6Ow57 .num {
  color: #ec0424;
}
@media (max-width: 767px) {
  .cid-vaV2W6Ow57 * {
    text-align: left !important;
  }
  .cid-vaV2W6Ow57 .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-vaV2W6Ow57 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vaV2W6Ow57 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vaV2W6Ow57 .mbr-section-title,
.cid-vaV2W6Ow57 .card-box {
  color: #144774;
}
.cid-vaV2W6Ow57 .card-text {
  color: #000000;
}
.cid-veuEyrb0P6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-veuEyrb0P6 .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #144774;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-veuEyrb0P6 .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-veuEyrb0P6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-veuEyrb0P6 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-veuEyrb0P6 .embla__slide .slide-content {
  width: 100%;
}
.cid-veuEyrb0P6 .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-veuEyrb0P6 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-veuEyrb0P6 .embla__button--next,
.cid-veuEyrb0P6 .embla__button--prev {
  display: flex;
}
.cid-veuEyrb0P6 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-veuEyrb0P6 .embla__button:hover {
  opacity: .5 !important;
}
.cid-veuEyrb0P6 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-veuEyrb0P6 .embla__button.embla__button--next {
  right: 0;
}
.cid-veuEyrb0P6 .embla {
  position: relative;
  width: 100%;
}
.cid-veuEyrb0P6 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-veuEyrb0P6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veuEyrb0P6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veuEyrb0P6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaV2Wxu1xC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vaV2Wxu1xC .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #00004c;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-vaV2Wxu1xC .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vaV2Wxu1xC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vaV2Wxu1xC .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vaV2Wxu1xC .embla__slide .slide-content {
  width: 100%;
}
.cid-vaV2Wxu1xC .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vaV2Wxu1xC .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vaV2Wxu1xC .embla__button--next,
.cid-vaV2Wxu1xC .embla__button--prev {
  display: flex;
}
.cid-vaV2Wxu1xC .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #144774 !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vaV2Wxu1xC .embla__button:hover {
  opacity: .5 !important;
}
.cid-vaV2Wxu1xC .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vaV2Wxu1xC .embla__button.embla__button--next {
  right: 0;
}
.cid-vaV2Wxu1xC .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vaV2Wxu1xC .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vaV2Wxu1xC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaV2Wxu1xC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaV2Wxu1xC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabbqshTBP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vabbqshTBP .mbr-section-title {
  text-align: center;
  color: #144774;
}
.cid-vabbqshTBP .mbr-section-text {
  text-align: center;
  color: #144774;
}
.cid-vabbqshTBP button[type="submit"] {
  border-radius: 100px;
}
.cid-vabbqshTBP a[type="submit"],
.cid-vabbqshTBP button[type="submit"] {
  margin-top: 0;
}
.cid-vabbqshTBP .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-vabbqshTBP mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-vabbqshTBP .row .spinner-border,
.cid-vabbqshTBP .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-vabbqshTBP .gdpr-block {
  display: none;
}
.cid-vabbqtijGE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #144774;
}
@media (max-width: 767px) {
  .cid-vabbqtijGE .content {
    text-align: center;
  }
  .cid-vabbqtijGE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vabbqtijGE .logo-subtitle {
  color: #8d97ad;
}
.cid-vabbqtijGE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vabbqtijGE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-vabbqtijGE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vabbqtijGE .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-vabbqtijGE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vabbqtijGE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-vabbqtijGE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vabbqtijGE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vabbqtijGE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vabbqtijGE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vabbqtijGE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vabbqtijGE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vabbqtijGE .list-item {
  display: flex;
}
.cid-vabbqtijGE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-vabbqtijGE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-vabbqtijGE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-vabbqtijGE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-vabbqtijGE .column-title {
  color: #ec0424;
}
.cid-vabbqtijGE P {
  color: #ffffff;
}
.cid-vabbqtijGE .mbr-text {
  color: #ffffff;
}
.cid-vabbqtijGE .copyright > p {
  color: #ffffff;
}
