@import url(https://fonts.googleapis.com/css?family=DM+Sans:400,400i,500,500i,700,700i&display=swap);





body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.25rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.2rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.125rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.4rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.7rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.7rem;
    font-size: calc( 1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #133996 !important;
}
.bg-success {
  background-color: #54c242 !important;
}
.bg-info {
  background-color: #fdece8 !important;
}
.bg-warning {
  background-color: #ffcf5c !important;
}
.bg-danger {
  background-color: #939bb4 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #133996 !important;
  border-color: #133996 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0a1f52 !important;
  border-color: #0a1f52 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a1f52 !important;
  border-color: #0a1f52 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #57468b !important;
  border-color: #57468b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fdece8 !important;
  border-color: #fdece8 !important;
  color: #d43712 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #d43712 !important;
  background-color: #f7b2a2 !important;
  border-color: #f7b2a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #d43712 !important;
  background-color: #f7b2a2 !important;
  border-color: #f7b2a2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #54c242 !important;
  border-color: #54c242 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3a8b2d !important;
  border-color: #3a8b2d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3a8b2d !important;
  border-color: #3a8b2d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffcf5c !important;
  border-color: #ffcf5c !important;
  color: #5c4100 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #5c4100 !important;
  background-color: #ffb810 !important;
  border-color: #ffb810 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #5c4100 !important;
  background-color: #ffb810 !important;
  border-color: #ffb810 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #133996;
  color: #133996;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #133996;
  border-color: #133996;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #133996 !important;
  border-color: #133996 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #57468b;
  color: #57468b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #57468b;
  border-color: #57468b;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #fdece8;
  color: #fdece8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d43712;
  background-color: #fdece8;
  border-color: #fdece8;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #d43712 !important;
  background-color: #fdece8 !important;
  border-color: #fdece8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #54c242;
  color: #54c242;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #54c242;
  border-color: #54c242;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #54c242 !important;
  border-color: #54c242 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #ffcf5c;
  color: #ffcf5c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5c4100;
  background-color: #ffcf5c;
  border-color: #ffcf5c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5c4100 !important;
  background-color: #ffcf5c !important;
  border-color: #ffcf5c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #939bb4;
  color: #939bb4;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #939bb4;
  border-color: #939bb4;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #133996 !important;
}
.text-secondary {
  color: #57468b !important;
}
.text-success {
  color: #54c242 !important;
}
.text-info {
  color: #fdece8 !important;
}
.text-warning {
  color: #ffcf5c !important;
}
.text-danger {
  color: #939bb4 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #08173b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #2d2447 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #327727 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #f59e8a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5ad00 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #5c6685 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fdece8;
}
.alert-warning {
  background-color: #ffcf5c;
}
.alert-danger {
  background-color: #939bb4;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 10px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #133996;
  border-color: #133996;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #133996;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4272e7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #abe1a2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dee1e8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.4rem;
  font-weight: 400;
}
blockquote {
  border-color: #133996;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #57468b !important;
  -webkit-box-shadow: 0 6px 16px 0 #57468b !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #54c242 !important;
  -webkit-box-shadow: 0 6px 16px 0 #54c242 !important;
  background-color: #54c242 !important;
  border-color: #54c242 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #133996;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #133996;
  border-bottom-color: #133996;
}
.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: #133996 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #57468b !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%;
}
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='%23133996' %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;
}
.cid-t0eH5RD5fZ .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0eH5RD5fZ .collapsed {
  flex-direction: row !important;
}
.cid-t0eH5RD5fZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0eH5RD5fZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0eH5RD5fZ .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0eH5RD5fZ .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0eH5RD5fZ .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0eH5RD5fZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0eH5RD5fZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0eH5RD5fZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0eH5RD5fZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0eH5RD5fZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0eH5RD5fZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0eH5RD5fZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0eH5RD5fZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0eH5RD5fZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0eH5RD5fZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0eH5RD5fZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0eH5RD5fZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0eH5RD5fZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0eH5RD5fZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0eH5RD5fZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0eH5RD5fZ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0eH5RD5fZ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0eH5RD5fZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0eH5RD5fZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0eH5RD5fZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0eH5RD5fZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0eH5RD5fZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0eH5RD5fZ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0eH5RD5fZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0eH5RD5fZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0eH5RD5fZ .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0eH5RD5fZ .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0eH5RD5fZ .nav-item:focus,
.cid-t0eH5RD5fZ .nav-link:focus {
  outline: none;
}
.cid-t0eH5RD5fZ .text-white:hover,
.cid-t0eH5RD5fZ .text-white:active,
.cid-t0eH5RD5fZ .text-white:focus {
  color: white !important;
}
.cid-t0eH5RD5fZ .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0eH5RD5fZ .dropdown-item:hover {
  color: black !important;
}
.cid-t0eH5RD5fZ .dropdown-menu {
  background-color: white !important;
}
.cid-t0eH5RD5fZ .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0eH5RD5fZ .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0eH5RD5fZ .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0eH5RD5fZ .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0eH5RD5fZ .nav-item {
    position: relative;
  }
}
.cid-t0eH5RD5fZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0eH5RD5fZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0eH5RD5fZ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0eH5RD5fZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0eH5RD5fZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0eH5RD5fZ .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0eH5RD5fZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0eH5RD5fZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0eH5RD5fZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0eH5RD5fZ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0eH5RD5fZ .dropdown-item.active,
.cid-t0eH5RD5fZ .dropdown-item:active {
  background-color: transparent;
}
.cid-t0eH5RD5fZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0eH5RD5fZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0eH5RD5fZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0eH5RD5fZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0eH5RD5fZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0eH5RD5fZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0eH5RD5fZ .navbar-buttons {
  text-align: center;
}
.cid-t0eH5RD5fZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0eH5RD5fZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0eH5RD5fZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0eH5RD5fZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0eH5RD5fZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0eH5RD5fZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0eH5RD5fZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0eH5RD5fZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0eH5RD5fZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0eH5RD5fZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0eH5RD5fZ .nav-link {
  font-weight: 600 !important;
}
.cid-t0eH5RD5fZ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0eH5RD5fZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0eH5RD5fZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0eH5RD5fZ .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0eH5RD5fZ .navbar {
    height: 77px;
  }
  .cid-t0eH5RD5fZ .navbar.opened {
    height: auto;
  }
  .cid-t0eH5RD5fZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0eNodKV4N {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0eNodKV4N .card .card-img {
  overflow: hidden;
}
.cid-t0eNodKV4N .card .card-img img {
  transition: all .5s;
}
.cid-t0eNodKV4N .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-t0eNodKV4N .underline .line {
  width: 2rem;
  height: 1px;
  background: #133996;
  display: inline-block;
}
.cid-t0eNodKV4N .card {
  height: 100%;
}
.cid-t0eNodKV4N .card .card-wrapper {
  height: 100%;
}
.cid-t0eNodKV4N .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-t0eNodKV4N .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-t0eNodKV4N .card .card-box .card-title {
  margin: 0;
}
.cid-t0eNodKV4N .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0eNodKV4N .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-t0eNodKV4N .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-t0eNodKV4N .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-t0eNodKV4N .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0eNodKV4N .card .card-footer .icons-list {
  margin: 0;
}
.cid-t0eNodKV4N .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-t0eNodKV4N .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-t0eNodKV4N .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-t0eNodKV4N .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-t0eNodKV4N .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-t0eNodKV4N .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-t0eNodKV4N .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t0eNodKV4N .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-t0eNodKV4N .main-title {
  color: #133996;
}
.cid-t0eNodKV4N .main-subtitle,
.cid-t0eNodKV4N .underline {
  color: #465052;
}
.cid-tvJ7FeIrN5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tvJ7FeIrN5 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-tvJ7FeIrN5 .text {
  padding: 0;
}
.cid-tvJ7FeIrN5 section {
  position: relative;
}
.cid-tvJ7FeIrN5 h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-tvJ7FeIrN5 .mbr-iconfont {
  padding: 0!important;
}
.cid-tvJ7FeIrN5 .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #133996;
}
.cid-tvJ7FeIrN5 .box {
  background-image: url("../../../assets/images/v9-1200x800.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvJ7FeIrN5 .icon-wrap {
  background-color: #149dcc !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-tvJ7FeIrN5 .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-tvJ7FeIrN5 .icon-wrap span {
  padding-left: 8px;
}
.cid-tvJ7FeIrN5 .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-tvJ7FeIrN5 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tvJ7FeIrN5 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tvJ7FeIrN5 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tvJ7FeIrN5 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tvJ7FeIrN5 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tvJ7FeIrN5 a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tvJ7FeIrN5 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-tvJ7FeIrN5 .box {
    height: 250px;
  }
  .cid-tvJ7FeIrN5 .row {
    padding: 1rem!important;
  }
}
.cid-tvJ2IOxQtj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvJ2IOxQtj .box1 {
  background-image: url("../../../assets/images/v6-600x400.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-tvJ2IOxQtj .box2 {
  background-image: url("../../../assets/images/v5-600x400.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-tvJ2IOxQtj .icon-wrap {
  background-color: #149dcc !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-tvJ2IOxQtj .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-tvJ2IOxQtj .icon-wrap span {
  padding-left: 8px;
}
.cid-tvJ2IOxQtj .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-tvJ2IOxQtj .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tvJ2IOxQtj .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tvJ2IOxQtj .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-tvJ2IOxQtj .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tvJ2IOxQtj a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tvJ2IOxQtj a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tvJ2IOxQtj {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tvJ2IOxQtj .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-tvJ2IOxQtj {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tvJ2IOxQtj .box1,
  .cid-tvJ2IOxQtj .box2 {
    height: 250px;
  }
}
.cid-tvJ6skmlxO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvJ6skmlxO .box1 {
  background-image: url("../../../assets/images/v7-600x400.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-tvJ6skmlxO .box2 {
  background-image: url("../../../assets/images/v8-600x400.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-tvJ6skmlxO .icon-wrap {
  background-color: #149dcc !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-tvJ6skmlxO .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-tvJ6skmlxO .icon-wrap span {
  padding-left: 8px;
}
.cid-tvJ6skmlxO .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-tvJ6skmlxO .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tvJ6skmlxO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tvJ6skmlxO .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-tvJ6skmlxO .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tvJ6skmlxO a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tvJ6skmlxO a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tvJ6skmlxO {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tvJ6skmlxO .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-tvJ6skmlxO {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tvJ6skmlxO .box1,
  .cid-tvJ6skmlxO .box2 {
    height: 250px;
  }
}
.cid-t0ePhxB622 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0ePhxB622 .card .card-img {
  overflow: hidden;
}
.cid-t0ePhxB622 .card .card-img img {
  transition: all .5s;
}
.cid-t0ePhxB622 .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-t0ePhxB622 .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-t0ePhxB622 .card {
  height: 100%;
}
.cid-t0ePhxB622 .card .card-wrapper {
  height: 100%;
}
.cid-t0ePhxB622 .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-t0ePhxB622 .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-t0ePhxB622 .card .card-box .card-title {
  margin: 0;
}
.cid-t0ePhxB622 .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0ePhxB622 .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-t0ePhxB622 .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-t0ePhxB622 .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-t0ePhxB622 .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0ePhxB622 .card .card-footer .icons-list {
  margin: 0;
}
.cid-t0ePhxB622 .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-t0ePhxB622 .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-t0ePhxB622 .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-t0ePhxB622 .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-t0ePhxB622 .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-t0ePhxB622 .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-t0ePhxB622 .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t0ePhxB622 .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-t0eRVHxcpE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t0eRVHxcpE .mbr-text {
  color: #767676;
}
.cid-t0eRVHxcpE .card-subtitle {
  margin: 0;
}
.cid-t0eRVHxcpE .link {
  margin: 0;
  color: #53b143;
}
.cid-t0eRVHxcpE .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-t0eRVHxcpE .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-t0eRVHxcpE .icon-box {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.173);
}
.cid-t0eRVHxcpE .item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-t0eRVHxcpE .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-t0eRVHxcpE .date {
  margin: 0;
}
.cid-t0eRVHxcpE img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-t0eRVHxcpE .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-t0eRVHxcpE .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t0eRVHxcpE .card-img:hover:before {
  opacity: 0.4;
}
.cid-t0eRVHxcpE .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-t0eRVHxcpE .icon-box {
    flex-direction: column;
  }
  .cid-t0eRVHxcpE .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-t0eRVHxcpE .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t0eRVHxcpE .card {
    margin-bottom: 3rem;
  }
}
.cid-t0fUqIR62Y {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0jVWBNWoQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-t0jVWBNWoQ img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-t0jVWBNWoQ .row {
  justify-content: center;
}
.cid-t0jVWBNWoQ .mbr-text {
  color: #000000;
}
.cid-t0jVWBNWoQ .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-t0jVWBNWoQ .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-t0jVWBNWoQ .date {
  margin: 0;
  color: #cccccc;
}
.cid-t0jVWBNWoQ .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-t0jVWBNWoQ .icon-box {
    flex-direction: column;
  }
  .cid-t0jVWBNWoQ .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-t0jVWBNWoQ img {
    margin-bottom: 2rem;
  }
}
.cid-t0jVWBNWoQ H1 {
  color: #133996;
}
.cid-t0jVWBNWoQ H3 {
  color: #133996;
}
.cid-t0khX5Zbmw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t0khX5Zbmw .mbr-text {
  color: #767676;
}
.cid-t0khX5Zbmw .card-subtitle {
  margin: 0;
}
.cid-t0khX5Zbmw .link {
  margin: 0;
  color: #53b143;
}
.cid-t0khX5Zbmw .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-t0khX5Zbmw .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-t0khX5Zbmw .icon-box {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.173);
}
.cid-t0khX5Zbmw .item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-t0khX5Zbmw .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-t0khX5Zbmw .date {
  margin: 0;
}
.cid-t0khX5Zbmw img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-t0khX5Zbmw .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-t0khX5Zbmw .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t0khX5Zbmw .card-img:hover:before {
  opacity: 0.4;
}
.cid-t0khX5Zbmw .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-t0khX5Zbmw .icon-box {
    flex-direction: column;
  }
  .cid-t0khX5Zbmw .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-t0khX5Zbmw .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t0khX5Zbmw .card {
    margin-bottom: 3rem;
  }
}
.cid-t0khX5Zbmw .card-title,
.cid-t0khX5Zbmw .card-img {
  color: #133996;
}
.cid-tvJ9uJzaTE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJ9uJzaTE .mbr-text,
.cid-tvJ9uJzaTE .mbr-section-btn {
  color: #212529;
}
.cid-tvJ9uJzaTE .card-title,
.cid-tvJ9uJzaTE .card-box {
  color: #212529;
}
.cid-tvJ9uJzaTE .mbr-text,
.cid-tvJ9uJzaTE .link-wrap {
  color: #212529;
}
.cid-tvJ9dme8qI {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tvJ9dme8qI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tvJ9dme8qI textarea {
  min-height: 150px;
}
.cid-tvJ9dme8qI .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #4554c1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-tvJ9dme8qI .form-control,
.cid-tvJ9dme8qI .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-tvJ9dme8qI .form-control input::-webkit-input-placeholder,
.cid-tvJ9dme8qI .field-input input::-webkit-input-placeholder,
.cid-tvJ9dme8qI .form-control textarea::-webkit-input-placeholder,
.cid-tvJ9dme8qI .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tvJ9dme8qI .form-control input:-moz-placeholder,
.cid-tvJ9dme8qI .field-input input:-moz-placeholder,
.cid-tvJ9dme8qI .form-control textarea:-moz-placeholder,
.cid-tvJ9dme8qI .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-tvJ9dme8qI .form-control:hover,
.cid-tvJ9dme8qI .field-input:hover,
.cid-tvJ9dme8qI .form-control:focus,
.cid-tvJ9dme8qI .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tvJ9dme8qI .form-control:hover input::-webkit-input-placeholder,
.cid-tvJ9dme8qI .field-input:hover input::-webkit-input-placeholder,
.cid-tvJ9dme8qI .form-control:focus input::-webkit-input-placeholder,
.cid-tvJ9dme8qI .field-input:focus input::-webkit-input-placeholder,
.cid-tvJ9dme8qI .form-control:hover textarea::-webkit-input-placeholder,
.cid-tvJ9dme8qI .field-input:hover textarea::-webkit-input-placeholder,
.cid-tvJ9dme8qI .form-control:focus textarea::-webkit-input-placeholder,
.cid-tvJ9dme8qI .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tvJ9dme8qI .form-control:hover input:-moz-placeholder,
.cid-tvJ9dme8qI .field-input:hover input:-moz-placeholder,
.cid-tvJ9dme8qI .form-control:focus input:-moz-placeholder,
.cid-tvJ9dme8qI .field-input:focus input:-moz-placeholder,
.cid-tvJ9dme8qI .form-control:hover textarea:-moz-placeholder,
.cid-tvJ9dme8qI .field-input:hover textarea:-moz-placeholder,
.cid-tvJ9dme8qI .form-control:focus textarea:-moz-placeholder,
.cid-tvJ9dme8qI .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-tvJ9dme8qI .jq-number__spin:hover,
.cid-tvJ9dme8qI .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tvJ9dme8qI .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tvJ9dme8qI .jq-selectbox li,
.cid-tvJ9dme8qI .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tvJ9dme8qI .jq-selectbox li:hover,
.cid-tvJ9dme8qI .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tvJ9dme8qI .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tvJ9dme8qI .jq-number__spin.minus:hover:after,
.cid-tvJ9dme8qI .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tvJ9dme8qI .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tvJ9dme8qI .jq-number__spin.minus:after,
.cid-tvJ9dme8qI .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tvJ9dme8qI input::-webkit-clear-button {
  display: none;
}
.cid-tvJ9dme8qI input::-webkit-inner-spin-button {
  display: none;
}
.cid-tvJ9dme8qI input::-webkit-outer-spin-button {
  display: none;
}
.cid-tvJ9dme8qI input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0eV0hr43n .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0eV0hr43n .collapsed {
  flex-direction: row !important;
}
.cid-t0eV0hr43n .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0eV0hr43n .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0eV0hr43n .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0eV0hr43n .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0eV0hr43n .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0eV0hr43n .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0eV0hr43n .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0eV0hr43n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0eV0hr43n .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0eV0hr43n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0eV0hr43n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0eV0hr43n .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0eV0hr43n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0eV0hr43n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0eV0hr43n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0eV0hr43n .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0eV0hr43n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0eV0hr43n .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0eV0hr43n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0eV0hr43n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0eV0hr43n .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0eV0hr43n .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0eV0hr43n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0eV0hr43n .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0eV0hr43n .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0eV0hr43n .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0eV0hr43n .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0eV0hr43n .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0eV0hr43n .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0eV0hr43n .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0eV0hr43n .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0eV0hr43n .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0eV0hr43n .nav-item:focus,
.cid-t0eV0hr43n .nav-link:focus {
  outline: none;
}
.cid-t0eV0hr43n .text-white:hover,
.cid-t0eV0hr43n .text-white:active,
.cid-t0eV0hr43n .text-white:focus {
  color: white !important;
}
.cid-t0eV0hr43n .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0eV0hr43n .dropdown-item:hover {
  color: black !important;
}
.cid-t0eV0hr43n .dropdown-menu {
  background-color: white !important;
}
.cid-t0eV0hr43n .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0eV0hr43n .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0eV0hr43n .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0eV0hr43n .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0eV0hr43n .nav-item {
    position: relative;
  }
}
.cid-t0eV0hr43n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0eV0hr43n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0eV0hr43n .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0eV0hr43n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0eV0hr43n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0eV0hr43n .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0eV0hr43n .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0eV0hr43n .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0eV0hr43n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0eV0hr43n .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0eV0hr43n .dropdown-item.active,
.cid-t0eV0hr43n .dropdown-item:active {
  background-color: transparent;
}
.cid-t0eV0hr43n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0eV0hr43n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0eV0hr43n .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0eV0hr43n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0eV0hr43n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0eV0hr43n ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0eV0hr43n .navbar-buttons {
  text-align: center;
}
.cid-t0eV0hr43n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0eV0hr43n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0eV0hr43n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0eV0hr43n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0eV0hr43n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0eV0hr43n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0eV0hr43n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0eV0hr43n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0eV0hr43n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0eV0hr43n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0eV0hr43n .nav-link {
  font-weight: 600 !important;
}
.cid-t0eV0hr43n a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0eV0hr43n .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0eV0hr43n .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0eV0hr43n .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0eV0hr43n .navbar {
    height: 77px;
  }
  .cid-t0eV0hr43n .navbar.opened {
    height: auto;
  }
  .cid-t0eV0hr43n .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0eVonOViT {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0eVonOViT .mbr-text,
.cid-t0eVonOViT .ornament {
  color: #133996;
}
.cid-t0eVJV3MkE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tocgJ3uCU5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocgJ3uCU5 .card .card-img {
  overflow: hidden;
}
.cid-tocgJ3uCU5 .card .card-img img {
  transition: all .5s;
}
.cid-tocgJ3uCU5 .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tocgJ3uCU5 .underline .line {
  width: 2rem;
  height: 1px;
  background: #133996;
  display: inline-block;
}
.cid-tocgJ3uCU5 .card {
  height: 100%;
}
.cid-tocgJ3uCU5 .card .card-wrapper {
  height: 100%;
}
.cid-tocgJ3uCU5 .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tocgJ3uCU5 .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tocgJ3uCU5 .card .card-box .card-title {
  margin: 0;
}
.cid-tocgJ3uCU5 .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocgJ3uCU5 .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tocgJ3uCU5 .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tocgJ3uCU5 .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tocgJ3uCU5 .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocgJ3uCU5 .card .card-footer .icons-list {
  margin: 0;
}
.cid-tocgJ3uCU5 .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tocgJ3uCU5 .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tocgJ3uCU5 .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tocgJ3uCU5 .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tocgJ3uCU5 .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tocgJ3uCU5 .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tocgJ3uCU5 .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tocgJ3uCU5 .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-tocgJ3uCU5 .main-title {
  color: #133996;
}
.cid-tocgJ3uCU5 .main-subtitle,
.cid-tocgJ3uCU5 .underline {
  color: #465052;
}
.cid-tocgJB7dVN {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocgJB7dVN .card .card-img {
  overflow: hidden;
}
.cid-tocgJB7dVN .card .card-img img {
  transition: all .5s;
}
.cid-tocgJB7dVN .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tocgJB7dVN .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-tocgJB7dVN .card {
  height: 100%;
}
.cid-tocgJB7dVN .card .card-wrapper {
  height: 100%;
}
.cid-tocgJB7dVN .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tocgJB7dVN .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tocgJB7dVN .card .card-box .card-title {
  margin: 0;
}
.cid-tocgJB7dVN .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocgJB7dVN .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tocgJB7dVN .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tocgJB7dVN .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tocgJB7dVN .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocgJB7dVN .card .card-footer .icons-list {
  margin: 0;
}
.cid-tocgJB7dVN .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tocgJB7dVN .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tocgJB7dVN .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tocgJB7dVN .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tocgJB7dVN .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tocgJB7dVN .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tocgJB7dVN .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tocgJB7dVN .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fBdTn6hx .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fBdTn6hx .collapsed {
  flex-direction: row !important;
}
.cid-t0fBdTn6hx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fBdTn6hx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fBdTn6hx .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fBdTn6hx .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fBdTn6hx .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fBdTn6hx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fBdTn6hx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fBdTn6hx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fBdTn6hx .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fBdTn6hx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fBdTn6hx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fBdTn6hx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fBdTn6hx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fBdTn6hx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fBdTn6hx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fBdTn6hx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fBdTn6hx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fBdTn6hx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fBdTn6hx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fBdTn6hx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fBdTn6hx .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fBdTn6hx .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fBdTn6hx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fBdTn6hx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fBdTn6hx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fBdTn6hx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fBdTn6hx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fBdTn6hx .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fBdTn6hx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fBdTn6hx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fBdTn6hx .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fBdTn6hx .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fBdTn6hx .nav-item:focus,
.cid-t0fBdTn6hx .nav-link:focus {
  outline: none;
}
.cid-t0fBdTn6hx .text-white:hover,
.cid-t0fBdTn6hx .text-white:active,
.cid-t0fBdTn6hx .text-white:focus {
  color: white !important;
}
.cid-t0fBdTn6hx .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fBdTn6hx .dropdown-item:hover {
  color: black !important;
}
.cid-t0fBdTn6hx .dropdown-menu {
  background-color: white !important;
}
.cid-t0fBdTn6hx .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fBdTn6hx .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fBdTn6hx .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fBdTn6hx .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fBdTn6hx .nav-item {
    position: relative;
  }
}
.cid-t0fBdTn6hx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fBdTn6hx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fBdTn6hx .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fBdTn6hx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fBdTn6hx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fBdTn6hx .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fBdTn6hx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fBdTn6hx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fBdTn6hx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fBdTn6hx .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fBdTn6hx .dropdown-item.active,
.cid-t0fBdTn6hx .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fBdTn6hx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fBdTn6hx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fBdTn6hx .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fBdTn6hx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fBdTn6hx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fBdTn6hx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fBdTn6hx .navbar-buttons {
  text-align: center;
}
.cid-t0fBdTn6hx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fBdTn6hx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fBdTn6hx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fBdTn6hx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fBdTn6hx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fBdTn6hx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fBdTn6hx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fBdTn6hx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fBdTn6hx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fBdTn6hx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fBdTn6hx .nav-link {
  font-weight: 600 !important;
}
.cid-t0fBdTn6hx a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fBdTn6hx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fBdTn6hx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fBdTn6hx .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fBdTn6hx .navbar {
    height: 77px;
  }
  .cid-t0fBdTn6hx .navbar.opened {
    height: auto;
  }
  .cid-t0fBdTn6hx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fBygZMbM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0fBygZMbM .mbr-text {
  position: relative;
  text-align: left;
}
.cid-t0fBygZMbM .mbr-text:before {
  color: #333333;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-t0fBygZMbM img {
  object-fit: contain;
}
.cid-t0fBygZMbM .mbr-text:after {
  color: #333333;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-t0fBygZMbM .mbr-text:after,
  .cid-t0fBygZMbM .mbr-text:before {
    display: none;
  }
}
.cid-t0kpYpvNHS {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocdvHvmvt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tocdvHvmvt img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-tocdvHvmvt .row {
  justify-content: center;
}
.cid-tocdvHvmvt .mbr-text {
  color: #000000;
}
.cid-tocdvHvmvt .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-tocdvHvmvt .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-tocdvHvmvt .date {
  margin: 0;
  color: #cccccc;
}
.cid-tocdvHvmvt .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-tocdvHvmvt .icon-box {
    flex-direction: column;
  }
  .cid-tocdvHvmvt .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-tocdvHvmvt img {
    margin-bottom: 2rem;
  }
}
.cid-tocdvHvmvt H1 {
  color: #133996;
}
.cid-tocdvHvmvt H3 {
  color: #133996;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fDgVJ5AU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fDgVJ5AU .collapsed {
  flex-direction: row !important;
}
.cid-t0fDgVJ5AU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fDgVJ5AU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fDgVJ5AU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fDgVJ5AU .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fDgVJ5AU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fDgVJ5AU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fDgVJ5AU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fDgVJ5AU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fDgVJ5AU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fDgVJ5AU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fDgVJ5AU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fDgVJ5AU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fDgVJ5AU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fDgVJ5AU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fDgVJ5AU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fDgVJ5AU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fDgVJ5AU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fDgVJ5AU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fDgVJ5AU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fDgVJ5AU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fDgVJ5AU .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fDgVJ5AU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fDgVJ5AU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fDgVJ5AU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fDgVJ5AU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fDgVJ5AU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fDgVJ5AU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fDgVJ5AU .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fDgVJ5AU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fDgVJ5AU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fDgVJ5AU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fDgVJ5AU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fDgVJ5AU .nav-item:focus,
.cid-t0fDgVJ5AU .nav-link:focus {
  outline: none;
}
.cid-t0fDgVJ5AU .text-white:hover,
.cid-t0fDgVJ5AU .text-white:active,
.cid-t0fDgVJ5AU .text-white:focus {
  color: white !important;
}
.cid-t0fDgVJ5AU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fDgVJ5AU .dropdown-item:hover {
  color: black !important;
}
.cid-t0fDgVJ5AU .dropdown-menu {
  background-color: white !important;
}
.cid-t0fDgVJ5AU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fDgVJ5AU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fDgVJ5AU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fDgVJ5AU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fDgVJ5AU .nav-item {
    position: relative;
  }
}
.cid-t0fDgVJ5AU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fDgVJ5AU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fDgVJ5AU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fDgVJ5AU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fDgVJ5AU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fDgVJ5AU .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fDgVJ5AU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fDgVJ5AU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fDgVJ5AU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fDgVJ5AU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fDgVJ5AU .dropdown-item.active,
.cid-t0fDgVJ5AU .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fDgVJ5AU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fDgVJ5AU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fDgVJ5AU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fDgVJ5AU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fDgVJ5AU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fDgVJ5AU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fDgVJ5AU .navbar-buttons {
  text-align: center;
}
.cid-t0fDgVJ5AU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fDgVJ5AU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fDgVJ5AU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fDgVJ5AU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fDgVJ5AU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fDgVJ5AU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fDgVJ5AU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fDgVJ5AU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fDgVJ5AU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fDgVJ5AU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fDgVJ5AU .nav-link {
  font-weight: 600 !important;
}
.cid-t0fDgVJ5AU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fDgVJ5AU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fDgVJ5AU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fDgVJ5AU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fDgVJ5AU .navbar {
    height: 77px;
  }
  .cid-t0fDgVJ5AU .navbar.opened {
    height: auto;
  }
  .cid-t0fDgVJ5AU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fDgWiMWo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0fDgWiMWo .mbr-text {
  position: relative;
  text-align: left;
}
.cid-t0fDgWiMWo .mbr-text:before {
  color: #333333;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-t0fDgWiMWo img {
  object-fit: contain;
}
.cid-t0fDgWiMWo .mbr-text:after {
  color: #333333;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-t0fDgWiMWo .mbr-text:after,
  .cid-t0fDgWiMWo .mbr-text:before {
    display: none;
  }
}
.cid-t0kq6g0YLo {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocgDlkF9Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tocgDlkF9Z img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-tocgDlkF9Z .row {
  justify-content: center;
}
.cid-tocgDlkF9Z .mbr-text {
  color: #000000;
}
.cid-tocgDlkF9Z .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-tocgDlkF9Z .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-tocgDlkF9Z .date {
  margin: 0;
  color: #cccccc;
}
.cid-tocgDlkF9Z .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-tocgDlkF9Z .icon-box {
    flex-direction: column;
  }
  .cid-tocgDlkF9Z .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-tocgDlkF9Z img {
    margin-bottom: 2rem;
  }
}
.cid-tocgDlkF9Z H1 {
  color: #133996;
}
.cid-tocgDlkF9Z H3 {
  color: #133996;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fG4dTvms .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fG4dTvms .collapsed {
  flex-direction: row !important;
}
.cid-t0fG4dTvms .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fG4dTvms .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fG4dTvms .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fG4dTvms .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fG4dTvms .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fG4dTvms .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fG4dTvms .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fG4dTvms .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fG4dTvms .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fG4dTvms .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fG4dTvms .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fG4dTvms .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fG4dTvms .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fG4dTvms .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fG4dTvms .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fG4dTvms .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fG4dTvms .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fG4dTvms .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fG4dTvms .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fG4dTvms .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fG4dTvms .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fG4dTvms .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fG4dTvms .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fG4dTvms .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fG4dTvms .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fG4dTvms .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fG4dTvms .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fG4dTvms .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fG4dTvms .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fG4dTvms .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fG4dTvms .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fG4dTvms .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fG4dTvms .nav-item:focus,
.cid-t0fG4dTvms .nav-link:focus {
  outline: none;
}
.cid-t0fG4dTvms .text-white:hover,
.cid-t0fG4dTvms .text-white:active,
.cid-t0fG4dTvms .text-white:focus {
  color: white !important;
}
.cid-t0fG4dTvms .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fG4dTvms .dropdown-item:hover {
  color: black !important;
}
.cid-t0fG4dTvms .dropdown-menu {
  background-color: white !important;
}
.cid-t0fG4dTvms .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fG4dTvms .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fG4dTvms .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fG4dTvms .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fG4dTvms .nav-item {
    position: relative;
  }
}
.cid-t0fG4dTvms .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fG4dTvms .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fG4dTvms .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fG4dTvms .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fG4dTvms .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fG4dTvms .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fG4dTvms .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fG4dTvms .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fG4dTvms .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fG4dTvms .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fG4dTvms .dropdown-item.active,
.cid-t0fG4dTvms .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fG4dTvms .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fG4dTvms .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fG4dTvms .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fG4dTvms .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fG4dTvms .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fG4dTvms ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fG4dTvms .navbar-buttons {
  text-align: center;
}
.cid-t0fG4dTvms button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fG4dTvms button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fG4dTvms button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fG4dTvms button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fG4dTvms button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fG4dTvms button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fG4dTvms nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fG4dTvms nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fG4dTvms nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fG4dTvms nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fG4dTvms .nav-link {
  font-weight: 600 !important;
}
.cid-t0fG4dTvms a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fG4dTvms .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fG4dTvms .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fG4dTvms .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fG4dTvms .navbar {
    height: 77px;
  }
  .cid-t0fG4dTvms .navbar.opened {
    height: auto;
  }
  .cid-t0fG4dTvms .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fG4etxHt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fG4etxHt .mbr-text,
.cid-t0fG4etxHt .ornament {
  color: #133996;
}
.cid-t0fG4eKySs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fG9xjE74 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fG9xjE74 .collapsed {
  flex-direction: row !important;
}
.cid-t0fG9xjE74 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fG9xjE74 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fG9xjE74 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fG9xjE74 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fG9xjE74 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fG9xjE74 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fG9xjE74 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fG9xjE74 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fG9xjE74 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fG9xjE74 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fG9xjE74 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fG9xjE74 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fG9xjE74 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fG9xjE74 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fG9xjE74 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fG9xjE74 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fG9xjE74 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fG9xjE74 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fG9xjE74 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fG9xjE74 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fG9xjE74 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fG9xjE74 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fG9xjE74 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fG9xjE74 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fG9xjE74 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fG9xjE74 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fG9xjE74 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fG9xjE74 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fG9xjE74 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fG9xjE74 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fG9xjE74 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fG9xjE74 .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fG9xjE74 .nav-item:focus,
.cid-t0fG9xjE74 .nav-link:focus {
  outline: none;
}
.cid-t0fG9xjE74 .text-white:hover,
.cid-t0fG9xjE74 .text-white:active,
.cid-t0fG9xjE74 .text-white:focus {
  color: white !important;
}
.cid-t0fG9xjE74 .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fG9xjE74 .dropdown-item:hover {
  color: black !important;
}
.cid-t0fG9xjE74 .dropdown-menu {
  background-color: white !important;
}
.cid-t0fG9xjE74 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fG9xjE74 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fG9xjE74 .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fG9xjE74 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fG9xjE74 .nav-item {
    position: relative;
  }
}
.cid-t0fG9xjE74 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fG9xjE74 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fG9xjE74 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fG9xjE74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fG9xjE74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fG9xjE74 .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fG9xjE74 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fG9xjE74 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fG9xjE74 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fG9xjE74 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fG9xjE74 .dropdown-item.active,
.cid-t0fG9xjE74 .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fG9xjE74 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fG9xjE74 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fG9xjE74 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fG9xjE74 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fG9xjE74 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fG9xjE74 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fG9xjE74 .navbar-buttons {
  text-align: center;
}
.cid-t0fG9xjE74 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fG9xjE74 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fG9xjE74 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fG9xjE74 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fG9xjE74 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fG9xjE74 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fG9xjE74 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fG9xjE74 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fG9xjE74 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fG9xjE74 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fG9xjE74 .nav-link {
  font-weight: 600 !important;
}
.cid-t0fG9xjE74 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fG9xjE74 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fG9xjE74 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fG9xjE74 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fG9xjE74 .navbar {
    height: 77px;
  }
  .cid-t0fG9xjE74 .navbar.opened {
    height: auto;
  }
  .cid-t0fG9xjE74 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fG9xMS98 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fG9xMS98 .mbr-text,
