body {
  font-family: Jost;
}

.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}

.display-1>.mbr-iconfont {
  font-size: 4rem;
}

.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}

.display-2>.mbr-iconfont {
  font-size: 2.75rem;
}

.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}

.display-4>.mbr-iconfont {
  font-size: 1rem;
}

.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

.display-5>.mbr-iconfont {
  font-size: 2rem;
}

.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.display-7>.mbr-iconfont {
  font-size: 1.125rem;
}

/* ---- 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: 2.56rem;
  }
}

@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc(1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-2 {
    font-size: 1.76rem;
    font-size: calc(1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-4 {
    font-size: 0.64rem;
    font-size: calc(0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-5 {
    font-size: 1.28rem;
    font-size: calc(1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-7 {
    font-size: 0.72rem;
    font-size: calc(0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}

/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}

.bg-primary {
  background-color: #024a94 !important;
}

.bg-success {
  background-color: #40b0bf !important;
}

.bg-info {
  background-color: #6592e6 !important;
}

.bg-warning {
  background-color: #ba900a !important;
}

.bg-danger {
  background-color: #ffffff !important;
}

.btn-primary,
.btn-primary:active {
  background-color: #024a94 !important;
  border-color: #024a94 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #011f3e !important;
  border-color: #011f3e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #011f3e !important;
  border-color: #011f3e !important;
}

.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}

.btn-info,
.btn-info:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}

.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}

.btn-warning,
.btn-warning:active {
  background-color: #ba900a !important;
  border-color: #ba900a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #685006 !important;
  border-color: #685006 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #685006 !important;
  border-color: #685006 !important;
}

.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.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: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}

.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}

.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #024a94;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #011f3e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #024a94 !important;
  border-color: #024a94 !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2260d2 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}

.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}

.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ba900a;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #685006 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ba900a !important;
  border-color: #ba900a !important;
}

.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !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: transparent;
  color: #232323;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}

.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}

.text-primary {
  color: #024a94 !important;
}

.text-secondary {
  color: #ffffff !important;
}

.text-success {
  color: #40b0bf !important;
}

.text-info {
  color: #6592e6 !important;
}

.text-warning {
  color: #ba900a !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: #01182f !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}

a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}

a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #205ac5 !important;
}

a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #594505 !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;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}

.nav-tabs .nav-link.active {
  color: #024a94;
}

.nav-tabs .nav-link:not(.active) {
  color: #232323;
}

.alert-success {
  background-color: #70c770;
}

.alert-info {
  background-color: #6592e6;
}

.alert-warning {
  background-color: #ba900a;
}

.alert-danger {
  background-color: #ffffff;
}

.mbr-gallery-filter li.active .btn {
  background-color: #024a94;
  border-color: #024a94;
  color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}

a,
a:hover {
  color: #024a94;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1a89fc;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f5ce4e;
}

.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: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}

.form-control>.mbr-iconfont {
  font-size: 1rem;
}

.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: #024a94 !important;
}

.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}

.form-control:-webkit-input-placeholder>.mbr-iconfont {
  font-size: 1rem;
}

blockquote {
  border-color: #024a94;
}

/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #024a94;
  color: #ffffff;
}

.jq-number__spin {
  transition: 0.25s ease;
}

.jq-number__spin:hover {
  border-color: #024a94;
}

.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: #024a94;
  border-bottom-color: #024a94;
}

.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: #024a94 !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: #ffffff !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='%23024a94' %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-tKuuO0ZAXz .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tKuuO0ZAXz .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tKuuO0ZAXz a {
  font-style: normal;
}

.cid-tKuuO0ZAXz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tKuuO0ZAXz .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tKuuO0ZAXz .nav-item:focus,
.cid-tKuuO0ZAXz .nav-link:focus {
  outline: none;
}

.cid-tKuuO0ZAXz .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tKuuO0ZAXz .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tKuuO0ZAXz .menu-logo {
  margin-right: auto;
}

.cid-tKuuO0ZAXz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tKuuO0ZAXz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tKuuO0ZAXz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tKuuO0ZAXz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tKuuO0ZAXz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tKuuO0ZAXz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tKuuO0ZAXz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tKuuO0ZAXz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tKuuO0ZAXz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tKuuO0ZAXz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tKuuO0ZAXz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tKuuO0ZAXz .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tKuuO0ZAXz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tKuuO0ZAXz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tKuuO0ZAXz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tKuuO0ZAXz .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tKuuO0ZAXz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tKuuO0ZAXz .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tKuuO0ZAXz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tKuuO0ZAXz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tKuuO0ZAXz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tKuuO0ZAXz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tKuuO0ZAXz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tKuuO0ZAXz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tKuuO0ZAXz button.navbar-toggler:focus {
  outline: none;
}

.cid-tKuuO0ZAXz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tKuuO0ZAXz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tKuuO0ZAXz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tKuuO0ZAXz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tKuuO0ZAXz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tKuuO0ZAXz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tKuuO0ZAXz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tKuuO0ZAXz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tKuuO0ZAXz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tKuuO0ZAXz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tKuuO0ZAXz .collapsed .btn {
  display: -webkit-flex;
}

.cid-tKuuO0ZAXz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tKuuO0ZAXz .collapsed .navbar-collapse.collapsing,
.cid-tKuuO0ZAXz .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tKuuO0ZAXz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tKuuO0ZAXz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tKuuO0ZAXz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tKuuO0ZAXz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tKuuO0ZAXz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tKuuO0ZAXz .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tKuuO0ZAXz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tKuuO0ZAXz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tKuuO0ZAXz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tKuuO0ZAXz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tKuuO0ZAXz .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tKuuO0ZAXz .collapsed button.navbar-toggler {
  display: block;
}

.cid-tKuuO0ZAXz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tKuuO0ZAXz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tKuuO0ZAXz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tKuuO0ZAXz .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tKuuO0ZAXz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tKuuO0ZAXz .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tKuuO0ZAXz.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tKuuO0ZAXz img {
    height: 3.8rem !important;
  }

  .cid-tKuuO0ZAXz .btn {
    display: -webkit-flex;
  }

  .cid-tKuuO0ZAXz button.navbar-toggler {
    display: block;
  }

  .cid-tKuuO0ZAXz .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tKuuO0ZAXz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tKuuO0ZAXz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tKuuO0ZAXz .navbar-collapse.collapsing,
  .cid-tKuuO0ZAXz .navbar-collapse.show {
    display: block !important;
  }

  .cid-tKuuO0ZAXz .navbar-collapse.collapsing .navbar-nav,
  .cid-tKuuO0ZAXz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tKuuO0ZAXz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tKuuO0ZAXz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tKuuO0ZAXz .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tKuuO0ZAXz .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tKuuO0ZAXz .navbar-collapse.collapsing .navbar-buttons,
  .cid-tKuuO0ZAXz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tKuuO0ZAXz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tKuuO0ZAXz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tKuuO0ZAXz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tKuuO0ZAXz .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tKuuO0ZAXz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tKuuO0ZAXz .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tKuuO0ZAXz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tKuuO0ZAXz .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tKuuO0ZAXz .nav-link:hover,
.cid-tKuuO0ZAXz .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tN0MYPrZK1 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}

.cid-tN0MYPrZK1 .carousel {
  width: 100%;
}

.cid-tN0MYPrZK1 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}

.cid-tN0MYPrZK1 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}

.cid-tN0MYPrZK1 .carousel-caption {
  bottom: 350px;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

.cid-tN0MYPrZK1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}

.cid-tN0MYPrZK1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}

.cid-tN0MYPrZK1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}

.cid-tN0MYPrZK1 .item-wrapper {
  width: 100%;
}

@media (max-width: 767px) {
  .cid-tN0MYPrZK1 .container .carousel-control {
    margin-bottom: 0;
  }

  .cid-tN0MYPrZK1 .content-slider-wrap {
    width: 100% !important;
  }
}

.cid-tN0MYPrZK1 .container .carousel-indicators {
  margin-bottom: 3px;
}

.cid-tN0MYPrZK1 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

.cid-tN0MYPrZK1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}

.cid-tN0MYPrZK1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}

@media (max-width: 767px) {
  .cid-tN0MYPrZK1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}

.cid-tN0MYPrZK1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}

.cid-tN0MYPrZK1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}

.cid-tN0MYPrZK1 .carousel-indicators li.active,
.cid-tN0MYPrZK1 .carousel-indicators li:hover {
  opacity: 0.9;
}

.cid-tN0MYPrZK1 .carousel-indicators li::after,
.cid-tN0MYPrZK1 .carousel-indicators li::before {
  content: none;
}

.cid-tN0MYPrZK1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}

@media (max-width: 768px) {
  .cid-tN0MYPrZK1 .carousel-indicators {
    display: none !important;
  }
}

.cid-v5FxloRf5P {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #193863;
}

.cid-v5FxloRf5P .mbr-fallback-image.disabled {
  display: none;
}

.cid-v5FxloRf5P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-v5FxloRf5P .mbr-section-title {
  color: #ffffff;
}

.cid-tN0NInWUXY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}

.cid-tN0NInWUXY img,
.cid-tN0NInWUXY .item-img {
  width: 100%;
}

.cid-tN0NInWUXY .item:focus,
.cid-tN0NInWUXY span:focus {
  outline: none;
}

.cid-tN0NInWUXY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}

.cid-tN0NInWUXY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}

@media (min-width: 992px) {
  .cid-tN0NInWUXY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }

  .cid-tN0NInWUXY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tN0NInWUXY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }

  .cid-tN0NInWUXY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}

.cid-tN0NInWUXY .mbr-section-btn {
  margin-top: auto !important;
}

.cid-tN0NInWUXY .mbr-section-title {
  color: #024a94;
}

.cid-tN0NInWUXY .mbr-text,
.cid-tN0NInWUXY .mbr-section-btn {
  text-align: left;
  color: #353535;
}

.cid-tN0NInWUXY .item-title {
  text-align: left;
  color: #024a94;
}

.cid-tN0NInWUXY .item-subtitle {
  text-align: left;
}

.cid-tN0OQHqXuD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}

.cid-tN0PSBfJbd {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #193863;
}

.cid-tN0PSBfJbd .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0PSBfJbd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0PSBfJbd .mbr-section-title {
  color: #ffffff;
}

.cid-tN0PSBfJbd .mbr-section-subtitle {
  color: #ffffff;
}

.cid-tMhnlKgndY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}

.cid-tMhnlKgndY .mbr-fallback-image.disabled {
  display: none;
}

.cid-tMhnlKgndY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tMhnlKgndY .container-fluid {
  padding: 0 16px;
}

@media (max-width: 992px) {
  .cid-tMhnlKgndY .container-fluid {
    padding: 0 12px;
  }
}

.cid-tMhnlKgndY .container-fluid .row {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-tMhnlKgndY .container {
    padding: 0 20px;
  }
}

.cid-tMhnlKgndY .card {
  padding: 0;
}

.cid-tMhnlKgndY .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-tMhnlKgndY .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tMhnlKgndY .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-tMhnlKgndY .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-tMhnlKgndY .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-tMhnlKgndY .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-tMhnlKgndY .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #024a94 !important;
}

.cid-tMhnlKgndY .image-wrap {
  position: relative;
  height: 100%;
}

.cid-tMhnlKgndY .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tMhnlKgndY .mbr-section-title {
  color: #ffffff;
}

.cid-tMhnlKgndY .mbr-text {
  color: #ffffff;
}

.cid-tMhhI5t8wL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #193863;
}

.cid-tN0QWzJ3Yy {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/qaeanv4wgnhqfacfkuz56kkzfi-1583x890.webp");
}

.cid-tN0QWzJ3Yy .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0QWzJ3Yy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0QWzJ3Yy .mbr-section-title {
  text-align: left;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

.cid-tN0QWzJ3Yy .mbr-text,
.cid-tN0QWzJ3Yy .mbr-section-btn {
  text-align: left;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

.cid-tMhxZKoiIW {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #052545;
}

.cid-tMhxZKoiIW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tMhxZKoiIW form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tMhxZKoiIW form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tMhxZKoiIW form.mbr-form {
    padding: 1rem;
  }
}

.cid-tMhxZKoiIW form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tMhxZKoiIW form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tMhxZKoiIW .mbr-section-title {
  color: #fafafa;
}

.cid-tMhxZKoiIW P {
  text-align: left;
}

.cid-tMhEC4UJl9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tMhEC4UJl9 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tMhEC4UJl9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tMhEC4UJl9 .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tMhEC4UJl9 .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tMhEC4UJl9 .row {
    text-align: center;
  }

  .cid-tMhEC4UJl9 .row>div {
    margin: auto;
  }

  .cid-tMhEC4UJl9 .social-row {
    justify-content: center;
  }
}

.cid-tMhEC4UJl9 .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tMhEC4UJl9 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tMhEC4UJl9 .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tMhEC4UJl9 .list {
    margin-bottom: 0rem;
  }
}

.cid-tMhEC4UJl9 .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tMhEC4UJl9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tMhEC4UJl9 .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tMhEC4UJl9 div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tMhEC4UJl9 .mbr-section-subtitle {
  text-align: center;
}

.cid-tMhEC4UJl9 H5 {
  text-align: center;
}

.cid-tMhEPQzDVZ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-tMhEPQzDVZ .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-tMhEPQzDVZ .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-tMhEPQzDVZ .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-tMhEPQzDVZ .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-tMhEPQzDVZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-tMhEPQzDVZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-tMhEPQzDVZ .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-tMhEPQzDVZ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-tMhEPQzDVZ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-tMhEPQzDVZ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-tMhEPQzDVZ .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-tMhEPQzDVZ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-tMhEPQzDVZ .copyright>p {
  color: #4479d9;
}

.cid-tOkAwVSntE.popup-builder {
  background-color: #ffffff;
}

.cid-tOkAwVSntE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}

.cid-tOkAwVSntE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}

.cid-tOkAwVSntE .modal-content,
.cid-tOkAwVSntE .modal-dialog {
  height: auto;
}

.cid-tOkAwVSntE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}

.cid-tOkAwVSntE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}

@media (min-width: 769px) {

  .cid-tOkAwVSntE .form-wrapper .mbr-form .form-group,
  .cid-tOkAwVSntE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}

.cid-tOkAwVSntE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}

.cid-tOkAwVSntE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}

.cid-tOkAwVSntE .mbr-text {
  text-align: left;
  color: #fafafa;
}

.cid-tOkAwVSntE .pt-0 {
  padding-top: 0 !important;
}

.cid-tOkAwVSntE .pb-0 {
  padding-bottom: 0 !important;
}

.cid-tOkAwVSntE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cid-tOkAwVSntE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.cid-tOkAwVSntE .modal-open {
  overflow: hidden;
}

.cid-tOkAwVSntE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.cid-tOkAwVSntE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.cid-tOkAwVSntE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.cid-tOkAwVSntE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

.cid-tOkAwVSntE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.cid-tOkAwVSntE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.cid-tOkAwVSntE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}

.cid-tOkAwVSntE .modal-content {
  background: #193863;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.cid-tOkAwVSntE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}

.cid-tOkAwVSntE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.cid-tOkAwVSntE .modal-backdrop.fade {
  opacity: 0;
}

.cid-tOkAwVSntE .modal-backdrop.show {
  opacity: .5;
}

.cid-tOkAwVSntE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}

@media (min-width: 992px) {
  .cid-tOkAwVSntE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}

@media (max-width: 991px) {
  .cid-tOkAwVSntE .modal-header {
    padding: 1rem;
  }
}

.cid-tOkAwVSntE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}

.cid-tOkAwVSntE .modal-header .close svg {
  fill: #ffffff;
}

.cid-tOkAwVSntE .modal-header .close:hover {
  opacity: 1;
}

.cid-tOkAwVSntE .modal-header .close:focus {
  outline: none;
}

.cid-tOkAwVSntE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #ffffff;
}

.cid-tOkAwVSntE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .cid-tOkAwVSntE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tOkAwVSntE .modal-body {
    padding: 1rem;
  }
}

.cid-tOkAwVSntE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}

@media (min-width: 992px) {
  .cid-tOkAwVSntE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tOkAwVSntE .modal-footer {
    padding: 1rem;
  }
}

.cid-tOkAwVSntE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .cid-tOkAwVSntE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .cid-tOkAwVSntE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .cid-tOkAwVSntE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .cid-tOkAwVSntE .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .cid-tOkAwVSntE .modal-lg,
  .cid-tOkAwVSntE .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .cid-tOkAwVSntE .modal-xl {
    max-width: 1140px;
  }
}

.cid-tOkAwVSntE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cid-tOkAwVSntE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cid-tOkAwVSntE .form-group {
  margin-bottom: 1rem;
}

.cid-tOkAwVSntE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.cid-tOkAwVSntE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.cid-tOkAwVSntE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.cid-tOkAwVSntE .mbr-section-btn {
  margin: 0;
}

.cid-tOkAwVSntE .mbr-section-btn .btn {
  margin: 0;
}

.cid-tNdTCD82Yu .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tNdTCD82Yu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tNdTCD82Yu a {
  font-style: normal;
}

.cid-tNdTCD82Yu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tNdTCD82Yu .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tNdTCD82Yu .nav-item:focus,
.cid-tNdTCD82Yu .nav-link:focus {
  outline: none;
}

.cid-tNdTCD82Yu .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tNdTCD82Yu .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tNdTCD82Yu .menu-logo {
  margin-right: auto;
}

.cid-tNdTCD82Yu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tNdTCD82Yu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tNdTCD82Yu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tNdTCD82Yu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tNdTCD82Yu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tNdTCD82Yu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tNdTCD82Yu .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tNdTCD82Yu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tNdTCD82Yu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tNdTCD82Yu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tNdTCD82Yu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tNdTCD82Yu .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tNdTCD82Yu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tNdTCD82Yu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tNdTCD82Yu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tNdTCD82Yu .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tNdTCD82Yu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tNdTCD82Yu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tNdTCD82Yu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tNdTCD82Yu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tNdTCD82Yu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tNdTCD82Yu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tNdTCD82Yu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tNdTCD82Yu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tNdTCD82Yu button.navbar-toggler:focus {
  outline: none;
}

.cid-tNdTCD82Yu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tNdTCD82Yu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tNdTCD82Yu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tNdTCD82Yu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tNdTCD82Yu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tNdTCD82Yu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNdTCD82Yu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tNdTCD82Yu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tNdTCD82Yu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNdTCD82Yu .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNdTCD82Yu .collapsed .btn {
  display: -webkit-flex;
}

.cid-tNdTCD82Yu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tNdTCD82Yu .collapsed .navbar-collapse.collapsing,
.cid-tNdTCD82Yu .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tNdTCD82Yu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNdTCD82Yu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tNdTCD82Yu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNdTCD82Yu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tNdTCD82Yu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNdTCD82Yu .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tNdTCD82Yu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNdTCD82Yu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tNdTCD82Yu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNdTCD82Yu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tNdTCD82Yu .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tNdTCD82Yu .collapsed button.navbar-toggler {
  display: block;
}

.cid-tNdTCD82Yu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tNdTCD82Yu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNdTCD82Yu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tNdTCD82Yu .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tNdTCD82Yu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tNdTCD82Yu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tNdTCD82Yu.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNdTCD82Yu img {
    height: 3.8rem !important;
  }

  .cid-tNdTCD82Yu .btn {
    display: -webkit-flex;
  }

  .cid-tNdTCD82Yu button.navbar-toggler {
    display: block;
  }

  .cid-tNdTCD82Yu .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tNdTCD82Yu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNdTCD82Yu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tNdTCD82Yu .navbar-collapse.collapsing,
  .cid-tNdTCD82Yu .navbar-collapse.show {
    display: block !important;
  }

  .cid-tNdTCD82Yu .navbar-collapse.collapsing .navbar-nav,
  .cid-tNdTCD82Yu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tNdTCD82Yu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNdTCD82Yu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tNdTCD82Yu .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNdTCD82Yu .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNdTCD82Yu .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNdTCD82Yu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tNdTCD82Yu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNdTCD82Yu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNdTCD82Yu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tNdTCD82Yu .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tNdTCD82Yu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tNdTCD82Yu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tNdTCD82Yu .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tNdTCD82Yu .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tNdTCD82Yu .nav-link:hover,
.cid-tNdTCD82Yu .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tNdTCBGZzJ {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tNdTCBGZzJ .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tNdTCBGZzJ H2 {
  color: #ffffff;
}

.cid-tNdVCXZMwH {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}

.cid-tNdVCXZMwH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tNdVCXZMwH form .mbr-section-btn {
  text-align: center;
  width: 100%;
}

.cid-tNdVCXZMwH form .mbr-section-btn .btn {
  display: inline-flex;
}

@media (max-width: 991px) {
  .cid-tNdVCXZMwH form .mbr-section-btn .btn {
    width: 100%;
  }
}

.cid-tNdVCXZMwH .mbr-section-title {
  color: #024a94;
}

.cid-tNdUPwtvB9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}

.cid-tNdUPwtvB9 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNdUPwtvB9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNdUPwtvB9 .image-wrapper {
  display: flex;
  align-items: center;
}

.cid-tNdUPwtvB9 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}

@media (max-width: 991px) {
  .cid-tNdUPwtvB9 .card-wrapper {
    padding: 1rem 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tNdUPwtvB9 .card-wrapper {
    padding: 2rem 4rem;
  }
}

.cid-tNdUPwtvB9 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #024a94;
}

.cid-tNdUPwtvB9 .mbr-section-title {
  color: #024a94;
}

.cid-tNdUPwtvB9 .card-title {
  color: #024a94;
}

.cid-tNdWUAvd9p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}

.cid-tNdWUAvd9p .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNdWUAvd9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNdWUAvd9p .google-map {
  height: 30rem;
  position: relative;
}

.cid-tNdWUAvd9p .google-map iframe {
  height: 100%;
  width: 100%;
}

.cid-tNdWUAvd9p .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-tNdWUAvd9p .google-map[data-state] {
  background: #e9e5dc;
}

.cid-tNdWUAvd9p .google-map[data-state="loading"] [data-state-details] {
  display: none;
}

.cid-tNdTCDm0fm {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tNdTCDm0fm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tNdTCDm0fm form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tNdTCDm0fm form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNdTCDm0fm form.mbr-form {
    padding: 1rem;
  }
}

.cid-tNdTCDm0fm form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tNdTCDm0fm form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tNdTCDm0fm .mbr-section-title {
  color: #fafafa;
}

.cid-tNdTCDm0fm P {
  text-align: left;
}

.cid-tNdTCDy00c {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tNdTCDy00c .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNdTCDy00c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNdTCDy00c .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tNdTCDy00c .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tNdTCDy00c .row {
    text-align: center;
  }

  .cid-tNdTCDy00c .row>div {
    margin: auto;
  }

  .cid-tNdTCDy00c .social-row {
    justify-content: center;
  }
}

.cid-tNdTCDy00c .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tNdTCDy00c .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tNdTCDy00c .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tNdTCDy00c .list {
    margin-bottom: 0rem;
  }
}

.cid-tNdTCDy00c .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tNdTCDy00c .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tNdTCDy00c .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tNdTCDy00c div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tNdTCDy00c .mbr-section-subtitle {
  text-align: center;
}

.cid-tNdTCDy00c H5 {
  text-align: center;
}

.cid-v7DkSYZdYo {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7DkSYZdYo .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkSYZdYo .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7DkSYZdYo .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7DkSYZdYo .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7DkSYZdYo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkSYZdYo .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7DkSYZdYo .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-v7DkSYZdYo .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7DkSYZdYo .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7DkSYZdYo .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7DkSYZdYo .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7DkSYZdYo .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7DkSYZdYo .copyright>p {
  color: #4479d9;
}

.cid-tN0Mpp2E9I .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tN0Mpp2E9I .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tN0Mpp2E9I a {
  font-style: normal;
}

.cid-tN0Mpp2E9I .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tN0Mpp2E9I .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tN0Mpp2E9I .nav-item:focus,
.cid-tN0Mpp2E9I .nav-link:focus {
  outline: none;
}

.cid-tN0Mpp2E9I .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tN0Mpp2E9I .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tN0Mpp2E9I .menu-logo {
  margin-right: auto;
}

.cid-tN0Mpp2E9I .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tN0Mpp2E9I .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tN0Mpp2E9I .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tN0Mpp2E9I .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tN0Mpp2E9I .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tN0Mpp2E9I .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tN0Mpp2E9I .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tN0Mpp2E9I .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tN0Mpp2E9I .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tN0Mpp2E9I .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tN0Mpp2E9I .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tN0Mpp2E9I .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tN0Mpp2E9I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tN0Mpp2E9I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tN0Mpp2E9I .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tN0Mpp2E9I .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tN0Mpp2E9I .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tN0Mpp2E9I .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tN0Mpp2E9I .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tN0Mpp2E9I .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tN0Mpp2E9I .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tN0Mpp2E9I .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tN0Mpp2E9I .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tN0Mpp2E9I button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tN0Mpp2E9I button.navbar-toggler:focus {
  outline: none;
}

.cid-tN0Mpp2E9I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tN0Mpp2E9I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tN0Mpp2E9I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tN0Mpp2E9I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tN0Mpp2E9I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tN0Mpp2E9I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tN0Mpp2E9I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tN0Mpp2E9I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tN0Mpp2E9I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tN0Mpp2E9I .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tN0Mpp2E9I .collapsed .btn {
  display: -webkit-flex;
}

.cid-tN0Mpp2E9I .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tN0Mpp2E9I .collapsed .navbar-collapse.collapsing,
.cid-tN0Mpp2E9I .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tN0Mpp2E9I .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tN0Mpp2E9I .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tN0Mpp2E9I .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tN0Mpp2E9I .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tN0Mpp2E9I .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tN0Mpp2E9I .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tN0Mpp2E9I .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tN0Mpp2E9I .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tN0Mpp2E9I .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tN0Mpp2E9I .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tN0Mpp2E9I .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tN0Mpp2E9I .collapsed button.navbar-toggler {
  display: block;
}

.cid-tN0Mpp2E9I .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tN0Mpp2E9I .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tN0Mpp2E9I .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tN0Mpp2E9I .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tN0Mpp2E9I .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tN0Mpp2E9I .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tN0Mpp2E9I.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tN0Mpp2E9I img {
    height: 3.8rem !important;
  }

  .cid-tN0Mpp2E9I .btn {
    display: -webkit-flex;
  }

  .cid-tN0Mpp2E9I button.navbar-toggler {
    display: block;
  }

  .cid-tN0Mpp2E9I .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tN0Mpp2E9I .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tN0Mpp2E9I .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tN0Mpp2E9I .navbar-collapse.collapsing,
  .cid-tN0Mpp2E9I .navbar-collapse.show {
    display: block !important;
  }

  .cid-tN0Mpp2E9I .navbar-collapse.collapsing .navbar-nav,
  .cid-tN0Mpp2E9I .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tN0Mpp2E9I .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tN0Mpp2E9I .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tN0Mpp2E9I .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tN0Mpp2E9I .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tN0Mpp2E9I .navbar-collapse.collapsing .navbar-buttons,
  .cid-tN0Mpp2E9I .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tN0Mpp2E9I .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tN0Mpp2E9I .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tN0Mpp2E9I .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tN0Mpp2E9I .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tN0Mpp2E9I .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tN0Mpp2E9I .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tN0Mpp2E9I .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tN0Mpp2E9I .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tN0Mpp2E9I .nav-link:hover,
.cid-tN0Mpp2E9I .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tN0MpntLwi {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tN0MpntLwi .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tN0MpntLwi H2 {
  color: #ffffff;
}

.cid-tN0MpokVrU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}

.cid-tN0MpokVrU .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0MpokVrU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0MpokVrU .card {
  border-radius: 0;
}

@media (min-width: 992px) {
  .cid-tN0MpokVrU .card {
    border-right: 1px solid white;
  }
}

@media (max-width: 991px) {
  .cid-tN0MpokVrU .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}

.cid-tN0MpokVrU .wrapper {
  padding: 30px 0;
}

.cid-tN0MpokVrU .mbr-section-title {
  color: #fafafa;
}

.cid-tN0MpokVrU .mbr-text,
.cid-tN0MpokVrU .mbr-section-btn {
  color: #353535;
  text-align: left;
}

.cid-tN0Mpo0sm5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}

.cid-tN0Mpo0sm5 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0Mpo0sm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0Mpo0sm5 .container-fluid {
  padding: 0 16px;
}

@media (max-width: 992px) {
  .cid-tN0Mpo0sm5 .container-fluid {
    padding: 0 12px;
  }
}

.cid-tN0Mpo0sm5 .container-fluid .row {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-tN0Mpo0sm5 .container {
    padding: 0 20px;
  }
}

.cid-tN0Mpo0sm5 .card {
  padding: 0;
}

.cid-tN0Mpo0sm5 .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-tN0Mpo0sm5 .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tN0Mpo0sm5 .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-tN0Mpo0sm5 .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-tN0Mpo0sm5 .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-tN0Mpo0sm5 .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-tN0Mpo0sm5 .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #024a94 !important;
}

.cid-tN0Mpo0sm5 .image-wrap {
  position: relative;
  height: 100%;
}

.cid-tN0Mpo0sm5 .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tN0Mpo0sm5 .mbr-section-title {
  color: #ffffff;
}

.cid-tN0Mpo0sm5 .mbr-text {
  color: #ffffff;
}

.cid-tNjRc4XMb7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}

.cid-tNjRc4XMb7 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNjRc4XMb7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNjRc4XMb7 .card {
  border-radius: 0;
}

@media (min-width: 992px) {
  .cid-tNjRc4XMb7 .card {
    border-right: 1px solid white;
  }
}

@media (max-width: 991px) {
  .cid-tNjRc4XMb7 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}

.cid-tNjRc4XMb7 .wrapper {
  padding: 30px 0;
}

.cid-tNjRc4XMb7 .mbr-section-title {
  color: #fafafa;
}

.cid-tNjRc4XMb7 .mbr-text,
.cid-tNjRc4XMb7 .mbr-section-btn {
  color: #353535;
  text-align: center;
}

.cid-tN0MpoU9jh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05488b;
}

.cid-tNjND4bbA4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}

.cid-tNjND4bbA4 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNjND4bbA4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNjND4bbA4 .video-wrapper iframe {
  width: 100%;
}

.cid-tNjND4bbA4 .mbr-section-title,
.cid-tNjND4bbA4 .mbr-section-subtitle,
.cid-tNjND4bbA4 .mbr-text {
  text-align: center;
}

.cid-tNjND4bbA4 .mbr-section-title {
  color: #024a94;
}

.cid-tNjND4bbA4 .mbr-section-subtitle {
  text-align: center;
}

.cid-tNjOQFmINY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}

.cid-tNjOQFmINY .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNjOQFmINY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNjOQFmINY ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}

.cid-tNjOQFmINY li {
  position: relative;
  margin-bottom: 0.2rem;
}

.cid-tNjOQFmINY ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #f27034;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  top: -14px;
}

.cid-tNjOQFmINY .list {
  text-align: left;
}

.cid-tNjOQFmINY H3 {
  text-align: center;
  color: #024a94;
}

.cid-tN0Mpplhtf {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tN0Mpplhtf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tN0Mpplhtf form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tN0Mpplhtf form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tN0Mpplhtf form.mbr-form {
    padding: 1rem;
  }
}

.cid-tN0Mpplhtf form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tN0Mpplhtf form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tN0Mpplhtf .mbr-section-title {
  color: #fafafa;
}

.cid-tN0Mpplhtf P {
  text-align: left;
}

.cid-tN0MppzLv8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tN0MppzLv8 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0MppzLv8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0MppzLv8 .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tN0MppzLv8 .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tN0MppzLv8 .row {
    text-align: center;
  }

  .cid-tN0MppzLv8 .row>div {
    margin: auto;
  }

  .cid-tN0MppzLv8 .social-row {
    justify-content: center;
  }
}

.cid-tN0MppzLv8 .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tN0MppzLv8 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tN0MppzLv8 .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tN0MppzLv8 .list {
    margin-bottom: 0rem;
  }
}

.cid-tN0MppzLv8 .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tN0MppzLv8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tN0MppzLv8 .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tN0MppzLv8 div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tN0MppzLv8 .mbr-section-subtitle {
  text-align: center;
}

.cid-tN0MppzLv8 H5 {
  text-align: center;
}

.cid-v7DkEAdti8 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7DkEAdti8 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkEAdti8 .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7DkEAdti8 .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7DkEAdti8 .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7DkEAdti8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkEAdti8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7DkEAdti8 .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-v7DkEAdti8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7DkEAdti8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7DkEAdti8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7DkEAdti8 .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7DkEAdti8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7DkEAdti8 .copyright>p {
  color: #4479d9;
}

.cid-tN0MCRunRS .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tN0MCRunRS .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tN0MCRunRS a {
  font-style: normal;
}

.cid-tN0MCRunRS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tN0MCRunRS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tN0MCRunRS .nav-item:focus,
.cid-tN0MCRunRS .nav-link:focus {
  outline: none;
}

.cid-tN0MCRunRS .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tN0MCRunRS .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tN0MCRunRS .menu-logo {
  margin-right: auto;
}

.cid-tN0MCRunRS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tN0MCRunRS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tN0MCRunRS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tN0MCRunRS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tN0MCRunRS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tN0MCRunRS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tN0MCRunRS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tN0MCRunRS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tN0MCRunRS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tN0MCRunRS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tN0MCRunRS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tN0MCRunRS .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tN0MCRunRS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tN0MCRunRS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tN0MCRunRS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tN0MCRunRS .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tN0MCRunRS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tN0MCRunRS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tN0MCRunRS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tN0MCRunRS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tN0MCRunRS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tN0MCRunRS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tN0MCRunRS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tN0MCRunRS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tN0MCRunRS button.navbar-toggler:focus {
  outline: none;
}

.cid-tN0MCRunRS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tN0MCRunRS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tN0MCRunRS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tN0MCRunRS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tN0MCRunRS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tN0MCRunRS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tN0MCRunRS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tN0MCRunRS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tN0MCRunRS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tN0MCRunRS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tN0MCRunRS .collapsed .btn {
  display: -webkit-flex;
}

.cid-tN0MCRunRS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tN0MCRunRS .collapsed .navbar-collapse.collapsing,
.cid-tN0MCRunRS .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tN0MCRunRS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tN0MCRunRS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tN0MCRunRS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tN0MCRunRS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tN0MCRunRS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tN0MCRunRS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tN0MCRunRS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tN0MCRunRS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tN0MCRunRS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tN0MCRunRS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tN0MCRunRS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tN0MCRunRS .collapsed button.navbar-toggler {
  display: block;
}

.cid-tN0MCRunRS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tN0MCRunRS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tN0MCRunRS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tN0MCRunRS .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tN0MCRunRS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tN0MCRunRS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tN0MCRunRS.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tN0MCRunRS img {
    height: 3.8rem !important;
  }

  .cid-tN0MCRunRS .btn {
    display: -webkit-flex;
  }

  .cid-tN0MCRunRS button.navbar-toggler {
    display: block;
  }

  .cid-tN0MCRunRS .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tN0MCRunRS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tN0MCRunRS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tN0MCRunRS .navbar-collapse.collapsing,
  .cid-tN0MCRunRS .navbar-collapse.show {
    display: block !important;
  }

  .cid-tN0MCRunRS .navbar-collapse.collapsing .navbar-nav,
  .cid-tN0MCRunRS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tN0MCRunRS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tN0MCRunRS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tN0MCRunRS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tN0MCRunRS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tN0MCRunRS .navbar-collapse.collapsing .navbar-buttons,
  .cid-tN0MCRunRS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tN0MCRunRS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tN0MCRunRS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tN0MCRunRS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tN0MCRunRS .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tN0MCRunRS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tN0MCRunRS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tN0MCRunRS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tN0MCRunRS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tN0MCRunRS .nav-link:hover,
.cid-tN0MCRunRS .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tN0MCPIMPK {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tN0MCPIMPK .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tN0MCPIMPK H2 {
  color: #ffffff;
}

.cid-tN0MCQbe7F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}

.cid-tN0MCQbe7F .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0MCQbe7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0MCQbe7F .container-fluid {
  padding: 0 16px;
}

@media (max-width: 992px) {
  .cid-tN0MCQbe7F .container-fluid {
    padding: 0 12px;
  }
}

.cid-tN0MCQbe7F .container-fluid .row {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-tN0MCQbe7F .container {
    padding: 0 20px;
  }
}

.cid-tN0MCQbe7F .card {
  padding: 0;
}

.cid-tN0MCQbe7F .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-tN0MCQbe7F .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tN0MCQbe7F .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-tN0MCQbe7F .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-tN0MCQbe7F .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-tN0MCQbe7F .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-tN0MCQbe7F .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #024a94 !important;
}

.cid-tN0MCQbe7F .image-wrap {
  position: relative;
  height: 100%;
}

.cid-tN0MCQbe7F .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tN0MCQbe7F .mbr-section-title {
  color: #ffffff;
}

.cid-tN0MCQbe7F .mbr-text {
  color: #ffffff;
}

.cid-tN0MCQrkrz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}

.cid-tN0MCQrkrz .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0MCQrkrz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0MCQrkrz .card {
  border-radius: 0;
}

@media (min-width: 992px) {
  .cid-tN0MCQrkrz .card {
    border-right: 1px solid white;
  }
}

@media (max-width: 991px) {
  .cid-tN0MCQrkrz .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}

.cid-tN0MCQrkrz .wrapper {
  padding: 30px 0;
}

.cid-tN0MCQrkrz .mbr-section-title {
  color: #fafafa;
}

.cid-tN0MCQrkrz .mbr-text,
.cid-tN0MCQrkrz .mbr-section-btn {
  color: #353535;
  text-align: left;
}

.cid-tN0MCQQEU8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdfcfa;
}

.cid-tN0MCQQEU8 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0MCQQEU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0MCQQEU8 .container-fluid {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-tN0MCQQEU8 .container-fluid {
    padding: 0;
  }
}

@media (max-width: 992px) {
  .cid-tN0MCQQEU8 .container {
    padding: 0;
  }
}

.cid-tN0MCQQEU8 .row {
  justify-content: center;
  margin: 0;
}

.cid-tN0MCQQEU8 .card {
  border-radius: 0;
  padding: 0;
}

.cid-tN0MCQQEU8 .card .card-wrapper img {
  height: 500px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .cid-tN0MCQQEU8 .card .card-wrapper img {
    height: 300px;
  }
}

.cid-tN0MCR4Wpu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}

.cid-tN0MCR4Wpu img {
  width: 50px;
  margin: auto;
}

.cid-tN0MCR4Wpu .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .cid-tN0MCR4Wpu .card {
    max-width: 12.5%;
  }
}

.cid-tN0MCR4Wpu .mbr-section-title {
  color: #024a94;
}

.cid-tN0MCRmEWD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05488b;
}

.cid-tN0MCS8yeA {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tN0MCS8yeA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tN0MCS8yeA form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tN0MCS8yeA form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tN0MCS8yeA form.mbr-form {
    padding: 1rem;
  }
}

.cid-tN0MCS8yeA form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tN0MCS8yeA form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tN0MCS8yeA .mbr-section-title {
  color: #fafafa;
}

.cid-tN0MCS8yeA P {
  text-align: left;
}

.cid-tN0MCSWakU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tN0MCSWakU .mbr-fallback-image.disabled {
  display: none;
}

.cid-tN0MCSWakU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tN0MCSWakU .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tN0MCSWakU .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tN0MCSWakU .row {
    text-align: center;
  }

  .cid-tN0MCSWakU .row>div {
    margin: auto;
  }

  .cid-tN0MCSWakU .social-row {
    justify-content: center;
  }
}

.cid-tN0MCSWakU .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tN0MCSWakU .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tN0MCSWakU .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tN0MCSWakU .list {
    margin-bottom: 0rem;
  }
}

.cid-tN0MCSWakU .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tN0MCSWakU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tN0MCSWakU .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tN0MCSWakU div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tN0MCSWakU .mbr-section-subtitle {
  text-align: center;
}

.cid-tN0MCSWakU H5 {
  text-align: center;
}

.cid-v7DkAsYdgm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7DkAsYdgm .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkAsYdgm .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7DkAsYdgm .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7DkAsYdgm .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7DkAsYdgm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkAsYdgm .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7DkAsYdgm .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-v7DkAsYdgm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7DkAsYdgm .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7DkAsYdgm .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7DkAsYdgm .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7DkAsYdgm .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7DkAsYdgm .copyright>p {
  color: #4479d9;
}

.cid-tNdRjmZGtZ .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tNdRjmZGtZ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tNdRjmZGtZ a {
  font-style: normal;
}

.cid-tNdRjmZGtZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tNdRjmZGtZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tNdRjmZGtZ .nav-item:focus,
.cid-tNdRjmZGtZ .nav-link:focus {
  outline: none;
}

.cid-tNdRjmZGtZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tNdRjmZGtZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tNdRjmZGtZ .menu-logo {
  margin-right: auto;
}

.cid-tNdRjmZGtZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tNdRjmZGtZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tNdRjmZGtZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tNdRjmZGtZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tNdRjmZGtZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tNdRjmZGtZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tNdRjmZGtZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tNdRjmZGtZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tNdRjmZGtZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tNdRjmZGtZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tNdRjmZGtZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tNdRjmZGtZ .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tNdRjmZGtZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tNdRjmZGtZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tNdRjmZGtZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tNdRjmZGtZ .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tNdRjmZGtZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tNdRjmZGtZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tNdRjmZGtZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tNdRjmZGtZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tNdRjmZGtZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tNdRjmZGtZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tNdRjmZGtZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tNdRjmZGtZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tNdRjmZGtZ button.navbar-toggler:focus {
  outline: none;
}

.cid-tNdRjmZGtZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tNdRjmZGtZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tNdRjmZGtZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tNdRjmZGtZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tNdRjmZGtZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tNdRjmZGtZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNdRjmZGtZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tNdRjmZGtZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tNdRjmZGtZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNdRjmZGtZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNdRjmZGtZ .collapsed .btn {
  display: -webkit-flex;
}

.cid-tNdRjmZGtZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tNdRjmZGtZ .collapsed .navbar-collapse.collapsing,
.cid-tNdRjmZGtZ .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tNdRjmZGtZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNdRjmZGtZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tNdRjmZGtZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNdRjmZGtZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tNdRjmZGtZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNdRjmZGtZ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tNdRjmZGtZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNdRjmZGtZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tNdRjmZGtZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNdRjmZGtZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tNdRjmZGtZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tNdRjmZGtZ .collapsed button.navbar-toggler {
  display: block;
}

.cid-tNdRjmZGtZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tNdRjmZGtZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNdRjmZGtZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tNdRjmZGtZ .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tNdRjmZGtZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tNdRjmZGtZ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tNdRjmZGtZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNdRjmZGtZ img {
    height: 3.8rem !important;
  }

  .cid-tNdRjmZGtZ .btn {
    display: -webkit-flex;
  }

  .cid-tNdRjmZGtZ button.navbar-toggler {
    display: block;
  }

  .cid-tNdRjmZGtZ .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tNdRjmZGtZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNdRjmZGtZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tNdRjmZGtZ .navbar-collapse.collapsing,
  .cid-tNdRjmZGtZ .navbar-collapse.show {
    display: block !important;
  }

  .cid-tNdRjmZGtZ .navbar-collapse.collapsing .navbar-nav,
  .cid-tNdRjmZGtZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tNdRjmZGtZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNdRjmZGtZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tNdRjmZGtZ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNdRjmZGtZ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNdRjmZGtZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNdRjmZGtZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tNdRjmZGtZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNdRjmZGtZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNdRjmZGtZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tNdRjmZGtZ .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tNdRjmZGtZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tNdRjmZGtZ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tNdRjmZGtZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tNdRjmZGtZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tNdRjmZGtZ .nav-link:hover,
.cid-tNdRjmZGtZ .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tNdRnOxiPY {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tNdRnOxiPY .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tNdRnOxiPY H2 {
  color: #ffffff;
}

.cid-tNdRjlWH0s {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}

.cid-tNdRjlWH0s img,
.cid-tNdRjlWH0s .item-img {
  width: 100%;
}

.cid-tNdRjlWH0s .item:focus,
.cid-tNdRjlWH0s span:focus {
  outline: none;
}

.cid-tNdRjlWH0s .item {
  cursor: pointer;
  margin-bottom: 2rem;
}

.cid-tNdRjlWH0s .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}

@media (min-width: 992px) {
  .cid-tNdRjlWH0s .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }

  .cid-tNdRjlWH0s .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNdRjlWH0s .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }

  .cid-tNdRjlWH0s .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}

.cid-tNdRjlWH0s .mbr-section-btn {
  margin-top: auto !important;
}

.cid-tNdRjlWH0s .mbr-section-title {
  color: #024a94;
}

.cid-tNdRjlWH0s .mbr-text,
.cid-tNdRjlWH0s .mbr-section-btn {
  text-align: left;
}

.cid-tNdRjlWH0s .item-title {
  text-align: left;
  color: #024a94;
}

.cid-tNdRjlWH0s .item-subtitle {
  text-align: left;
}

.cid-tNdRjmQhzP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05488b;
}

.cid-tNdRjnAzRP {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tNdRjnAzRP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tNdRjnAzRP form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tNdRjnAzRP form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNdRjnAzRP form.mbr-form {
    padding: 1rem;
  }
}

.cid-tNdRjnAzRP form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tNdRjnAzRP form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tNdRjnAzRP .mbr-section-title {
  color: #fafafa;
}

.cid-tNdRjnAzRP P {
  text-align: left;
}

.cid-tNdRjnRkP0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tNdRjnRkP0 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNdRjnRkP0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNdRjnRkP0 .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tNdRjnRkP0 .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tNdRjnRkP0 .row {
    text-align: center;
  }

  .cid-tNdRjnRkP0 .row>div {
    margin: auto;
  }

  .cid-tNdRjnRkP0 .social-row {
    justify-content: center;
  }
}

.cid-tNdRjnRkP0 .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tNdRjnRkP0 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tNdRjnRkP0 .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tNdRjnRkP0 .list {
    margin-bottom: 0rem;
  }
}

.cid-tNdRjnRkP0 .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tNdRjnRkP0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tNdRjnRkP0 .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tNdRjnRkP0 div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tNdRjnRkP0 .mbr-section-subtitle {
  text-align: center;
}

.cid-tNdRjnRkP0 H5 {
  text-align: center;
}

.cid-v7Dko4us5S {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7Dko4us5S .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7Dko4us5S .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7Dko4us5S .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7Dko4us5S .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7Dko4us5S .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7Dko4us5S .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7Dko4us5S .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-v7Dko4us5S .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7Dko4us5S .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7Dko4us5S .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7Dko4us5S .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7Dko4us5S .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7Dko4us5S .copyright>p {
  color: #4479d9;
}

.cid-tNH96NruUu.popup-builder {
  background-color: #ffffff;
}

.cid-tNH96NruUu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}

.cid-tNH96NruUu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}

.cid-tNH96NruUu .modal-content,
.cid-tNH96NruUu .modal-dialog {
  height: auto;
}

.cid-tNH96NruUu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}

.cid-tNH96NruUu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}

@media (min-width: 769px) {

  .cid-tNH96NruUu .form-wrapper .mbr-form .form-group,
  .cid-tNH96NruUu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}

.cid-tNH96NruUu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}

.cid-tNH96NruUu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}

.cid-tNH96NruUu .mbr-text {
  text-align: left;
}

.cid-tNH96NruUu .pt-0 {
  padding-top: 0 !important;
}

.cid-tNH96NruUu .pb-0 {
  padding-bottom: 0 !important;
}

.cid-tNH96NruUu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cid-tNH96NruUu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.cid-tNH96NruUu .modal-open {
  overflow: hidden;
}

.cid-tNH96NruUu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.cid-tNH96NruUu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.cid-tNH96NruUu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.cid-tNH96NruUu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

.cid-tNH96NruUu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.cid-tNH96NruUu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.cid-tNH96NruUu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}

.cid-tNH96NruUu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.cid-tNH96NruUu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}

.cid-tNH96NruUu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.cid-tNH96NruUu .modal-backdrop.fade {
  opacity: 0;
}

.cid-tNH96NruUu .modal-backdrop.show {
  opacity: .5;
}

.cid-tNH96NruUu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}

@media (min-width: 992px) {
  .cid-tNH96NruUu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}

@media (max-width: 991px) {
  .cid-tNH96NruUu .modal-header {
    padding: 1rem;
  }
}

.cid-tNH96NruUu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}

.cid-tNH96NruUu .modal-header .close svg {
  fill: #353535;
}

.cid-tNH96NruUu .modal-header .close:hover {
  opacity: 1;
}

.cid-tNH96NruUu .modal-header .close:focus {
  outline: none;
}

.cid-tNH96NruUu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #024a94;
}

.cid-tNH96NruUu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .cid-tNH96NruUu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNH96NruUu .modal-body {
    padding: 1rem;
  }
}

.cid-tNH96NruUu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}

@media (min-width: 992px) {
  .cid-tNH96NruUu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNH96NruUu .modal-footer {
    padding: 1rem;
  }
}

.cid-tNH96NruUu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .cid-tNH96NruUu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .cid-tNH96NruUu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .cid-tNH96NruUu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .cid-tNH96NruUu .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .cid-tNH96NruUu .modal-lg,
  .cid-tNH96NruUu .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .cid-tNH96NruUu .modal-xl {
    max-width: 1140px;
  }
}

.cid-tNH96NruUu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cid-tNH96NruUu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cid-tNH96NruUu .form-group {
  margin-bottom: 1rem;
}

.cid-tNH96NruUu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.cid-tNH96NruUu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.cid-tNH96NruUu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.cid-tNH96NruUu .mbr-section-btn {
  margin: 0;
}

.cid-tNH96NruUu .mbr-section-btn .btn {
  margin: 0;
}

.cid-tNiwXG9ctZ .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tNiwXG9ctZ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tNiwXG9ctZ a {
  font-style: normal;
}

.cid-tNiwXG9ctZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tNiwXG9ctZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tNiwXG9ctZ .nav-item:focus,
.cid-tNiwXG9ctZ .nav-link:focus {
  outline: none;
}

.cid-tNiwXG9ctZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tNiwXG9ctZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tNiwXG9ctZ .menu-logo {
  margin-right: auto;
}

.cid-tNiwXG9ctZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tNiwXG9ctZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tNiwXG9ctZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tNiwXG9ctZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tNiwXG9ctZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tNiwXG9ctZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tNiwXG9ctZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tNiwXG9ctZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tNiwXG9ctZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tNiwXG9ctZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tNiwXG9ctZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tNiwXG9ctZ .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tNiwXG9ctZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tNiwXG9ctZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tNiwXG9ctZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tNiwXG9ctZ .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tNiwXG9ctZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tNiwXG9ctZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tNiwXG9ctZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tNiwXG9ctZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tNiwXG9ctZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tNiwXG9ctZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tNiwXG9ctZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tNiwXG9ctZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tNiwXG9ctZ button.navbar-toggler:focus {
  outline: none;
}

.cid-tNiwXG9ctZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tNiwXG9ctZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tNiwXG9ctZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tNiwXG9ctZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tNiwXG9ctZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tNiwXG9ctZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNiwXG9ctZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tNiwXG9ctZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tNiwXG9ctZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNiwXG9ctZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNiwXG9ctZ .collapsed .btn {
  display: -webkit-flex;
}

.cid-tNiwXG9ctZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tNiwXG9ctZ .collapsed .navbar-collapse.collapsing,
.cid-tNiwXG9ctZ .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tNiwXG9ctZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNiwXG9ctZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tNiwXG9ctZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNiwXG9ctZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tNiwXG9ctZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNiwXG9ctZ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tNiwXG9ctZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNiwXG9ctZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tNiwXG9ctZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNiwXG9ctZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tNiwXG9ctZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tNiwXG9ctZ .collapsed button.navbar-toggler {
  display: block;
}

.cid-tNiwXG9ctZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tNiwXG9ctZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNiwXG9ctZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tNiwXG9ctZ .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tNiwXG9ctZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tNiwXG9ctZ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tNiwXG9ctZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNiwXG9ctZ img {
    height: 3.8rem !important;
  }

  .cid-tNiwXG9ctZ .btn {
    display: -webkit-flex;
  }

  .cid-tNiwXG9ctZ button.navbar-toggler {
    display: block;
  }

  .cid-tNiwXG9ctZ .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tNiwXG9ctZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNiwXG9ctZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tNiwXG9ctZ .navbar-collapse.collapsing,
  .cid-tNiwXG9ctZ .navbar-collapse.show {
    display: block !important;
  }

  .cid-tNiwXG9ctZ .navbar-collapse.collapsing .navbar-nav,
  .cid-tNiwXG9ctZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tNiwXG9ctZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNiwXG9ctZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tNiwXG9ctZ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNiwXG9ctZ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNiwXG9ctZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNiwXG9ctZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tNiwXG9ctZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNiwXG9ctZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNiwXG9ctZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tNiwXG9ctZ .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tNiwXG9ctZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tNiwXG9ctZ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tNiwXG9ctZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tNiwXG9ctZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tNiwXG9ctZ .nav-link:hover,
.cid-tNiwXG9ctZ .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tNiwXFslV4 {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tNiwXFslV4 .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tNiwXFslV4 H2 {
  color: #ffffff;
}

.cid-tNiwXFJ7SA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}

.cid-tNiwXFJ7SA img,
.cid-tNiwXFJ7SA .item-img {
  width: 100%;
}

.cid-tNiwXFJ7SA .item:focus,
.cid-tNiwXFJ7SA span:focus {
  outline: none;
}

.cid-tNiwXFJ7SA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}

.cid-tNiwXFJ7SA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}

@media (min-width: 992px) {
  .cid-tNiwXFJ7SA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }

  .cid-tNiwXFJ7SA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNiwXFJ7SA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }

  .cid-tNiwXFJ7SA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}

.cid-tNiwXFJ7SA .mbr-section-btn {
  margin-top: auto !important;
}

.cid-tNiwXFJ7SA .mbr-section-title {
  color: #024a94;
}

.cid-tNiwXFJ7SA .mbr-text,
.cid-tNiwXFJ7SA .mbr-section-btn {
  text-align: left;
}

.cid-tNiwXFJ7SA .item-title {
  text-align: left;
  color: #f27034;
}

.cid-tNiwXFJ7SA .item-subtitle {
  text-align: left;
}

.cid-tNiwXG3Ndp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05488b;
}

.cid-tNiwXGlDaP {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tNiwXGlDaP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tNiwXGlDaP form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tNiwXGlDaP form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNiwXGlDaP form.mbr-form {
    padding: 1rem;
  }
}

.cid-tNiwXGlDaP form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tNiwXGlDaP form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tNiwXGlDaP .mbr-section-title {
  color: #fafafa;
}

.cid-tNiwXGlDaP P {
  text-align: left;
}

.cid-tNiwXGvpNP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tNiwXGvpNP .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNiwXGvpNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNiwXGvpNP .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tNiwXGvpNP .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tNiwXGvpNP .row {
    text-align: center;
  }

  .cid-tNiwXGvpNP .row>div {
    margin: auto;
  }

  .cid-tNiwXGvpNP .social-row {
    justify-content: center;
  }
}

.cid-tNiwXGvpNP .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tNiwXGvpNP .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tNiwXGvpNP .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tNiwXGvpNP .list {
    margin-bottom: 0rem;
  }
}

.cid-tNiwXGvpNP .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tNiwXGvpNP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tNiwXGvpNP .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tNiwXGvpNP div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tNiwXGvpNP .mbr-section-subtitle {
  text-align: center;
}

.cid-tNiwXGvpNP H5 {
  text-align: center;
}

.cid-v7DktUwHvg {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7DktUwHvg .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DktUwHvg .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7DktUwHvg .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7DktUwHvg .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7DktUwHvg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DktUwHvg .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7DktUwHvg .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-v7DktUwHvg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7DktUwHvg .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7DktUwHvg .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7DktUwHvg .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7DktUwHvg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7DktUwHvg .copyright>p {
  color: #4479d9;
}

.cid-tNjT9GQVHv .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tNjT9GQVHv .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tNjT9GQVHv a {
  font-style: normal;
}

.cid-tNjT9GQVHv .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tNjT9GQVHv .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tNjT9GQVHv .nav-item:focus,
.cid-tNjT9GQVHv .nav-link:focus {
  outline: none;
}

.cid-tNjT9GQVHv .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tNjT9GQVHv .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tNjT9GQVHv .menu-logo {
  margin-right: auto;
}

.cid-tNjT9GQVHv .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tNjT9GQVHv .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tNjT9GQVHv .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tNjT9GQVHv .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tNjT9GQVHv .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tNjT9GQVHv .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tNjT9GQVHv .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tNjT9GQVHv .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tNjT9GQVHv .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tNjT9GQVHv .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tNjT9GQVHv .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tNjT9GQVHv .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tNjT9GQVHv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tNjT9GQVHv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tNjT9GQVHv .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tNjT9GQVHv .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tNjT9GQVHv .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tNjT9GQVHv .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tNjT9GQVHv .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tNjT9GQVHv .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tNjT9GQVHv .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tNjT9GQVHv .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tNjT9GQVHv .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tNjT9GQVHv button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tNjT9GQVHv button.navbar-toggler:focus {
  outline: none;
}

.cid-tNjT9GQVHv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tNjT9GQVHv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tNjT9GQVHv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tNjT9GQVHv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tNjT9GQVHv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tNjT9GQVHv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNjT9GQVHv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tNjT9GQVHv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tNjT9GQVHv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNjT9GQVHv .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNjT9GQVHv .collapsed .btn {
  display: -webkit-flex;
}

.cid-tNjT9GQVHv .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tNjT9GQVHv .collapsed .navbar-collapse.collapsing,
.cid-tNjT9GQVHv .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tNjT9GQVHv .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNjT9GQVHv .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tNjT9GQVHv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNjT9GQVHv .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tNjT9GQVHv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNjT9GQVHv .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tNjT9GQVHv .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNjT9GQVHv .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tNjT9GQVHv .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNjT9GQVHv .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tNjT9GQVHv .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tNjT9GQVHv .collapsed button.navbar-toggler {
  display: block;
}

.cid-tNjT9GQVHv .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tNjT9GQVHv .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNjT9GQVHv .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tNjT9GQVHv .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tNjT9GQVHv .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tNjT9GQVHv .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tNjT9GQVHv.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNjT9GQVHv img {
    height: 3.8rem !important;
  }

  .cid-tNjT9GQVHv .btn {
    display: -webkit-flex;
  }

  .cid-tNjT9GQVHv button.navbar-toggler {
    display: block;
  }

  .cid-tNjT9GQVHv .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tNjT9GQVHv .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNjT9GQVHv .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tNjT9GQVHv .navbar-collapse.collapsing,
  .cid-tNjT9GQVHv .navbar-collapse.show {
    display: block !important;
  }

  .cid-tNjT9GQVHv .navbar-collapse.collapsing .navbar-nav,
  .cid-tNjT9GQVHv .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tNjT9GQVHv .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNjT9GQVHv .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tNjT9GQVHv .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNjT9GQVHv .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNjT9GQVHv .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNjT9GQVHv .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tNjT9GQVHv .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNjT9GQVHv .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNjT9GQVHv .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tNjT9GQVHv .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tNjT9GQVHv .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tNjT9GQVHv .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tNjT9GQVHv .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tNjT9GQVHv .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tNjT9GQVHv .nav-link:hover,
.cid-tNjT9GQVHv .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tNjT9Fc2b0 {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tNjT9Fc2b0 .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tNjT9Fc2b0 H2 {
  color: #ffffff;
}

.cid-tNjT9FLXSy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}

.cid-tNjT9FLXSy .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNjT9FLXSy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNjT9FLXSy .card {
  border-radius: 0;
}

@media (min-width: 992px) {
  .cid-tNjT9FLXSy .card {
    border-right: 1px solid white;
  }
}

@media (max-width: 991px) {
  .cid-tNjT9FLXSy .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}

.cid-tNjT9FLXSy .wrapper {
  padding: 30px 0;
}

.cid-tNjT9FLXSy .mbr-section-title {
  color: #fafafa;
}

.cid-tNjT9FLXSy .mbr-text,
.cid-tNjT9FLXSy .mbr-section-btn {
  color: #353535;
  text-align: center;
}

.cid-tNjT9FWkx3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}

.cid-tNjT9FWkx3 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNjT9FWkx3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNjT9FWkx3 .container-fluid {
  padding: 0 16px;
}

@media (max-width: 992px) {
  .cid-tNjT9FWkx3 .container-fluid {
    padding: 0 12px;
  }
}

.cid-tNjT9FWkx3 .container-fluid .row {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-tNjT9FWkx3 .container {
    padding: 0 20px;
  }
}

.cid-tNjT9FWkx3 .card {
  padding: 0;
}

.cid-tNjT9FWkx3 .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-tNjT9FWkx3 .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tNjT9FWkx3 .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-tNjT9FWkx3 .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-tNjT9FWkx3 .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-tNjT9FWkx3 .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-tNjT9FWkx3 .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #024a94 !important;
}

.cid-tNjT9FWkx3 .image-wrap {
  position: relative;
  height: 100%;
}

.cid-tNjT9FWkx3 .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tNjT9FWkx3 .mbr-section-title {
  color: #ffffff;
}

.cid-tNjT9FWkx3 .mbr-text {
  color: #ffffff;
}

.cid-tNjT9GlB97 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05488b;
}

.cid-tNjUKrA54j {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}

.cid-tNjUKrA54j img,
.cid-tNjUKrA54j .item-img {
  width: 100%;
}

.cid-tNjUKrA54j .item:focus,
.cid-tNjUKrA54j span:focus {
  outline: none;
}

.cid-tNjUKrA54j .item {
  margin-bottom: 2rem;
}

.cid-tNjUKrA54j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}

@media (min-width: 992px) {
  .cid-tNjUKrA54j .item-wrapper .item-content {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNjUKrA54j .item-wrapper .item-content {
    padding: 1rem;
  }
}

.cid-tNjUKrA54j .mbr-section-btn {
  margin-top: auto !important;
}

.cid-tNjUKrA54j .mbr-section-title {
  color: #024a94;
}

.cid-tNjUKrA54j .mbr-text,
.cid-tNjUKrA54j .mbr-section-btn {
  text-align: left;
}

.cid-tNjUKrA54j .item-title {
  text-align: left;
  color: #024a94;
}

.cid-tNjUKrA54j .item-subtitle {
  text-align: left;
}

.cid-tNjT9HgPV9 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tNjT9HgPV9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tNjT9HgPV9 form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tNjT9HgPV9 form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNjT9HgPV9 form.mbr-form {
    padding: 1rem;
  }
}

.cid-tNjT9HgPV9 form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tNjT9HgPV9 form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tNjT9HgPV9 .mbr-section-title {
  color: #fafafa;
}

.cid-tNjT9HgPV9 P {
  text-align: left;
}

.cid-tNjT9Hwyvt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tNjT9Hwyvt .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNjT9Hwyvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNjT9Hwyvt .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tNjT9Hwyvt .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tNjT9Hwyvt .row {
    text-align: center;
  }

  .cid-tNjT9Hwyvt .row>div {
    margin: auto;
  }

  .cid-tNjT9Hwyvt .social-row {
    justify-content: center;
  }
}

.cid-tNjT9Hwyvt .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tNjT9Hwyvt .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tNjT9Hwyvt .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tNjT9Hwyvt .list {
    margin-bottom: 0rem;
  }
}

.cid-tNjT9Hwyvt .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tNjT9Hwyvt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tNjT9Hwyvt .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tNjT9Hwyvt div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tNjT9Hwyvt .mbr-section-subtitle {
  text-align: center;
}

.cid-tNjT9Hwyvt H5 {
  text-align: center;
}

.cid-v7DkPGR6bK {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7DkPGR6bK .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkPGR6bK .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7DkPGR6bK .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7DkPGR6bK .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7DkPGR6bK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkPGR6bK .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7DkPGR6bK .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-v7DkPGR6bK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7DkPGR6bK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7DkPGR6bK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7DkPGR6bK .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7DkPGR6bK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7DkPGR6bK .copyright>p {
  color: #4479d9;
}

.cid-tNLzGCYxsk .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tNLzGCYxsk .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tNLzGCYxsk a {
  font-style: normal;
}

.cid-tNLzGCYxsk .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tNLzGCYxsk .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tNLzGCYxsk .nav-item:focus,
.cid-tNLzGCYxsk .nav-link:focus {
  outline: none;
}

.cid-tNLzGCYxsk .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tNLzGCYxsk .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tNLzGCYxsk .menu-logo {
  margin-right: auto;
}

.cid-tNLzGCYxsk .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tNLzGCYxsk .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tNLzGCYxsk .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tNLzGCYxsk .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tNLzGCYxsk .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tNLzGCYxsk .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tNLzGCYxsk .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tNLzGCYxsk .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tNLzGCYxsk .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tNLzGCYxsk .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tNLzGCYxsk .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tNLzGCYxsk .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tNLzGCYxsk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tNLzGCYxsk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tNLzGCYxsk .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tNLzGCYxsk .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tNLzGCYxsk .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tNLzGCYxsk .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tNLzGCYxsk .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tNLzGCYxsk .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tNLzGCYxsk .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tNLzGCYxsk .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tNLzGCYxsk .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tNLzGCYxsk button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tNLzGCYxsk button.navbar-toggler:focus {
  outline: none;
}

.cid-tNLzGCYxsk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tNLzGCYxsk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tNLzGCYxsk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tNLzGCYxsk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tNLzGCYxsk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tNLzGCYxsk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNLzGCYxsk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tNLzGCYxsk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tNLzGCYxsk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNLzGCYxsk .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNLzGCYxsk .collapsed .btn {
  display: -webkit-flex;
}

.cid-tNLzGCYxsk .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tNLzGCYxsk .collapsed .navbar-collapse.collapsing,
.cid-tNLzGCYxsk .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tNLzGCYxsk .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNLzGCYxsk .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tNLzGCYxsk .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNLzGCYxsk .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tNLzGCYxsk .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNLzGCYxsk .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tNLzGCYxsk .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNLzGCYxsk .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tNLzGCYxsk .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNLzGCYxsk .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tNLzGCYxsk .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tNLzGCYxsk .collapsed button.navbar-toggler {
  display: block;
}

.cid-tNLzGCYxsk .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tNLzGCYxsk .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNLzGCYxsk .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tNLzGCYxsk .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tNLzGCYxsk .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tNLzGCYxsk .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tNLzGCYxsk.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNLzGCYxsk img {
    height: 3.8rem !important;
  }

  .cid-tNLzGCYxsk .btn {
    display: -webkit-flex;
  }

  .cid-tNLzGCYxsk button.navbar-toggler {
    display: block;
  }

  .cid-tNLzGCYxsk .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tNLzGCYxsk .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNLzGCYxsk .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tNLzGCYxsk .navbar-collapse.collapsing,
  .cid-tNLzGCYxsk .navbar-collapse.show {
    display: block !important;
  }

  .cid-tNLzGCYxsk .navbar-collapse.collapsing .navbar-nav,
  .cid-tNLzGCYxsk .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tNLzGCYxsk .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNLzGCYxsk .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tNLzGCYxsk .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNLzGCYxsk .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNLzGCYxsk .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNLzGCYxsk .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tNLzGCYxsk .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNLzGCYxsk .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNLzGCYxsk .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tNLzGCYxsk .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tNLzGCYxsk .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tNLzGCYxsk .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tNLzGCYxsk .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tNLzGCYxsk .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tNLzGCYxsk .nav-link:hover,
.cid-tNLzGCYxsk .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tNLzGBhkxn {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tNLzGBhkxn .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tNLzGBhkxn H2 {
  color: #ffffff;
}

.cid-tNLzGBLl4e {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}

.cid-tNLzGBLl4e .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNLzGBLl4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNLzGBLl4e .card {
  border-radius: 0;
}

@media (min-width: 992px) {
  .cid-tNLzGBLl4e .card {
    border-right: 1px solid white;
  }
}

@media (max-width: 991px) {
  .cid-tNLzGBLl4e .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}

.cid-tNLzGBLl4e .wrapper {
  padding: 30px 0;
}

.cid-tNLzGBLl4e .mbr-section-title {
  color: #fafafa;
}

.cid-tNLzGBLl4e .mbr-text,
.cid-tNLzGBLl4e .mbr-section-btn {
  color: #353535;
  text-align: center;
}

.cid-tNLzGBXk7u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}

.cid-tNLzGBXk7u .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNLzGBXk7u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNLzGBXk7u .container-fluid {
  padding: 0 16px;
}

@media (max-width: 992px) {
  .cid-tNLzGBXk7u .container-fluid {
    padding: 0 12px;
  }
}

.cid-tNLzGBXk7u .container-fluid .row {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-tNLzGBXk7u .container {
    padding: 0 20px;
  }
}

.cid-tNLzGBXk7u .card {
  padding: 0;
}

.cid-tNLzGBXk7u .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-tNLzGBXk7u .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tNLzGBXk7u .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-tNLzGBXk7u .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-tNLzGBXk7u .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-tNLzGBXk7u .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-tNLzGBXk7u .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #024a94 !important;
}

.cid-tNLzGBXk7u .image-wrap {
  position: relative;
  height: 100%;
}

.cid-tNLzGBXk7u .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tNLzGBXk7u .mbr-section-title {
  color: #ffffff;
}

.cid-tNLzGBXk7u .mbr-text {
  color: #ffffff;
}

.cid-tNLHc4C9uh {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}

.cid-tNLHc4C9uh img,
.cid-tNLHc4C9uh .item-img {
  width: 100%;
}

.cid-tNLHc4C9uh .item:focus,
.cid-tNLHc4C9uh span:focus {
  outline: none;
}

.cid-tNLHc4C9uh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}

.cid-tNLHc4C9uh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}

@media (min-width: 992px) {
  .cid-tNLHc4C9uh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }

  .cid-tNLHc4C9uh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNLHc4C9uh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }

  .cid-tNLHc4C9uh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}

.cid-tNLHc4C9uh .mbr-section-btn {
  margin-top: auto !important;
}

.cid-tNLHc4C9uh .mbr-section-title {
  color: #024a94;
}

.cid-tNLHc4C9uh .mbr-text,
.cid-tNLHc4C9uh .mbr-section-btn {
  text-align: left;
}

.cid-tNLHc4C9uh .item-title {
  text-align: left;
  color: #024a94;
}

.cid-tNLHc4C9uh .item-subtitle {
  text-align: left;
}

.cid-tNLzGCiSYJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05488b;
}

.cid-tNLzGDbXfH {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tNLzGDbXfH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tNLzGDbXfH form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tNLzGDbXfH form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNLzGDbXfH form.mbr-form {
    padding: 1rem;
  }
}

.cid-tNLzGDbXfH form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tNLzGDbXfH form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tNLzGDbXfH .mbr-section-title {
  color: #fafafa;
}

.cid-tNLzGDbXfH P {
  text-align: left;
}

.cid-tNLzGDqkDm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tNLzGDqkDm .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNLzGDqkDm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNLzGDqkDm .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tNLzGDqkDm .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tNLzGDqkDm .row {
    text-align: center;
  }

  .cid-tNLzGDqkDm .row>div {
    margin: auto;
  }

  .cid-tNLzGDqkDm .social-row {
    justify-content: center;
  }
}

.cid-tNLzGDqkDm .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tNLzGDqkDm .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tNLzGDqkDm .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tNLzGDqkDm .list {
    margin-bottom: 0rem;
  }
}

.cid-tNLzGDqkDm .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tNLzGDqkDm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tNLzGDqkDm .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tNLzGDqkDm div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tNLzGDqkDm .mbr-section-subtitle {
  text-align: center;
}

.cid-tNLzGDqkDm H5 {
  text-align: center;
}

.cid-v7DkIn1uVM {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7DkIn1uVM .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkIn1uVM .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7DkIn1uVM .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7DkIn1uVM .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7DkIn1uVM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkIn1uVM .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7DkIn1uVM .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-v7DkIn1uVM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7DkIn1uVM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7DkIn1uVM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7DkIn1uVM .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7DkIn1uVM .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7DkIn1uVM .copyright>p {
  color: #4479d9;
}

.cid-tNLJlgYalQ .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  -webkit-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 10px 17px -5px rgba(0, 0, 0, 0.43);
}

.cid-tNLJlgYalQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}

.cid-tNLJlgYalQ a {
  font-style: normal;
}

.cid-tNLJlgYalQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}

.cid-tNLJlgYalQ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.cid-tNLJlgYalQ .nav-item:focus,
.cid-tNLJlgYalQ .nav-link:focus {
  outline: none;
}

.cid-tNLJlgYalQ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}

.cid-tNLJlgYalQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}

.cid-tNLJlgYalQ .menu-logo {
  margin-right: auto;
}

.cid-tNLJlgYalQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}

.cid-tNLJlgYalQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}

.cid-tNLJlgYalQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}

.cid-tNLJlgYalQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}

.cid-tNLJlgYalQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}

.cid-tNLJlgYalQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}

.cid-tNLJlgYalQ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}

.cid-tNLJlgYalQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}

.cid-tNLJlgYalQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}

.cid-tNLJlgYalQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}

.cid-tNLJlgYalQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}

.cid-tNLJlgYalQ .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}

.cid-tNLJlgYalQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-tNLJlgYalQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tNLJlgYalQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}

.cid-tNLJlgYalQ .dropdown.open>.dropdown-menu {
  visibility: visible;
}

.cid-tNLJlgYalQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}

.cid-tNLJlgYalQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}

.cid-tNLJlgYalQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}

.cid-tNLJlgYalQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}

.cid-tNLJlgYalQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}

.cid-tNLJlgYalQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}

.cid-tNLJlgYalQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}

.cid-tNLJlgYalQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}

.cid-tNLJlgYalQ button.navbar-toggler:focus {
  outline: none;
}

.cid-tNLJlgYalQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}

.cid-tNLJlgYalQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}

.cid-tNLJlgYalQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}

.cid-tNLJlgYalQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}

.cid-tNLJlgYalQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}

.cid-tNLJlgYalQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNLJlgYalQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}

.cid-tNLJlgYalQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}

.cid-tNLJlgYalQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}

.cid-tNLJlgYalQ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNLJlgYalQ .collapsed .btn {
  display: -webkit-flex;
}

.cid-tNLJlgYalQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}

.cid-tNLJlgYalQ .collapsed .navbar-collapse.collapsing,
.cid-tNLJlgYalQ .collapsed .navbar-collapse.show {
  display: block !important;
}

.cid-tNLJlgYalQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNLJlgYalQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}

.cid-tNLJlgYalQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNLJlgYalQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}

.cid-tNLJlgYalQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNLJlgYalQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}

.cid-tNLJlgYalQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNLJlgYalQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}

.cid-tNLJlgYalQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNLJlgYalQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cid-tNLJlgYalQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}

.cid-tNLJlgYalQ .collapsed button.navbar-toggler {
  display: block;
}

.cid-tNLJlgYalQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}

.cid-tNLJlgYalQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.cid-tNLJlgYalQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}

.cid-tNLJlgYalQ .collapsed .dropdown.open>.dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}

.cid-tNLJlgYalQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}

.cid-tNLJlgYalQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}

@media (max-width: 1023px) {
  .cid-tNLJlgYalQ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNLJlgYalQ img {
    height: 3.8rem !important;
  }

  .cid-tNLJlgYalQ .btn {
    display: -webkit-flex;
  }

  .cid-tNLJlgYalQ button.navbar-toggler {
    display: block;
  }

  .cid-tNLJlgYalQ .navbar-brand {
    margin-left: 1rem !important;
  }

  .cid-tNLJlgYalQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .cid-tNLJlgYalQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }

  .cid-tNLJlgYalQ .navbar-collapse.collapsing,
  .cid-tNLJlgYalQ .navbar-collapse.show {
    display: block !important;
  }

  .cid-tNLJlgYalQ .navbar-collapse.collapsing .navbar-nav,
  .cid-tNLJlgYalQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }

  .cid-tNLJlgYalQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNLJlgYalQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }

  .cid-tNLJlgYalQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNLJlgYalQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNLJlgYalQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNLJlgYalQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }

  .cid-tNLJlgYalQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNLJlgYalQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }

  .cid-tNLJlgYalQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }

  .cid-tNLJlgYalQ .dropdown.open>.dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }

  .cid-tNLJlgYalQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }

  .cid-tNLJlgYalQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}

@media (min-width: 767px) {
  .cid-tNLJlgYalQ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}

.cid-tNLJlgYalQ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}

.cid-tNLJlgYalQ .nav-link:hover,
.cid-tNLJlgYalQ .dropdown-item:hover {
  color: #767676 !important;
}

.cid-tNLJlfqF7I {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #024a94;
}

.cid-tNLJlfqF7I .mbr-section-subtitle {
  color: #fafafa;
}

.cid-tNLJlfqF7I H2 {
  color: #ffffff;
}

.cid-tNLJlg1vy9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}

.cid-tNLJlg1vy9 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNLJlg1vy9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNLJlg1vy9 .card {
  border-radius: 0;
}

@media (min-width: 992px) {
  .cid-tNLJlg1vy9 .card {
    border-right: 1px solid white;
  }
}

@media (max-width: 991px) {
  .cid-tNLJlg1vy9 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}

.cid-tNLJlg1vy9 .wrapper {
  padding: 30px 0;
}

.cid-tNLJlg1vy9 .mbr-section-title {
  color: #fafafa;
}

.cid-tNLJlg1vy9 .mbr-text,
.cid-tNLJlg1vy9 .mbr-section-btn {
  color: #353535;
  text-align: center;
}

.cid-tNLJlghqzw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}

.cid-tNLJlghqzw .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNLJlghqzw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNLJlghqzw .container-fluid {
  padding: 0 16px;
}

@media (max-width: 992px) {
  .cid-tNLJlghqzw .container-fluid {
    padding: 0 12px;
  }
}

.cid-tNLJlghqzw .container-fluid .row {
  padding: 0;
}

@media (max-width: 992px) {
  .cid-tNLJlghqzw .container {
    padding: 0 20px;
  }
}

.cid-tNLJlghqzw .card {
  padding: 0;
}

.cid-tNLJlghqzw .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.cid-tNLJlghqzw .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tNLJlghqzw .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .cid-tNLJlghqzw .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}

.cid-tNLJlghqzw .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}

.cid-tNLJlghqzw .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}

.cid-tNLJlghqzw .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #024a94 !important;
}

.cid-tNLJlghqzw .image-wrap {
  position: relative;
  height: 100%;
}

.cid-tNLJlghqzw .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tNLJlghqzw .mbr-section-title {
  color: #ffffff;
}

.cid-tNLJlghqzw .mbr-text {
  color: #ffffff;
}

.cid-tNLJlgOiXF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05488b;
}

.cid-tNLJlheHmX {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #01182f;
}

.cid-tNLJlheHmX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-tNLJlheHmX form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .cid-tNLJlheHmX form.mbr-form {
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .cid-tNLJlheHmX form.mbr-form {
    padding: 1rem;
  }
}

.cid-tNLJlheHmX form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cid-tNLJlheHmX form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}

.cid-tNLJlheHmX .mbr-section-title {
  color: #fafafa;
}

.cid-tNLJlheHmX P {
  text-align: left;
}

.cid-tNLJlhrFrq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #215990;
}

.cid-tNLJlhrFrq .mbr-fallback-image.disabled {
  display: none;
}

.cid-tNLJlhrFrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tNLJlhrFrq .media-wrap {
  padding: 0;
}

@media (max-width: 991px) {
  .cid-tNLJlhrFrq .media-wrap {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .cid-tNLJlhrFrq .row {
    text-align: center;
  }

  .cid-tNLJlhrFrq .row>div {
    margin: auto;
  }

  .cid-tNLJlhrFrq .social-row {
    justify-content: center;
  }
}

.cid-tNLJlhrFrq .social-row {
  display: flex;
  flex-wrap: wrap;
}

.cid-tNLJlhrFrq .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}

@media (max-width: 991px) {
  .cid-tNLJlhrFrq .list {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cid-tNLJlhrFrq .list {
    margin-bottom: 0rem;
  }
}

.cid-tNLJlhrFrq .mbr-text {
  color: #ffffff;
  text-align: center;
}

.cid-tNLJlhrFrq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.cid-tNLJlhrFrq .mbr-iconfont {
  color: black;
}

@media (max-width: 991px) {
  .cid-tNLJlhrFrq div>*:last-child {
    margin-top: 0 !important;
  }
}

.cid-tNLJlhrFrq .mbr-section-subtitle {
  text-align: center;
}

.cid-tNLJlhrFrq H5 {
  text-align: center;
}

.cid-v7DkMi8hKv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #215990;
}

@media (max-width: 767px) {
  .cid-v7DkMi8hKv .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkMi8hKv .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}

.cid-v7DkMi8hKv .media-wrap img {
  height: 2rem;
  display: block;
  width: auto;
}

.cid-v7DkMi8hKv .mbr-text {
  color: #767676;
}

@media (max-width: 767px) {
  .cid-v7DkMi8hKv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.cid-v7DkMi8hKv .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}

.cid-v7DkMi8hKv .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-v7DkMi8hKv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}

.cid-v7DkMi8hKv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}

.cid-v7DkMi8hKv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cid-v7DkMi8hKv .footer-lower .social-list a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-v7DkMi8hKv .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cid-v7DkMi8hKv .copyright>p {
  color: #4479d9;
}