.cid-t0fG9xMS98 .ornament {
  color: #133996;
}
.cid-t0fG9y2QrF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fGepq2qr .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fGepq2qr .collapsed {
  flex-direction: row !important;
}
.cid-t0fGepq2qr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fGepq2qr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fGepq2qr .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fGepq2qr .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fGepq2qr .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fGepq2qr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fGepq2qr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fGepq2qr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fGepq2qr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fGepq2qr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fGepq2qr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fGepq2qr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fGepq2qr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fGepq2qr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fGepq2qr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fGepq2qr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fGepq2qr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fGepq2qr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fGepq2qr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fGepq2qr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fGepq2qr .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fGepq2qr .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fGepq2qr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fGepq2qr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fGepq2qr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fGepq2qr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fGepq2qr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fGepq2qr .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fGepq2qr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fGepq2qr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fGepq2qr .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGepq2qr .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fGepq2qr .nav-item:focus,
.cid-t0fGepq2qr .nav-link:focus {
  outline: none;
}
.cid-t0fGepq2qr .text-white:hover,
.cid-t0fGepq2qr .text-white:active,
.cid-t0fGepq2qr .text-white:focus {
  color: white !important;
}
.cid-t0fGepq2qr .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fGepq2qr .dropdown-item:hover {
  color: black !important;
}
.cid-t0fGepq2qr .dropdown-menu {
  background-color: white !important;
}
.cid-t0fGepq2qr .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fGepq2qr .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGepq2qr .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fGepq2qr .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fGepq2qr .nav-item {
    position: relative;
  }
}
.cid-t0fGepq2qr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGepq2qr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fGepq2qr .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fGepq2qr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fGepq2qr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGepq2qr .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fGepq2qr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fGepq2qr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fGepq2qr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fGepq2qr .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fGepq2qr .dropdown-item.active,
.cid-t0fGepq2qr .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fGepq2qr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fGepq2qr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fGepq2qr .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fGepq2qr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fGepq2qr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fGepq2qr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fGepq2qr .navbar-buttons {
  text-align: center;
}
.cid-t0fGepq2qr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fGepq2qr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fGepq2qr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fGepq2qr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGepq2qr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGepq2qr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fGepq2qr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGepq2qr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fGepq2qr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fGepq2qr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGepq2qr .nav-link {
  font-weight: 600 !important;
}
.cid-t0fGepq2qr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fGepq2qr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fGepq2qr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fGepq2qr .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fGepq2qr .navbar {
    height: 77px;
  }
  .cid-t0fGepq2qr .navbar.opened {
    height: auto;
  }
  .cid-t0fGepq2qr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fGepQDPN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fGepQDPN .mbr-text,
.cid-t0fGepQDPN .ornament {
  color: #133996;
}
.cid-t0fGeq6Z8T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fGgRmCbs .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fGgRmCbs .collapsed {
  flex-direction: row !important;
}
.cid-t0fGgRmCbs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fGgRmCbs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fGgRmCbs .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fGgRmCbs .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fGgRmCbs .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fGgRmCbs .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fGgRmCbs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fGgRmCbs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fGgRmCbs .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fGgRmCbs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fGgRmCbs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fGgRmCbs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fGgRmCbs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fGgRmCbs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fGgRmCbs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fGgRmCbs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fGgRmCbs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fGgRmCbs .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fGgRmCbs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fGgRmCbs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fGgRmCbs .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fGgRmCbs .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fGgRmCbs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fGgRmCbs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fGgRmCbs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fGgRmCbs .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fGgRmCbs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fGgRmCbs .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fGgRmCbs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fGgRmCbs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fGgRmCbs .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGgRmCbs .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fGgRmCbs .nav-item:focus,
.cid-t0fGgRmCbs .nav-link:focus {
  outline: none;
}
.cid-t0fGgRmCbs .text-white:hover,
.cid-t0fGgRmCbs .text-white:active,
.cid-t0fGgRmCbs .text-white:focus {
  color: white !important;
}
.cid-t0fGgRmCbs .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fGgRmCbs .dropdown-item:hover {
  color: black !important;
}
.cid-t0fGgRmCbs .dropdown-menu {
  background-color: white !important;
}
.cid-t0fGgRmCbs .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fGgRmCbs .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGgRmCbs .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fGgRmCbs .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fGgRmCbs .nav-item {
    position: relative;
  }
}
.cid-t0fGgRmCbs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGgRmCbs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fGgRmCbs .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fGgRmCbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fGgRmCbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGgRmCbs .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fGgRmCbs .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fGgRmCbs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fGgRmCbs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fGgRmCbs .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fGgRmCbs .dropdown-item.active,
.cid-t0fGgRmCbs .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fGgRmCbs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fGgRmCbs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fGgRmCbs .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fGgRmCbs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fGgRmCbs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fGgRmCbs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fGgRmCbs .navbar-buttons {
  text-align: center;
}
.cid-t0fGgRmCbs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fGgRmCbs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fGgRmCbs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fGgRmCbs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGgRmCbs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGgRmCbs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fGgRmCbs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGgRmCbs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fGgRmCbs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fGgRmCbs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGgRmCbs .nav-link {
  font-weight: 600 !important;
}
.cid-t0fGgRmCbs a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fGgRmCbs .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fGgRmCbs .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fGgRmCbs .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fGgRmCbs .navbar {
    height: 77px;
  }
  .cid-t0fGgRmCbs .navbar.opened {
    height: auto;
  }
  .cid-t0fGgRmCbs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fGgROKWZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fGgROKWZ .mbr-text,
.cid-t0fGgROKWZ .ornament {
  color: #133996;
}
.cid-t0fGgS5IYB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fGmO3NFz .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fGmO3NFz .collapsed {
  flex-direction: row !important;
}
.cid-t0fGmO3NFz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fGmO3NFz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fGmO3NFz .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fGmO3NFz .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fGmO3NFz .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fGmO3NFz .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fGmO3NFz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fGmO3NFz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fGmO3NFz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fGmO3NFz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fGmO3NFz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fGmO3NFz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fGmO3NFz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fGmO3NFz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fGmO3NFz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fGmO3NFz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fGmO3NFz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fGmO3NFz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fGmO3NFz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fGmO3NFz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fGmO3NFz .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fGmO3NFz .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fGmO3NFz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fGmO3NFz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fGmO3NFz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fGmO3NFz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fGmO3NFz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fGmO3NFz .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fGmO3NFz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fGmO3NFz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fGmO3NFz .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGmO3NFz .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fGmO3NFz .nav-item:focus,
.cid-t0fGmO3NFz .nav-link:focus {
  outline: none;
}
.cid-t0fGmO3NFz .text-white:hover,
.cid-t0fGmO3NFz .text-white:active,
.cid-t0fGmO3NFz .text-white:focus {
  color: white !important;
}
.cid-t0fGmO3NFz .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fGmO3NFz .dropdown-item:hover {
  color: black !important;
}
.cid-t0fGmO3NFz .dropdown-menu {
  background-color: white !important;
}
.cid-t0fGmO3NFz .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fGmO3NFz .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGmO3NFz .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fGmO3NFz .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fGmO3NFz .nav-item {
    position: relative;
  }
}
.cid-t0fGmO3NFz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGmO3NFz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fGmO3NFz .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fGmO3NFz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fGmO3NFz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGmO3NFz .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fGmO3NFz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fGmO3NFz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fGmO3NFz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fGmO3NFz .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fGmO3NFz .dropdown-item.active,
.cid-t0fGmO3NFz .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fGmO3NFz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fGmO3NFz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fGmO3NFz .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fGmO3NFz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fGmO3NFz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fGmO3NFz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fGmO3NFz .navbar-buttons {
  text-align: center;
}
.cid-t0fGmO3NFz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fGmO3NFz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fGmO3NFz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fGmO3NFz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGmO3NFz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGmO3NFz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fGmO3NFz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGmO3NFz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fGmO3NFz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fGmO3NFz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGmO3NFz .nav-link {
  font-weight: 600 !important;
}
.cid-t0fGmO3NFz a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fGmO3NFz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fGmO3NFz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fGmO3NFz .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fGmO3NFz .navbar {
    height: 77px;
  }
  .cid-t0fGmO3NFz .navbar.opened {
    height: auto;
  }
  .cid-t0fGmO3NFz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fGmOuchH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fGmOuchH .mbr-text,
.cid-t0fGmOuchH .ornament {
  color: #133996;
}
.cid-t0fGmOLoDj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fGMjyeNH .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fGMjyeNH .collapsed {
  flex-direction: row !important;
}
.cid-t0fGMjyeNH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fGMjyeNH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fGMjyeNH .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fGMjyeNH .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fGMjyeNH .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fGMjyeNH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fGMjyeNH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fGMjyeNH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fGMjyeNH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fGMjyeNH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fGMjyeNH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fGMjyeNH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fGMjyeNH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fGMjyeNH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fGMjyeNH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fGMjyeNH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fGMjyeNH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fGMjyeNH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fGMjyeNH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fGMjyeNH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fGMjyeNH .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fGMjyeNH .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fGMjyeNH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fGMjyeNH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fGMjyeNH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fGMjyeNH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fGMjyeNH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fGMjyeNH .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fGMjyeNH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fGMjyeNH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fGMjyeNH .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGMjyeNH .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fGMjyeNH .nav-item:focus,
.cid-t0fGMjyeNH .nav-link:focus {
  outline: none;
}
.cid-t0fGMjyeNH .text-white:hover,
.cid-t0fGMjyeNH .text-white:active,
.cid-t0fGMjyeNH .text-white:focus {
  color: white !important;
}
.cid-t0fGMjyeNH .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fGMjyeNH .dropdown-item:hover {
  color: black !important;
}
.cid-t0fGMjyeNH .dropdown-menu {
  background-color: white !important;
}
.cid-t0fGMjyeNH .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fGMjyeNH .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fGMjyeNH .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fGMjyeNH .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fGMjyeNH .nav-item {
    position: relative;
  }
}
.cid-t0fGMjyeNH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGMjyeNH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fGMjyeNH .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fGMjyeNH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fGMjyeNH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fGMjyeNH .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fGMjyeNH .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fGMjyeNH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fGMjyeNH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fGMjyeNH .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fGMjyeNH .dropdown-item.active,
.cid-t0fGMjyeNH .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fGMjyeNH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fGMjyeNH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fGMjyeNH .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fGMjyeNH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fGMjyeNH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fGMjyeNH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fGMjyeNH .navbar-buttons {
  text-align: center;
}
.cid-t0fGMjyeNH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fGMjyeNH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fGMjyeNH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fGMjyeNH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGMjyeNH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fGMjyeNH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fGMjyeNH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGMjyeNH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fGMjyeNH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fGMjyeNH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fGMjyeNH .nav-link {
  font-weight: 600 !important;
}
.cid-t0fGMjyeNH a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fGMjyeNH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fGMjyeNH .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fGMjyeNH .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fGMjyeNH .navbar {
    height: 77px;
  }
  .cid-t0fGMjyeNH .navbar.opened {
    height: auto;
  }
  .cid-t0fGMjyeNH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fHqCDbAb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fHqCDbAb .mbr-text,
.cid-t0fHqCDbAb .ornament {
  color: #133996;
}
.cid-t0fHkucwBE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0g4lyObh3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t0g4lyObh3 .mbr-text {
  color: #767676;
}
.cid-t0g4lyObh3 .card-subtitle {
  margin: 0;
}
.cid-t0g4lyObh3 .link {
  margin: 0;
}
.cid-t0g4lyObh3 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-t0g4lyObh3 .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-t0g4lyObh3 .icon-box {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.173);
}
.cid-t0g4lyObh3 .item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-t0g4lyObh3 .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-t0g4lyObh3 .date {
  margin: 0;
}
.cid-t0g4lyObh3 img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-t0g4lyObh3 .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-t0g4lyObh3 .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t0g4lyObh3 .card-img:hover:before {
  opacity: 0.4;
}
.cid-t0g4lyObh3 .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-t0g4lyObh3 .icon-box {
    flex-direction: column;
  }
  .cid-t0g4lyObh3 .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-t0g4lyObh3 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t0g4lyObh3 .card {
    margin-bottom: 3rem;
  }
}
.cid-t0g2T7FZGN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t0g2T7FZGN .mbr-text {
  color: #767676;
}
.cid-t0g2T7FZGN .card-subtitle {
  margin: 0;
}
.cid-t0g2T7FZGN .link {
  margin: 0;
}
.cid-t0g2T7FZGN .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-t0g2T7FZGN .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-t0g2T7FZGN .icon-box {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.173);
}
.cid-t0g2T7FZGN .item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-t0g2T7FZGN .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-t0g2T7FZGN .date {
  margin: 0;
}
.cid-t0g2T7FZGN img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-t0g2T7FZGN .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-t0g2T7FZGN .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t0g2T7FZGN .card-img:hover:before {
  opacity: 0.4;
}
.cid-t0g2T7FZGN .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-t0g2T7FZGN .icon-box {
    flex-direction: column;
  }
  .cid-t0g2T7FZGN .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-t0g2T7FZGN .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t0g2T7FZGN .card {
    margin-bottom: 3rem;
  }
}
.cid-tocbOyIPxB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tocbOyIPxB img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-tocbOyIPxB .row {
  justify-content: center;
}
.cid-tocbOyIPxB .mbr-text {
  color: #000000;
}
.cid-tocbOyIPxB .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-tocbOyIPxB .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-tocbOyIPxB .date {
  margin: 0;
  color: #cccccc;
}
.cid-tocbOyIPxB .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-tocbOyIPxB .icon-box {
    flex-direction: column;
  }
  .cid-tocbOyIPxB .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-tocbOyIPxB img {
    margin-bottom: 2rem;
  }
}
.cid-tocbOyIPxB H1 {
  color: #133996;
}
.cid-tocbOyIPxB H3 {
  color: #133996;
}
.cid-tocbXj9pHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocbXj9pHV .card .card-img {
  overflow: hidden;
}
.cid-tocbXj9pHV .card .card-img img {
  transition: all .5s;
}
.cid-tocbXj9pHV .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tocbXj9pHV .underline .line {
  width: 2rem;
  height: 1px;
  background: #133996;
  display: inline-block;
}
.cid-tocbXj9pHV .card {
  height: 100%;
}
.cid-tocbXj9pHV .card .card-wrapper {
  height: 100%;
}
.cid-tocbXj9pHV .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tocbXj9pHV .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tocbXj9pHV .card .card-box .card-title {
  margin: 0;
}
.cid-tocbXj9pHV .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocbXj9pHV .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tocbXj9pHV .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tocbXj9pHV .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tocbXj9pHV .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocbXj9pHV .card .card-footer .icons-list {
  margin: 0;
}
.cid-tocbXj9pHV .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tocbXj9pHV .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tocbXj9pHV .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tocbXj9pHV .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tocbXj9pHV .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tocbXj9pHV .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tocbXj9pHV .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tocbXj9pHV .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-tocbXj9pHV .main-title {
  color: #133996;
}
.cid-tocbXj9pHV .main-subtitle,
.cid-tocbXj9pHV .underline {
  color: #465052;
}
.cid-tocbXNHLDr {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocbXNHLDr .card .card-img {
  overflow: hidden;
}
.cid-tocbXNHLDr .card .card-img img {
  transition: all .5s;
}
.cid-tocbXNHLDr .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tocbXNHLDr .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-tocbXNHLDr .card {
  height: 100%;
}
.cid-tocbXNHLDr .card .card-wrapper {
  height: 100%;
}
.cid-tocbXNHLDr .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tocbXNHLDr .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tocbXNHLDr .card .card-box .card-title {
  margin: 0;
}
.cid-tocbXNHLDr .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocbXNHLDr .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tocbXNHLDr .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tocbXNHLDr .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tocbXNHLDr .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocbXNHLDr .card .card-footer .icons-list {
  margin: 0;
}
.cid-tocbXNHLDr .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tocbXNHLDr .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tocbXNHLDr .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tocbXNHLDr .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tocbXNHLDr .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tocbXNHLDr .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tocbXNHLDr .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tocbXNHLDr .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fJxKuRDm .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fJxKuRDm .collapsed {
  flex-direction: row !important;
}
.cid-t0fJxKuRDm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fJxKuRDm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fJxKuRDm .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fJxKuRDm .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fJxKuRDm .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fJxKuRDm .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fJxKuRDm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fJxKuRDm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fJxKuRDm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fJxKuRDm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fJxKuRDm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fJxKuRDm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fJxKuRDm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fJxKuRDm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fJxKuRDm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fJxKuRDm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fJxKuRDm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fJxKuRDm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fJxKuRDm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fJxKuRDm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fJxKuRDm .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fJxKuRDm .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fJxKuRDm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fJxKuRDm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fJxKuRDm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fJxKuRDm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fJxKuRDm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fJxKuRDm .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fJxKuRDm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fJxKuRDm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fJxKuRDm .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fJxKuRDm .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fJxKuRDm .nav-item:focus,
.cid-t0fJxKuRDm .nav-link:focus {
  outline: none;
}
.cid-t0fJxKuRDm .text-white:hover,
.cid-t0fJxKuRDm .text-white:active,
.cid-t0fJxKuRDm .text-white:focus {
  color: white !important;
}
.cid-t0fJxKuRDm .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fJxKuRDm .dropdown-item:hover {
  color: black !important;
}
.cid-t0fJxKuRDm .dropdown-menu {
  background-color: white !important;
}
.cid-t0fJxKuRDm .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fJxKuRDm .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fJxKuRDm .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fJxKuRDm .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fJxKuRDm .nav-item {
    position: relative;
  }
}
.cid-t0fJxKuRDm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fJxKuRDm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fJxKuRDm .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fJxKuRDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fJxKuRDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fJxKuRDm .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fJxKuRDm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fJxKuRDm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fJxKuRDm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fJxKuRDm .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fJxKuRDm .dropdown-item.active,
.cid-t0fJxKuRDm .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fJxKuRDm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fJxKuRDm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fJxKuRDm .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fJxKuRDm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fJxKuRDm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fJxKuRDm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fJxKuRDm .navbar-buttons {
  text-align: center;
}
.cid-t0fJxKuRDm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fJxKuRDm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fJxKuRDm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fJxKuRDm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fJxKuRDm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fJxKuRDm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fJxKuRDm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fJxKuRDm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fJxKuRDm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fJxKuRDm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fJxKuRDm .nav-link {
  font-weight: 600 !important;
}
.cid-t0fJxKuRDm a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fJxKuRDm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fJxKuRDm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fJxKuRDm .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fJxKuRDm .navbar {
    height: 77px;
  }
  .cid-t0fJxKuRDm .navbar.opened {
    height: auto;
  }
  .cid-t0fJxKuRDm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fJxKYDiv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fJxKYDiv .mbr-text {
  position: relative;
  text-align: left;
}
.cid-t0fJxKYDiv .mbr-text:before {
  color: #333333;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-t0fJxKYDiv img {
  object-fit: contain;
}
.cid-t0fJxKYDiv .mbr-text:after {
  color: #333333;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-t0fJxKYDiv .mbr-text:after,
  .cid-t0fJxKYDiv .mbr-text:before {
    display: none;
  }
}
.cid-t0fKoT2yY3 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t0fKoT2yY3 .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-t0fKoT2yY3 .card-wrap {
  background-color: #c1c1c1;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-t0fKoT2yY3 .card-wrap:hover h4,
.cid-t0fKoT2yY3 .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-t0fKoT2yY3 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-t0fKoT2yY3 h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-t0fKoT2yY3 img {
  width: 100%;
}
.cid-t0fKoT2yY3 h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-t0fKoT2yY3 h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-t0fKoT2yY3 .card-title1,
.cid-t0fKoT2yY3 .title-wrap1 {
  color: #ffffff;
}
.cid-t0fKoT2yY3 .card-title,
.cid-t0fKoT2yY3 .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-t0fKoT2yY3 .mdpb {
    padding-bottom: 2rem;
  }
  .cid-t0fKoT2yY3 .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-t0fKoT2yY3 H3 {
  color: #ffffff;
}
.cid-t0fKOgpcqp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0fKOgpcqp .mbr-text {
  position: relative;
  text-align: left;
}
.cid-t0fKOgpcqp .mbr-text:before {
  color: #333333;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-t0fKOgpcqp img {
  object-fit: contain;
}
.cid-t0fKOgpcqp .mbr-text:after {
  color: #333333;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-t0fKOgpcqp .mbr-text:after,
  .cid-t0fKOgpcqp .mbr-text:before {
    display: none;
  }
}
.cid-t0fL14S8H7 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0fL14S8H7 .mbr-text {
  position: relative;
  text-align: left;
}
.cid-t0fL14S8H7 .mbr-text:before {
  color: #333333;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-t0fL14S8H7 img {
  object-fit: contain;
}
.cid-t0fL14S8H7 .mbr-text:after {
  color: #333333;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-t0fL14S8H7 .mbr-text:after,
  .cid-t0fL14S8H7 .mbr-text:before {
    display: none;
  }
}
.cid-t0kq4lO2rI {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocgzzMCgv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tocgzzMCgv img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-tocgzzMCgv .row {
  justify-content: center;
}
.cid-tocgzzMCgv .mbr-text {
  color: #000000;
}
.cid-tocgzzMCgv .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-tocgzzMCgv .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-tocgzzMCgv .date {
  margin: 0;
  color: #cccccc;
}
.cid-tocgzzMCgv .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-tocgzzMCgv .icon-box {
    flex-direction: column;
  }
  .cid-tocgzzMCgv .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-tocgzzMCgv img {
    margin-bottom: 2rem;
  }
}
.cid-tocgzzMCgv H1 {
  color: #133996;
}
.cid-tocgzzMCgv H3 {
  color: #133996;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fRoMNRjs .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fRoMNRjs .collapsed {
  flex-direction: row !important;
}
.cid-t0fRoMNRjs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fRoMNRjs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fRoMNRjs .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fRoMNRjs .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fRoMNRjs .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fRoMNRjs .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fRoMNRjs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fRoMNRjs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fRoMNRjs .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fRoMNRjs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fRoMNRjs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fRoMNRjs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fRoMNRjs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fRoMNRjs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fRoMNRjs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fRoMNRjs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fRoMNRjs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fRoMNRjs .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fRoMNRjs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fRoMNRjs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fRoMNRjs .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fRoMNRjs .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fRoMNRjs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fRoMNRjs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fRoMNRjs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fRoMNRjs .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fRoMNRjs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fRoMNRjs .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fRoMNRjs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fRoMNRjs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fRoMNRjs .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fRoMNRjs .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fRoMNRjs .nav-item:focus,
.cid-t0fRoMNRjs .nav-link:focus {
  outline: none;
}
.cid-t0fRoMNRjs .text-white:hover,
.cid-t0fRoMNRjs .text-white:active,
.cid-t0fRoMNRjs .text-white:focus {
  color: white !important;
}
.cid-t0fRoMNRjs .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fRoMNRjs .dropdown-item:hover {
  color: black !important;
}
.cid-t0fRoMNRjs .dropdown-menu {
  background-color: white !important;
}
.cid-t0fRoMNRjs .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fRoMNRjs .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fRoMNRjs .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fRoMNRjs .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fRoMNRjs .nav-item {
    position: relative;
  }
}
.cid-t0fRoMNRjs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fRoMNRjs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fRoMNRjs .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fRoMNRjs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fRoMNRjs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fRoMNRjs .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fRoMNRjs .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fRoMNRjs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fRoMNRjs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fRoMNRjs .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fRoMNRjs .dropdown-item.active,
.cid-t0fRoMNRjs .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fRoMNRjs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fRoMNRjs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fRoMNRjs .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fRoMNRjs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fRoMNRjs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fRoMNRjs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fRoMNRjs .navbar-buttons {
  text-align: center;
}
.cid-t0fRoMNRjs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fRoMNRjs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fRoMNRjs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fRoMNRjs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fRoMNRjs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fRoMNRjs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fRoMNRjs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fRoMNRjs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fRoMNRjs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fRoMNRjs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fRoMNRjs .nav-link {
  font-weight: 600 !important;
}
.cid-t0fRoMNRjs a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fRoMNRjs .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fRoMNRjs .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fRoMNRjs .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fRoMNRjs .navbar {
    height: 77px;
  }
  .cid-t0fRoMNRjs .navbar.opened {
    height: auto;
  }
  .cid-t0fRoMNRjs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fRoNwfmD {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0fRoNwfmD .mbr-text,
.cid-t0fRoNwfmD .ornament {
  color: #133996;
}
.cid-t0fRoNMHdc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0fSnvon1T {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t0fSnvon1T .mbr-section-subtitle {
  color: #767676;
}
.cid-t0fSnvon1T .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fSnvon1T .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-t0fSnvon1T .mbr-author-name {
  color: #149dcc;
  text-align: center;
}
.cid-t0fSnvon1T .mbr-testimonial .panel-item {
  transition: all 0.3s;
}
.cid-t0fSnvon1T .mbr-testimonial .panel-item:hover {
  transform: translateY(-1.5rem);
}
.cid-t0fSnvon1T .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
  position: relative;
}
.cid-t0fSnvon1T .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  max-width: 180px;
  max-height: 180px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-t0fSnvon1T .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-t0fSnvon1T .mbr-testimonial .card-footer {
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  transition: all 0.2s;
  transform: translateY(2rem);
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  border-radius: 0.25rem;
}
.cid-t0fSnvon1T .mbr-testimonial .card-footer:hover {
  transform: translateY(0rem);
  opacity: 1;
}
@media (max-width: 576px) {
  .cid-t0fSnvon1T .card-footer {
    transform: translateY(0rem) !important;
    opacity: 1!important;
  }
}
@media (max-width: 300px) {
  .cid-t0fSnvon1T .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-t0fSnvon1T .mbr-iconfont-social {
  font-size: 18px;
}
.cid-t0fSnvon1T .icon1 {
  color: #ff3366;
}
.cid-t0fSnvon1T .icon2 {
  color: #149dcc;
}
.cid-t0fSnvon1T .icon3 {
  color: #879a9f;
}
.cid-t0fSnvon1T .social-list a:focus {
  text-decoration: none;
}
.cid-tocdpD7YwS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tocdpD7YwS img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-tocdpD7YwS .row {
  justify-content: center;
}
.cid-tocdpD7YwS .mbr-text {
  color: #000000;
}
.cid-tocdpD7YwS .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-tocdpD7YwS .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-tocdpD7YwS .date {
  margin: 0;
  color: #cccccc;
}
.cid-tocdpD7YwS .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-tocdpD7YwS .icon-box {
    flex-direction: column;
  }
  .cid-tocdpD7YwS .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-tocdpD7YwS img {
    margin-bottom: 2rem;
  }
}
.cid-tocdpD7YwS H1 {
  color: #133996;
}
.cid-tocdpD7YwS H3 {
  color: #133996;
}
.cid-tocdnj41iv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocdnj41iv .card .card-img {
  overflow: hidden;
}
.cid-tocdnj41iv .card .card-img img {
  transition: all .5s;
}
.cid-tocdnj41iv .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tocdnj41iv .underline .line {
  width: 2rem;
  height: 1px;
  background: #133996;
  display: inline-block;
}
.cid-tocdnj41iv .card {
  height: 100%;
}
.cid-tocdnj41iv .card .card-wrapper {
  height: 100%;
}
.cid-tocdnj41iv .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tocdnj41iv .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tocdnj41iv .card .card-box .card-title {
  margin: 0;
}
.cid-tocdnj41iv .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocdnj41iv .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tocdnj41iv .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tocdnj41iv .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tocdnj41iv .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocdnj41iv .card .card-footer .icons-list {
  margin: 0;
}
.cid-tocdnj41iv .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tocdnj41iv .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tocdnj41iv .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tocdnj41iv .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tocdnj41iv .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tocdnj41iv .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tocdnj41iv .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tocdnj41iv .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-tocdnj41iv .main-title {
  color: #133996;
}
.cid-tocdnj41iv .main-subtitle,
.cid-tocdnj41iv .underline {
  color: #465052;
}
.cid-tocdnIyWVn {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocdnIyWVn .card .card-img {
  overflow: hidden;
}
.cid-tocdnIyWVn .card .card-img img {
  transition: all .5s;
}
.cid-tocdnIyWVn .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tocdnIyWVn .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-tocdnIyWVn .card {
  height: 100%;
}
.cid-tocdnIyWVn .card .card-wrapper {
  height: 100%;
}
.cid-tocdnIyWVn .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tocdnIyWVn .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tocdnIyWVn .card .card-box .card-title {
  margin: 0;
}
.cid-tocdnIyWVn .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocdnIyWVn .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tocdnIyWVn .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tocdnIyWVn .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tocdnIyWVn .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tocdnIyWVn .card .card-footer .icons-list {
  margin: 0;
}
.cid-tocdnIyWVn .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tocdnIyWVn .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tocdnIyWVn .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tocdnIyWVn .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tocdnIyWVn .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tocdnIyWVn .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tocdnIyWVn .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tocdnIyWVn .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0g5RrzqP9 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0g5RrzqP9 .collapsed {
  flex-direction: row !important;
}
.cid-t0g5RrzqP9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0g5RrzqP9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0g5RrzqP9 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0g5RrzqP9 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0g5RrzqP9 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0g5RrzqP9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0g5RrzqP9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0g5RrzqP9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0g5RrzqP9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0g5RrzqP9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0g5RrzqP9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0g5RrzqP9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0g5RrzqP9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0g5RrzqP9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0g5RrzqP9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0g5RrzqP9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0g5RrzqP9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0g5RrzqP9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0g5RrzqP9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0g5RrzqP9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0g5RrzqP9 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0g5RrzqP9 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0g5RrzqP9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0g5RrzqP9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0g5RrzqP9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0g5RrzqP9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0g5RrzqP9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0g5RrzqP9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0g5RrzqP9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0g5RrzqP9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0g5RrzqP9 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0g5RrzqP9 .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0g5RrzqP9 .nav-item:focus,
.cid-t0g5RrzqP9 .nav-link:focus {
  outline: none;
}
.cid-t0g5RrzqP9 .text-white:hover,
.cid-t0g5RrzqP9 .text-white:active,
.cid-t0g5RrzqP9 .text-white:focus {
  color: white !important;
}
.cid-t0g5RrzqP9 .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0g5RrzqP9 .dropdown-item:hover {
  color: black !important;
}
.cid-t0g5RrzqP9 .dropdown-menu {
  background-color: white !important;
}
.cid-t0g5RrzqP9 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0g5RrzqP9 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0g5RrzqP9 .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0g5RrzqP9 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0g5RrzqP9 .nav-item {
    position: relative;
  }
}
.cid-t0g5RrzqP9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0g5RrzqP9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0g5RrzqP9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0g5RrzqP9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0g5RrzqP9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0g5RrzqP9 .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0g5RrzqP9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0g5RrzqP9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0g5RrzqP9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0g5RrzqP9 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0g5RrzqP9 .dropdown-item.active,
.cid-t0g5RrzqP9 .dropdown-item:active {
  background-color: transparent;
}
.cid-t0g5RrzqP9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0g5RrzqP9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0g5RrzqP9 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0g5RrzqP9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0g5RrzqP9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0g5RrzqP9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0g5RrzqP9 .navbar-buttons {
  text-align: center;
}
.cid-t0g5RrzqP9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0g5RrzqP9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0g5RrzqP9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0g5RrzqP9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0g5RrzqP9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0g5RrzqP9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0g5RrzqP9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0g5RrzqP9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0g5RrzqP9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0g5RrzqP9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0g5RrzqP9 .nav-link {
  font-weight: 600 !important;
}
.cid-t0g5RrzqP9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0g5RrzqP9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0g5RrzqP9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0g5RrzqP9 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0g5RrzqP9 .navbar {
    height: 77px;
  }
  .cid-t0g5RrzqP9 .navbar.opened {
    height: auto;
  }
  .cid-t0g5RrzqP9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0g5Rs8ClV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0g5Rs8ClV .mbr-text,
.cid-t0g5Rs8ClV .ornament {
  color: #133996;
}
.cid-t0g5RssnNO {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0g5RssnNO .mbr-text,
.cid-t0g5RssnNO .ornament {
  text-align: left;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0g6qjZg88 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0g6qjZg88 .collapsed {
  flex-direction: row !important;
}
.cid-t0g6qjZg88 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0g6qjZg88 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0g6qjZg88 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0g6qjZg88 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0g6qjZg88 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0g6qjZg88 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0g6qjZg88 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0g6qjZg88 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0g6qjZg88 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0g6qjZg88 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0g6qjZg88 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0g6qjZg88 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0g6qjZg88 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0g6qjZg88 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0g6qjZg88 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0g6qjZg88 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0g6qjZg88 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0g6qjZg88 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0g6qjZg88 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0g6qjZg88 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0g6qjZg88 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0g6qjZg88 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0g6qjZg88 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0g6qjZg88 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0g6qjZg88 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0g6qjZg88 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0g6qjZg88 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0g6qjZg88 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0g6qjZg88 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0g6qjZg88 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0g6qjZg88 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0g6qjZg88 .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0g6qjZg88 .nav-item:focus,
.cid-t0g6qjZg88 .nav-link:focus {
  outline: none;
}
.cid-t0g6qjZg88 .text-white:hover,
.cid-t0g6qjZg88 .text-white:active,
.cid-t0g6qjZg88 .text-white:focus {
  color: white !important;
}
.cid-t0g6qjZg88 .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0g6qjZg88 .dropdown-item:hover {
  color: black !important;
}
.cid-t0g6qjZg88 .dropdown-menu {
  background-color: white !important;
}
.cid-t0g6qjZg88 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0g6qjZg88 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0g6qjZg88 .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0g6qjZg88 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0g6qjZg88 .nav-item {
    position: relative;
  }
}
.cid-t0g6qjZg88 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0g6qjZg88 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0g6qjZg88 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0g6qjZg88 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0g6qjZg88 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0g6qjZg88 .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0g6qjZg88 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0g6qjZg88 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0g6qjZg88 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0g6qjZg88 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0g6qjZg88 .dropdown-item.active,
.cid-t0g6qjZg88 .dropdown-item:active {
  background-color: transparent;
}
.cid-t0g6qjZg88 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0g6qjZg88 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0g6qjZg88 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0g6qjZg88 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0g6qjZg88 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0g6qjZg88 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0g6qjZg88 .navbar-buttons {
  text-align: center;
}
.cid-t0g6qjZg88 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0g6qjZg88 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0g6qjZg88 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0g6qjZg88 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0g6qjZg88 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0g6qjZg88 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0g6qjZg88 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0g6qjZg88 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0g6qjZg88 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0g6qjZg88 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0g6qjZg88 .nav-link {
  font-weight: 600 !important;
}
.cid-t0g6qjZg88 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0g6qjZg88 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0g6qjZg88 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0g6qjZg88 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0g6qjZg88 .navbar {
    height: 77px;
  }
  .cid-t0g6qjZg88 .navbar.opened {
    height: auto;
  }
  .cid-t0g6qjZg88 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0g6qkpr9k {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0g6qkpr9k .mbr-text,
.cid-t0g6qkpr9k .ornament {
  color: #133996;
}
.cid-t0g6qkE1co {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0g6qkE1co .mbr-text,
.cid-t0g6qkE1co .ornament {
  text-align: left;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0gnJBousW .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0gnJBousW .collapsed {
  flex-direction: row !important;
}
.cid-t0gnJBousW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gnJBousW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gnJBousW .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0gnJBousW .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0gnJBousW .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0gnJBousW .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gnJBousW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gnJBousW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0gnJBousW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0gnJBousW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gnJBousW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gnJBousW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0gnJBousW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gnJBousW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gnJBousW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gnJBousW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gnJBousW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gnJBousW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0gnJBousW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gnJBousW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gnJBousW .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0gnJBousW .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0gnJBousW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gnJBousW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gnJBousW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0gnJBousW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0gnJBousW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gnJBousW .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0gnJBousW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0gnJBousW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0gnJBousW .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0gnJBousW .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0gnJBousW .nav-item:focus,
.cid-t0gnJBousW .nav-link:focus {
  outline: none;
}
.cid-t0gnJBousW .text-white:hover,
.cid-t0gnJBousW .text-white:active,
.cid-t0gnJBousW .text-white:focus {
  color: white !important;
}
.cid-t0gnJBousW .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0gnJBousW .dropdown-item:hover {
  color: black !important;
}
.cid-t0gnJBousW .dropdown-menu {
  background-color: white !important;
}
.cid-t0gnJBousW .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0gnJBousW .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0gnJBousW .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0gnJBousW .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0gnJBousW .nav-item {
    position: relative;
  }
}
.cid-t0gnJBousW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0gnJBousW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gnJBousW .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0gnJBousW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0gnJBousW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0gnJBousW .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0gnJBousW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gnJBousW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gnJBousW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0gnJBousW .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0gnJBousW .dropdown-item.active,
.cid-t0gnJBousW .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gnJBousW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gnJBousW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gnJBousW .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gnJBousW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gnJBousW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gnJBousW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0gnJBousW .navbar-buttons {
  text-align: center;
}
.cid-t0gnJBousW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0gnJBousW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0gnJBousW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gnJBousW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gnJBousW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gnJBousW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gnJBousW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gnJBousW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gnJBousW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gnJBousW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gnJBousW .nav-link {
  font-weight: 600 !important;
}
.cid-t0gnJBousW a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0gnJBousW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gnJBousW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0gnJBousW .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0gnJBousW .navbar {
    height: 77px;
  }
  .cid-t0gnJBousW .navbar.opened {
    height: auto;
  }
  .cid-t0gnJBousW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gnJBRDTA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0gnJBRDTA .mbr-text,
.cid-t0gnJBRDTA .ornament {
  color: #133996;
}
.cid-t0gnJC7EuE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0gnJC7EuE .mbr-text,
.cid-t0gnJC7EuE .ornament {
  text-align: left;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0jZVEMkET .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0jZVEMkET .collapsed {
  flex-direction: row !important;
}
.cid-t0jZVEMkET .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0jZVEMkET .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0jZVEMkET .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0jZVEMkET .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0jZVEMkET .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0jZVEMkET .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0jZVEMkET .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0jZVEMkET .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0jZVEMkET .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0jZVEMkET .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0jZVEMkET .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0jZVEMkET .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0jZVEMkET .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0jZVEMkET .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0jZVEMkET .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0jZVEMkET .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0jZVEMkET .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0jZVEMkET .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0jZVEMkET .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0jZVEMkET .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0jZVEMkET .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0jZVEMkET .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0jZVEMkET .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0jZVEMkET .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0jZVEMkET .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0jZVEMkET .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0jZVEMkET .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0jZVEMkET .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0jZVEMkET .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0jZVEMkET .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0jZVEMkET .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0jZVEMkET .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0jZVEMkET .nav-item:focus,
.cid-t0jZVEMkET .nav-link:focus {
  outline: none;
}
.cid-t0jZVEMkET .text-white:hover,
.cid-t0jZVEMkET .text-white:active,
.cid-t0jZVEMkET .text-white:focus {
  color: white !important;
}
.cid-t0jZVEMkET .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0jZVEMkET .dropdown-item:hover {
  color: black !important;
}
.cid-t0jZVEMkET .dropdown-menu {
  background-color: white !important;
}
.cid-t0jZVEMkET .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0jZVEMkET .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0jZVEMkET .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0jZVEMkET .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0jZVEMkET .nav-item {
    position: relative;
  }
}
.cid-t0jZVEMkET .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0jZVEMkET .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0jZVEMkET .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0jZVEMkET .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0jZVEMkET .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0jZVEMkET .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0jZVEMkET .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0jZVEMkET .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0jZVEMkET .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0jZVEMkET .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0jZVEMkET .dropdown-item.active,
.cid-t0jZVEMkET .dropdown-item:active {
  background-color: transparent;
}
.cid-t0jZVEMkET .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0jZVEMkET .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0jZVEMkET .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0jZVEMkET .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0jZVEMkET .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0jZVEMkET ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0jZVEMkET .navbar-buttons {
  text-align: center;
}
.cid-t0jZVEMkET button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0jZVEMkET button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0jZVEMkET button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0jZVEMkET button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0jZVEMkET button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0jZVEMkET button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0jZVEMkET nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0jZVEMkET nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0jZVEMkET nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0jZVEMkET nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0jZVEMkET .nav-link {
  font-weight: 600 !important;
}
.cid-t0jZVEMkET a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0jZVEMkET .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0jZVEMkET .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0jZVEMkET .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0jZVEMkET .navbar {
    height: 77px;
  }
  .cid-t0jZVEMkET .navbar.opened {
    height: auto;
  }
  .cid-t0jZVEMkET .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0keuLC0Xd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0k4jtMKkN {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-t0k4jtMKkN .mbr-overlay {
  background: linear-gradient(90deg, #d3cffb, #d7e8f6);
}
.cid-t0k4jtMKkN .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  margin: 0;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (min-width: 992px) {
  .cid-t0k4jtMKkN .card-wrap {
    width: calc(100% + 10rem);
    margin-right: -10rem;
  }
}
.cid-t0k4jtMKkN .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
.cid-t0k4jtMKkN .mbr-section-subtitle,
.cid-t0k4jtMKkN .mbr-section-btn {
  color: #767676;
}
.cid-t0k4jtMKkN H1 {
  color: #133996;
}
.cid-t0kbQztKZn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0k7Y05mU5 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t0k7Y05mU5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t0k7Y05mU5 .form-control,
.cid-t0k7Y05mU5 .field-input {
  padding: 0.5rem;
  background-color: #efefef;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t0k7Y05mU5 .form-control::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .field-input::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .form-control::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-t0k7Y05mU5 .form-control:-moz-placeholder,
.cid-t0k7Y05mU5 .field-input:-moz-placeholder,
.cid-t0k7Y05mU5 .form-control:-moz-placeholder,
.cid-t0k7Y05mU5 .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-t0k7Y05mU5 .form-control:hover,
.cid-t0k7Y05mU5 .field-input:hover,
.cid-t0k7Y05mU5 .form-control:focus,
.cid-t0k7Y05mU5 .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-t0k7Y05mU5 .form-control:hover::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .field-input:hover::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .form-control:focus::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .field-input:focus::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .form-control:hover::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .field-input:hover::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .form-control:focus::-webkit-input-placeholder,
.cid-t0k7Y05mU5 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-t0k7Y05mU5 .form-control:hover:-moz-placeholder,
.cid-t0k7Y05mU5 .field-input:hover:-moz-placeholder,
.cid-t0k7Y05mU5 .form-control:focus:-moz-placeholder,
.cid-t0k7Y05mU5 .field-input:focus:-moz-placeholder,
.cid-t0k7Y05mU5 .form-control:hover:-moz-placeholder,
.cid-t0k7Y05mU5 .field-input:hover:-moz-placeholder,
.cid-t0k7Y05mU5 .form-control:focus:-moz-placeholder,
.cid-t0k7Y05mU5 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-t0k7Y05mU5 .jq-number__spin:hover,
.cid-t0k7Y05mU5 .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-t0k7Y05mU5 .jq-number__spin {
  background-color: #efefef;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t0k7Y05mU5 .jq-selectbox li,
.cid-t0k7Y05mU5 .jq-selectbox li {
  background-color: #efefef;
  color: #000000;
}
.cid-t0k7Y05mU5 .jq-selectbox li:hover,
.cid-t0k7Y05mU5 .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-t0k7Y05mU5 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t0k7Y05mU5 .jq-number__spin.minus:hover:after,
.cid-t0k7Y05mU5 .jq-number__spin.plus:hover:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-t0k7Y05mU5 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t0k7Y05mU5 .jq-number__spin.minus:after,
.cid-t0k7Y05mU5 .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-t0k7Y05mU5 input::-webkit-clear-button {
  display: none;
}
.cid-t0k7Y05mU5 input::-webkit-inner-spin-button {
  display: none;
}
.cid-t0k7Y05mU5 input::-webkit-outer-spin-button {
  display: none;
}
.cid-t0k7Y05mU5 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t0k7Y05mU5 H4 {
  color: #133996;
}
.cid-t0kc2ukuom {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tobRCbi27L {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tobRCbi27L .card .card-img {
  overflow: hidden;
}
.cid-tobRCbi27L .card .card-img img {
  transition: all .5s;
}
.cid-tobRCbi27L .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tobRCbi27L .underline .line {
  width: 2rem;
  height: 1px;
  background: #133996;
  display: inline-block;
}
.cid-tobRCbi27L .card {
  height: 100%;
}
.cid-tobRCbi27L .card .card-wrapper {
  height: 100%;
}
.cid-tobRCbi27L .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tobRCbi27L .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tobRCbi27L .card .card-box .card-title {
  margin: 0;
}
.cid-tobRCbi27L .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tobRCbi27L .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tobRCbi27L .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tobRCbi27L .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tobRCbi27L .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tobRCbi27L .card .card-footer .icons-list {
  margin: 0;
}
.cid-tobRCbi27L .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tobRCbi27L .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tobRCbi27L .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tobRCbi27L .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tobRCbi27L .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tobRCbi27L .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tobRCbi27L .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tobRCbi27L .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-tobRCbi27L .main-title {
  color: #133996;
}
.cid-tobRCbi27L .main-subtitle,
.cid-tobRCbi27L .underline {
  color: #465052;
}
.cid-tobRCGhW1P {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tobRCGhW1P .card .card-img {
  overflow: hidden;
}
.cid-tobRCGhW1P .card .card-img img {
  transition: all .5s;
}
.cid-tobRCGhW1P .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tobRCGhW1P .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-tobRCGhW1P .card {
  height: 100%;
}
.cid-tobRCGhW1P .card .card-wrapper {
  height: 100%;
}
.cid-tobRCGhW1P .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-tobRCGhW1P .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tobRCGhW1P .card .card-box .card-title {
  margin: 0;
}
.cid-tobRCGhW1P .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tobRCGhW1P .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tobRCGhW1P .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tobRCGhW1P .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tobRCGhW1P .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tobRCGhW1P .card .card-footer .icons-list {
  margin: 0;
}
.cid-tobRCGhW1P .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-tobRCGhW1P .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-tobRCGhW1P .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-tobRCGhW1P .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-tobRCGhW1P .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-tobRCGhW1P .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-tobRCGhW1P .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tobRCGhW1P .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-tobRDamSAz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tobRDamSAz .mbr-text {
  color: #767676;
}
.cid-tobRDamSAz .card-subtitle {
  margin: 0;
}
.cid-tobRDamSAz .link {
  margin: 0;
  color: #53b143;
}
.cid-tobRDamSAz .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-tobRDamSAz .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-tobRDamSAz .icon-box {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.173);
}
.cid-tobRDamSAz .item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-tobRDamSAz .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-tobRDamSAz .date {
  margin: 0;
}
.cid-tobRDamSAz img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-tobRDamSAz .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-tobRDamSAz .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tobRDamSAz .card-img:hover:before {
  opacity: 0.4;
}
.cid-tobRDamSAz .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-tobRDamSAz .icon-box {
    flex-direction: column;
  }
  .cid-tobRDamSAz .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-tobRDamSAz .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tobRDamSAz .card {
    margin-bottom: 3rem;
  }
}
.cid-t0jZVHS0og {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-t0jZVHS0og img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-t0jZVHS0og .row {
  justify-content: center;
}
.cid-t0jZVHS0og .mbr-text {
  color: #000000;
}
.cid-t0jZVHS0og .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-t0jZVHS0og .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-t0jZVHS0og .date {
  margin: 0;
  color: #cccccc;
}
.cid-t0jZVHS0og .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-t0jZVHS0og .icon-box {
    flex-direction: column;
  }
  .cid-t0jZVHS0og .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-t0jZVHS0og img {
    margin-bottom: 2rem;
  }
}
.cid-t0jZVHS0og H1 {
  color: #133996;
}
.cid-t0jZVHS0og H3 {
  color: #133996;
}
.cid-t0jZVHATEP {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0fNTKZyAK .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0fNTKZyAK .collapsed {
  flex-direction: row !important;
}
.cid-t0fNTKZyAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0fNTKZyAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0fNTKZyAK .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0fNTKZyAK .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0fNTKZyAK .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0fNTKZyAK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0fNTKZyAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0fNTKZyAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0fNTKZyAK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0fNTKZyAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0fNTKZyAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0fNTKZyAK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0fNTKZyAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0fNTKZyAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0fNTKZyAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0fNTKZyAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0fNTKZyAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0fNTKZyAK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0fNTKZyAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0fNTKZyAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0fNTKZyAK .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0fNTKZyAK .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0fNTKZyAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0fNTKZyAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0fNTKZyAK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0fNTKZyAK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0fNTKZyAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0fNTKZyAK .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0fNTKZyAK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0fNTKZyAK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0fNTKZyAK .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fNTKZyAK .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0fNTKZyAK .nav-item:focus,
.cid-t0fNTKZyAK .nav-link:focus {
  outline: none;
}
.cid-t0fNTKZyAK .text-white:hover,
.cid-t0fNTKZyAK .text-white:active,
.cid-t0fNTKZyAK .text-white:focus {
  color: white !important;
}
.cid-t0fNTKZyAK .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0fNTKZyAK .dropdown-item:hover {
  color: black !important;
}
.cid-t0fNTKZyAK .dropdown-menu {
  background-color: white !important;
}
.cid-t0fNTKZyAK .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0fNTKZyAK .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0fNTKZyAK .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0fNTKZyAK .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0fNTKZyAK .nav-item {
    position: relative;
  }
}
.cid-t0fNTKZyAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fNTKZyAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0fNTKZyAK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0fNTKZyAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0fNTKZyAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0fNTKZyAK .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0fNTKZyAK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0fNTKZyAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0fNTKZyAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0fNTKZyAK .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0fNTKZyAK .dropdown-item.active,
.cid-t0fNTKZyAK .dropdown-item:active {
  background-color: transparent;
}
.cid-t0fNTKZyAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0fNTKZyAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0fNTKZyAK .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0fNTKZyAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0fNTKZyAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0fNTKZyAK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0fNTKZyAK .navbar-buttons {
  text-align: center;
}
.cid-t0fNTKZyAK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0fNTKZyAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0fNTKZyAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0fNTKZyAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fNTKZyAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0fNTKZyAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0fNTKZyAK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fNTKZyAK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0fNTKZyAK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0fNTKZyAK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0fNTKZyAK .nav-link {
  font-weight: 600 !important;
}
.cid-t0fNTKZyAK a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0fNTKZyAK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0fNTKZyAK .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0fNTKZyAK .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0fNTKZyAK .navbar {
    height: 77px;
  }
  .cid-t0fNTKZyAK .navbar.opened {
    height: auto;
  }
  .cid-t0fNTKZyAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0fNTLyJCT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0fNTLyJCT .mbr-text {
  position: relative;
  text-align: left;
}
.cid-t0fNTLyJCT .mbr-text:before {
  color: #333333;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-t0fNTLyJCT img {
  object-fit: contain;
}
.cid-t0fNTLyJCT .mbr-text:after {
  color: #333333;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-t0fNTLyJCT .mbr-text:after,
  .cid-t0fNTLyJCT .mbr-text:before {
    display: none;
  }
}
.cid-t0kq19nE6d {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tocdzmSWJo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tocdzmSWJo img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-tocdzmSWJo .row {
  justify-content: center;
}
.cid-tocdzmSWJo .mbr-text {
  color: #000000;
}
.cid-tocdzmSWJo .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-tocdzmSWJo .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-tocdzmSWJo .date {
  margin: 0;
  color: #cccccc;
}
.cid-tocdzmSWJo .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-tocdzmSWJo .icon-box {
    flex-direction: column;
  }
  .cid-tocdzmSWJo .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-tocdzmSWJo img {
    margin-bottom: 2rem;
  }
}
.cid-tocdzmSWJo H1 {
  color: #133996;
}
.cid-tocdzmSWJo H3 {
  color: #133996;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t0gnLxM4Yu .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t0gnLxM4Yu .collapsed {
  flex-direction: row !important;
}
.cid-t0gnLxM4Yu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gnLxM4Yu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gnLxM4Yu .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t0gnLxM4Yu .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t0gnLxM4Yu .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t0gnLxM4Yu .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gnLxM4Yu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gnLxM4Yu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0gnLxM4Yu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0gnLxM4Yu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gnLxM4Yu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gnLxM4Yu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0gnLxM4Yu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gnLxM4Yu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gnLxM4Yu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gnLxM4Yu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gnLxM4Yu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gnLxM4Yu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0gnLxM4Yu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gnLxM4Yu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gnLxM4Yu .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0gnLxM4Yu .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0gnLxM4Yu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gnLxM4Yu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gnLxM4Yu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t0gnLxM4Yu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t0gnLxM4Yu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gnLxM4Yu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t0gnLxM4Yu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t0gnLxM4Yu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0gnLxM4Yu .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0gnLxM4Yu .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t0gnLxM4Yu .nav-item:focus,
.cid-t0gnLxM4Yu .nav-link:focus {
  outline: none;
}
.cid-t0gnLxM4Yu .text-white:hover,
.cid-t0gnLxM4Yu .text-white:active,
.cid-t0gnLxM4Yu .text-white:focus {
  color: white !important;
}
.cid-t0gnLxM4Yu .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t0gnLxM4Yu .dropdown-item:hover {
  color: black !important;
}
.cid-t0gnLxM4Yu .dropdown-menu {
  background-color: white !important;
}
.cid-t0gnLxM4Yu .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t0gnLxM4Yu .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t0gnLxM4Yu .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t0gnLxM4Yu .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t0gnLxM4Yu .nav-item {
    position: relative;
  }
}
.cid-t0gnLxM4Yu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0gnLxM4Yu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gnLxM4Yu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t0gnLxM4Yu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0gnLxM4Yu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0gnLxM4Yu .navbar-caption {
  font-weight: 600 !important;
}
.cid-t0gnLxM4Yu .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gnLxM4Yu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gnLxM4Yu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0gnLxM4Yu .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t0gnLxM4Yu .dropdown-item.active,
.cid-t0gnLxM4Yu .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gnLxM4Yu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gnLxM4Yu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gnLxM4Yu .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gnLxM4Yu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gnLxM4Yu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gnLxM4Yu ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0gnLxM4Yu .navbar-buttons {
  text-align: center;
}
.cid-t0gnLxM4Yu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0gnLxM4Yu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t0gnLxM4Yu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gnLxM4Yu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gnLxM4Yu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gnLxM4Yu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gnLxM4Yu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gnLxM4Yu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gnLxM4Yu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gnLxM4Yu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gnLxM4Yu .nav-link {
  font-weight: 600 !important;
}
.cid-t0gnLxM4Yu a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0gnLxM4Yu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gnLxM4Yu .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0gnLxM4Yu .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0gnLxM4Yu .navbar {
    height: 77px;
  }
  .cid-t0gnLxM4Yu .navbar.opened {
    height: auto;
  }
  .cid-t0gnLxM4Yu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gnLybD4R {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0gnLybD4R .mbr-text,
.cid-t0gnLybD4R .ornament {
  color: #133996;
}
.cid-t0gnLyrj6E {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0gnLyrj6E .mbr-text,
.cid-t0gnLyrj6E .ornament {
  text-align: left;
}
.cid-t0kldGBk6m {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0kldGBk6m .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t0kldGBk6m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t0kldGBk6m .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t0kldGBk6m .mbr-text {
  color: #444;
}
.cid-t0kldGBk6m h5 {
  margin-bottom: 0;
}
.cid-t0kldGBk6m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t0kldGBk6m .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t0kldGBk6m .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t0kldGBk6m .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t0kldGBk6m .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t0kldGBk6m .social-list a:hover {
  opacity: .4;
}
.cid-t0kldGBk6m .media-container-row > div {
  padding: 0px;
}
.cid-t0kldGBk6m .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t0kldGBk6m .group-title {
  text-align: left;
  color: #121525;
}
.cid-t0kldGBk6m .group-title SPAN {
  color: #656565;
}
.cid-t0kldGBk6m .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t0kldGBk6m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t0kldGBk6m h3 {
    margin-bottom: 10px;
  }
}
.cid-t0kldGBk6m .links SPAN {
  color: #9e9e9e;
}
.cid-t8TKuT5kzs .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-t8TKuT5kzs .collapsed {
  flex-direction: row !important;
}
.cid-t8TKuT5kzs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8TKuT5kzs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8TKuT5kzs .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t8TKuT5kzs .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-t8TKuT5kzs .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-t8TKuT5kzs .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8TKuT5kzs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8TKuT5kzs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t8TKuT5kzs .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t8TKuT5kzs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8TKuT5kzs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8TKuT5kzs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t8TKuT5kzs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8TKuT5kzs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t8TKuT5kzs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t8TKuT5kzs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8TKuT5kzs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8TKuT5kzs .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t8TKuT5kzs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8TKuT5kzs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8TKuT5kzs .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t8TKuT5kzs .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t8TKuT5kzs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8TKuT5kzs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8TKuT5kzs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t8TKuT5kzs .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t8TKuT5kzs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t8TKuT5kzs .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t8TKuT5kzs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-t8TKuT5kzs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8TKuT5kzs .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t8TKuT5kzs .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-t8TKuT5kzs .nav-item:focus,
.cid-t8TKuT5kzs .nav-link:focus {
  outline: none;
}
.cid-t8TKuT5kzs .text-white:hover,
.cid-t8TKuT5kzs .text-white:active,
.cid-t8TKuT5kzs .text-white:focus {
  color: white !important;
}
.cid-t8TKuT5kzs .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-t8TKuT5kzs .dropdown-item:hover {
  color: black !important;
}
.cid-t8TKuT5kzs .dropdown-menu {
  background-color: white !important;
}
.cid-t8TKuT5kzs .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(109, 89, 171, 0.35);
  display: block;
}
.cid-t8TKuT5kzs .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #57468b;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t8TKuT5kzs .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-t8TKuT5kzs .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-t8TKuT5kzs .nav-item {
    position: relative;
  }
}
.cid-t8TKuT5kzs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t8TKuT5kzs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8TKuT5kzs .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t8TKuT5kzs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8TKuT5kzs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t8TKuT5kzs .navbar-caption {
  font-weight: 600 !important;
}
.cid-t8TKuT5kzs .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8TKuT5kzs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8TKuT5kzs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8TKuT5kzs .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-t8TKuT5kzs .dropdown-item.active,
.cid-t8TKuT5kzs .dropdown-item:active {
  background-color: transparent;
}
.cid-t8TKuT5kzs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8TKuT5kzs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8TKuT5kzs .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8TKuT5kzs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8TKuT5kzs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8TKuT5kzs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t8TKuT5kzs .navbar-buttons {
  text-align: center;
}
.cid-t8TKuT5kzs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t8TKuT5kzs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-t8TKuT5kzs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t8TKuT5kzs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8TKuT5kzs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8TKuT5kzs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t8TKuT5kzs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8TKuT5kzs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t8TKuT5kzs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t8TKuT5kzs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8TKuT5kzs .nav-link {
  font-weight: 600 !important;
}
.cid-t8TKuT5kzs a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t8TKuT5kzs .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t8TKuT5kzs .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t8TKuT5kzs .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t8TKuT5kzs .navbar {
    height: 77px;
  }
  .cid-t8TKuT5kzs .navbar.opened {
    height: auto;
  }
  .cid-t8TKuT5kzs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8TKuTEbO2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t8TKuTEbO2 .mbr-text,
.cid-t8TKuTEbO2 .ornament {
  color: #53b143;
}
.cid-t8TKuTRPAm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t8TKuTRPAm .mbr-text,
.cid-t8TKuTRPAm .ornament {
  text-align: left;
}
.cid-t8TKuU4xAa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
}
.cid-t8TKuU4xAa .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t8TKuU4xAa .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-t8TKuU4xAa .btn {
  margin-bottom: 2rem;
}
.cid-t8TKuU4xAa .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-t8TKuU4xAa .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t8TKuU4xAa .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-t8TKuU4xAa .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8TKuU4xAa .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8TKuU4xAa .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-t8TKuU4xAa .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-t8TKuU4xAa .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-t8TKuU4xAa .links {
  color: #232323;
  text-align: center;
}
.cid-t8TKuUvCef {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8TKuUvCef .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-t8TKuUvCef a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-t8TKuUvCef .mbr-section-btn {
  margin: 0;
}
.cid-t8TKuUvCef .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-t8TKuUvCef .form-control:focus,
.cid-t8TKuUvCef .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-t8TKuUvCef .form-group {
  margin-bottom: 1rem;
}
.cid-t8TKuUvCef input::-webkit-input-placeholder,
.cid-t8TKuUvCef textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-t8TKuUvCef input:-moz-placeholder,
.cid-t8TKuUvCef textarea:-moz-placeholder {
  color: #656565;
}
.cid-t8TKuUvCef .jq-selectbox li,
.cid-t8TKuUvCef .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-t8TKuUvCef .jq-selectbox li:hover,
.cid-t8TKuUvCef .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-t8TKuUvCef .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-t8TKuUvCef .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-t8TKuUvCef .form-group,
.cid-t8TKuUvCef .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-t8TKuUvCef .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-t8TKuUvCef .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-t8TKuUvCef .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-t8TKuUvCef .form-block {
    padding: 1rem;
  }
}
.cid-t8TKuUQxft {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t8TKuUQxft .listico {
  padding-right: 1rem;
  color: #133996;
  font-size: 0.4rem;
}
.cid-t8TKuUQxft .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-t8TKuUQxft .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-t8TKuUQxft .mbr-text {
  color: #444;
}
.cid-t8TKuUQxft h5 {
  margin-bottom: 0;
}
.cid-t8TKuUQxft .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t8TKuUQxft .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-t8TKuUQxft .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t8TKuUQxft .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-t8TKuUQxft .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8TKuUQxft .social-list a:hover {
  opacity: .4;
}
.cid-t8TKuUQxft .media-container-row > div {
  padding: 0px;
}
.cid-t8TKuUQxft .text2 {
  color: #9e9e9e;
  text-align: left;
}
.cid-t8TKuUQxft .group-title {
  text-align: left;
  color: #121525;
}
.cid-t8TKuUQxft .group-title SPAN {
  color: #656565;
}
.cid-t8TKuUQxft .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-t8TKuUQxft .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t8TKuUQxft h3 {
    margin-bottom: 10px;
  }
}
.cid-t8TKuUQxft .links SPAN {
  color: #9e9e9e;
}
