body {
  font-family: 'Quicksand', sans-serif;
}
.display-1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- 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: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #1b226e !important;
}
.bg-success {
  background-color: #323cdf !important;
}
.bg-info {
  background-color: #dce7fb !important;
}
.bg-warning {
  background-color: #25d366 !important;
}
.bg-danger {
  background-color: #0d7afc !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1b226e !important;
  border-color: #1b226e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0c0f31 !important;
  border-color: #0c0f31 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0c0f31 !important;
  border-color: #0c0f31 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #130947 !important;
  border-color: #130947 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #010003 !important;
  border-color: #010003 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #010003 !important;
  border-color: #010003 !important;
}
.btn-info,
.btn-info:active {
  background-color: #dce7fb !important;
  border-color: #dce7fb !important;
  color: #1653c2 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #1653c2 !important;
  background-color: #97b8f3 !important;
  border-color: #97b8f3 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #1653c2 !important;
  background-color: #97b8f3 !important;
  border-color: #97b8f3 !important;
}
.btn-success,
.btn-success:active {
  background-color: #323cdf !important;
  border-color: #323cdf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #1b23aa !important;
  border-color: #1b23aa !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1b23aa !important;
  border-color: #1b23aa !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #1a9247 !important;
  border-color: #1a9247 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #1a9247 !important;
  border-color: #1a9247 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0d7afc !important;
  border-color: #0d7afc !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0256ba !important;
  border-color: #0256ba !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0256ba !important;
  border-color: #0256ba !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: #07091c;
  color: #07091c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #1b226e;
  border-color: #1b226e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1b226e !important;
  border-color: #1b226e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #130947;
  border-color: #130947;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #130947 !important;
  border-color: #130947 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #80a8f1;
  color: #80a8f1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1653c2;
  background-color: #dce7fb;
  border-color: #dce7fb;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #1653c2 !important;
  background-color: #dce7fb !important;
  border-color: #dce7fb !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #171e94;
  color: #171e94;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #323cdf;
  border-color: #323cdf;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #323cdf !important;
  border-color: #323cdf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #167c3c;
  color: #167c3c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #25d366;
  border-color: #25d366;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #25d366 !important;
  border-color: #25d366 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #024ba1;
  color: #024ba1;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #0d7afc;
  border-color: #0d7afc;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0d7afc !important;
  border-color: #0d7afc !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.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: #1b226e !important;
}
.text-secondary {
  color: #130947 !important;
}
.text-success {
  color: #323cdf !important;
}
.text-info {
  color: #dce7fb !important;
}
.text-warning {
  color: #25d366 !important;
}
.text-danger {
  color: #0d7afc !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #07091c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #171e94 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #80a8f1 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #167c3c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #0d7afc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #dce7fb;
}
.alert-warning {
  background-color: #25d366;
}
.alert-danger {
  background-color: #0d7afc;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1b226e;
  border-color: #1b226e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1b226e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3a46cf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e2e4fb;
}
.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: #cef6dd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d7e9fe;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #1b226e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1b226e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1b226e;
  border-bottom-color: #1b226e;
}
.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: #1b226e !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: #130947 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%231b226e' %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;
}
hr {
  border: none;
  background-color: #0d7afc;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #0d7afc;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #0d7afc;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #0d7afc;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #0d7afc !important;
}
.btn-danger:hover {
  color: #0d7afc !important;
}
.btn-warning:hover {
  color: #25d366 !important;
}
.btn-success:hover {
  color: #323cdf !important;
}
.btn-info:hover {
  color: #dce7fb !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #130947 !important;
}
.btn-primary:hover {
  color: #1b226e !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #0d7afc !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #0d7afc;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #130947 !important;
}
.btn-success-outline:hover::before {
  background-color: #323cdf !important;
}
.btn-info-outline:hover::before {
  background-color: #dce7fb !important;
}
.btn-primary-outline:hover::before {
  background-color: #1b226e !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #25d366 !important;
}
.btn-danger-outline:hover::before {
  background-color: #0d7afc !important;
}
.cid-tiHQcgHo24 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tiHQcgHo24 .nav-item:focus,
.cid-tiHQcgHo24 .nav-link:focus {
  outline: none;
}
.cid-tiHQcgHo24 .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-tiHQcgHo24 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiHQcgHo24 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tiHQcgHo24 .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-tiHQcgHo24 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiHQcgHo24 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiHQcgHo24 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tiHQcgHo24 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tiHQcgHo24 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tiHQcgHo24 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tiHQcgHo24 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiHQcgHo24 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiHQcgHo24 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiHQcgHo24 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tiHQcgHo24 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tiHQcgHo24 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiHQcgHo24 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiHQcgHo24 .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-tiHQcgHo24 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiHQcgHo24 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tiHQcgHo24 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tiHQcgHo24 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiHQcgHo24 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiHQcgHo24 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tiHQcgHo24 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiHQcgHo24 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiHQcgHo24 .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-tiHQcgHo24 .navbar .navbar-logo img {
    height: 4rem !important;
    width: auto;
  }
  .cid-tiHQcgHo24 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiHQcgHo24 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiHQcgHo24 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tiHQcgHo24 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tiHQcgHo24 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tiHQcgHo24 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tiHQcgHo24 .navbar.navbar-short .navbar-logo img {
  height: 4rem !important;
}
.cid-tiHQcgHo24 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tiHQcgHo24 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tiHQcgHo24 .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-tiHQcgHo24 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiHQcgHo24 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiHQcgHo24 .dropdown-item.active,
.cid-tiHQcgHo24 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tiHQcgHo24 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tiHQcgHo24 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tiHQcgHo24 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tiHQcgHo24 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tiHQcgHo24 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tiHQcgHo24 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tiHQcgHo24 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tiHQcgHo24 .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tiHQcgHo24 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tiHQcgHo24 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tiHQcgHo24 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiHQcgHo24 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiHQcgHo24 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tiHQcgHo24 .navbar-buttons {
  text-align: center;
}
.cid-tiHQcgHo24 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-tiHQcgHo24 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #130947;
}
.cid-tiHQcgHo24 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tiHQcgHo24 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiHQcgHo24 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tiHQcgHo24 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tiHQcgHo24 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiHQcgHo24 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tiHQcgHo24 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tiHQcgHo24 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tiHQcgHo24 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tiHQcgHo24 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tiHQcgHo24 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tiHQcgHo24 .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-tiHQcgHo24 .icons-menu span {
  font-size: 20px;
  color: #0d7afc;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tiHQcgHo24 .navbar {
    height: 77px;
  }
  .cid-tiHQcgHo24 .navbar.opened {
    height: auto;
  }
  .cid-tiHQcgHo24 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiHQcgHo24 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tiHQcgHo24 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #0d7afc;
}
.cid-tiHQcgHo24 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tiHQcgHo24 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tiHQd4PwQf {
  padding-top: 180px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/espamedic-background-b.webp");
}
.cid-tiHQd4PwQf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.3;
}
.cid-tiHQd4PwQf input {
  padding: 0rem 1rem !important;
}
.cid-tiHQd4PwQf .title {
  margin-bottom: 1rem;
}
.cid-tiHQd4PwQf textarea {
  min-height: 75px;
}
.cid-tiHQd4PwQf .form-control,
.cid-tiHQd4PwQf .field-input {
  padding: 0.5rem;
  background-color: #dce7fb;
  border-color: #dce7fb;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tiHQd4PwQf .form-control:hover,
.cid-tiHQd4PwQf .field-input:hover,
.cid-tiHQd4PwQf .form-control:focus,
.cid-tiHQd4PwQf .field-input:focus {
  background-color: #dce7fb;
  border-color: #dce7fb;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tiHQd4PwQf input::-webkit-input-placeholder,
.cid-tiHQd4PwQf textarea::-webkit-input-placeholder {
  color: #1b226e;
}
.cid-tiHQd4PwQf input:-moz-placeholder,
.cid-tiHQd4PwQf textarea:-moz-placeholder {
  color: #1b226e;
}
.cid-tiHQd4PwQf .jq-selectbox li,
.cid-tiHQd4PwQf .jq-selectbox li {
  background-color: #dce7fb;
  color: #555555;
  font-family: 'Quicksand';
}
.cid-tiHQd4PwQf .jq-selectbox li:hover,
.cid-tiHQd4PwQf .jq-selectbox li.selected {
  background-color: #dce7fb;
  color: #000000;
}
.cid-tiHQd4PwQf .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #dce7fb;
}
.cid-tiHQd4PwQf .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #dce7fb;
}
.cid-tiHQd4PwQf input::-webkit-input-placeholder,
.cid-tiHQd4PwQf textarea::-webkit-input-placeholder {
  color: #1b226e;
}
.cid-tiHQd4PwQf input:-moz-placeholder,
.cid-tiHQd4PwQf textarea:-moz-placeholder {
  color: #1b226e;
}
@media (max-width: 992px) {
  .cid-tiHQd4PwQf img {
    width: 100%;
  }
  .cid-tiHQd4PwQf form {
    margin-top: 2rem;
  }
}
.cid-tiHQd4PwQf .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tiHQd4PwQf .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tiHQd4PwQf .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tiHQd4PwQf .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tiHQd4PwQf .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #dce7fb;
}
.cid-tiHQd4PwQf .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tiHQd4PwQf .form-btn {
  width: 100%;
}
.cid-tiHQd4PwQf .link-btn {
  width: 100%;
}
.cid-tiHQd4PwQf h5 {
  margin-bottom: 0.2rem;
}
.cid-tiHQd4PwQf .mbr-form .btn {
  margin: 0;
}
.cid-tiHQd4PwQf .mbr-section-title {
  margin-bottom: 1.8rem;
  color: #130947;
  text-align: center;
}
.cid-tiHQd4PwQf .block-left {
  margin-bottom: 2.6rem;
}
.cid-tiHQd4PwQf .text-form {
  color: #dce7fb;
  margin-bottom: 1.3rem;
}
.cid-tiHQd4PwQf .link-btn:hover {
  background-color: #2688fc !important;
  color: #ffffff !important;
  border-color: #2688fc !important;
}
.cid-tiHQd4PwQf .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tiHQd4PwQf .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tiHQd4PwQf .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tiHQd4PwQf .row {
    margin: 0rem;
  }
}
.cid-tiHQd4PwQf .btn {
  margin-left: 0rem;
}
.cid-tiHQd4PwQf .block-left,
.cid-tiHQd4PwQf .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tiHQd4PwQf H5 {
  text-align: center;
  color: #29235c;
}
.cid-tiHQd4PwQf LABEL {
  color: #000000;
}
.cid-tiHQd4PwQf H4 {
  text-align: center;
  color: #1b226e;
}
.cid-ttO0ODnU9O {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ttO0ODnU9O h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ttO0ODnU9O .container {
    position: relative;
  }
  .cid-ttO0ODnU9O .row {
    margin: 0;
  }
  .cid-ttO0ODnU9O h2 {
    margin: 0;
  }
}
.cid-ttO0ODnU9O .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ttO0ODnU9O .mbr-text {
  margin-top: 1.4rem;
}
.cid-ttO0ODnU9O h2 {
  color: #1b226e;
}
.cid-ttO0ODnU9O H3 {
  color: #0d7afc;
}
.cid-ttYTIxGB8D {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttYTIxGB8D img {
  width: 100%;
  pointer-events: all;
}
.cid-ttYTIxGB8D .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-ttYTIxGB8D .card:hover .img-wrapper:before {
  opacity: 0.5;
}
.cid-ttYTIxGB8D .card:hover .text-wrap {
  opacity: 1;
}
.cid-ttYTIxGB8D .img-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-ttYTIxGB8D .img-wrapper:before {
  pointer-events: none;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #130947;
  opacity: 0;
  transition: all 0.3s;
  content: '';
  z-index: 1;
}
.cid-ttYTIxGB8D .text-wrap {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  left: 0;
  padding: 2rem;
  top: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.cid-ttYTIxGB8D .text-wrap p {
  pointer-events: all;
}
.cid-ttYTIxGB8D .text-wrap .link-align {
  pointer-events: all;
}
.cid-ttYTIxGB8D .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #ffffff;
}
.cid-ttYTIxGB8D .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-ttYTIxGB8D .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-ttYTIxGB8D .mbr-text,
.cid-ttYTIxGB8D .link-align {
  color: #ffffff;
  text-align: center;
}
.cid-ttYTIxGB8D .card-title {
  color: #1b226e;
  text-align: center;
}
.cid-ttYTIxGB8D .mbr-subtitle,
.cid-ttYTIxGB8D .link-align {
  color: #d58f76;
}
@media (max-width: 767px) {
  .cid-ttYTIxGB8D .card .img-wrapper:before {
    opacity: 0.5;
  }
  .cid-ttYTIxGB8D .card .text-wrap {
    opacity: 1;
    padding: 1rem;
  }
}
.cid-ttYTIxGB8D .mbr-section-subtitle {
  color: #d58f76;
}
.cid-ttZ5QuuIs5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ttZ5QuuIs5 img {
  width: 100%;
  pointer-events: all;
}
.cid-ttZ5QuuIs5 .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-ttZ5QuuIs5 .card:hover .img-wrapper:before {
  opacity: 0.5;
}
.cid-ttZ5QuuIs5 .card:hover .text-wrap {
  opacity: 1;
}
.cid-ttZ5QuuIs5 .img-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-ttZ5QuuIs5 .img-wrapper:before {
  pointer-events: none;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #130947;
  opacity: 0;
  transition: all 0.3s;
  content: '';
  z-index: 1;
}
.cid-ttZ5QuuIs5 .text-wrap {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  left: 0;
  padding: 2rem;
  top: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.cid-ttZ5QuuIs5 .text-wrap p {
  pointer-events: all;
}
.cid-ttZ5QuuIs5 .text-wrap .link-align {
  pointer-events: all;
}
.cid-ttZ5QuuIs5 .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #ffffff;
}
.cid-ttZ5QuuIs5 .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-ttZ5QuuIs5 .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-ttZ5QuuIs5 .mbr-text,
.cid-ttZ5QuuIs5 .link-align {
  color: #ffffff;
  text-align: center;
}
.cid-ttZ5QuuIs5 .card-title {
  color: #1b226e;
  text-align: center;
}
.cid-ttZ5QuuIs5 .mbr-subtitle,
.cid-ttZ5QuuIs5 .link-align {
  color: #d58f76;
}
@media (max-width: 767px) {
  .cid-ttZ5QuuIs5 .card .img-wrapper:before {
    opacity: 0.5;
  }
  .cid-ttZ5QuuIs5 .card .text-wrap {
    opacity: 1;
    padding: 1rem;
  }
}
.cid-ttZ5QuuIs5 .mbr-section-subtitle {
  color: #d58f76;
}
.cid-tjmls6jyJC {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tjmls6jyJC .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tjmls6jyJC .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tjmls6jyJC .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tjmls6jyJC .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-tjmls6jyJC .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tjmls6jyJC .row-item {
  margin-bottom: 2rem;
  border-radius: 8px;
}
.cid-tjmls6jyJC .row-item:hover .wrapper {
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tjmls6jyJC .row-item:hover .wrapper::before {
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tjmls6jyJC .row-item:hover .wrapper .card-img {
  z-index: 1;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tjmls6jyJC .row-item:hover .wrapper .card-img span {
  z-index: 1;
  color: #ffffff !important;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tjmls6jyJC .row-item:hover .wrapper .mbr-card-title {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tjmls6jyJC .row-item .wrapper {
  padding: 40px 0 30px;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.cid-tjmls6jyJC .row-item .wrapper::before {
  border-radius: 8px;
  position: absolute;
  content: '';
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: visible;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  background-color: #0d7afc;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tjmls6jyJC .row-item .wrapper .card-img span {
  color: #1b226e;
}
.cid-tjmls6jyJC .row-item .wrapper .mbr-iconfont {
  font-size: 50px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.cid-tjmls6jyJC .row-item .wrapper .mbr-card-title {
  color: #130947;
  font-weight: 700;
}
.cid-tjmls6jyJC .row-item .wrapper .mbr-card-title.display-7 {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.cid-tjmls6jyJC img {
  width: 90%;
  border-radius: 8px;
}
.cid-tjmls6jyJC .btn {
  border-radius: 3px;
  padding: 12px 40px;
  font-weight: 700;
}
.cid-tjmls6jyJC .btn.display-4 {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .cid-tjmls6jyJC .mbr-section-title {
    text-align: left;
  }
  .cid-tjmls6jyJC img {
    width: 100%;
  }
}
.cid-tjmls6jyJC .mbr-section-title,
.cid-tjmls6jyJC .mbr-section-btn {
  color: #130947;
}
.cid-tjmls6jyJC .row-item .wrapper .mbr-card-title {
  color: #1b226e;
}
.cid-tsLwjs2RX2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsLwjs2RX2 .row {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.cid-tsLwjs2RX2 .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 8px;
}
.cid-tsLwjs2RX2 .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
}
.cid-tsLwjs2RX2 .mbr-text {
  color: #000000;
  opacity: 0.8;
  padding-bottom: 20px;
  padding-top: 10px;
  margin-bottom: 0;
}
.cid-tsLwjs2RX2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-tsLwjs2RX2 .mbr-section-btn .btn-secondary:hover,
.cid-tsLwjs2RX2 .mbr-section-btn .btn-primary:hover {
  color: #ffffff !important;
  background-color: #323cdf !important;
}
.cid-tsLwjs2RX2 .mbr-section-btn .btn {
  min-height: 55px;
  padding: 10px 45px;
}
.cid-tsLwjs2RX2 .mbr-section-btn .btn:before {
  display: none;
}
.cid-tsLwjs2RX2 .mbr-section-btn .btn:hover:before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tsLwjs2RX2 .image-wrapper {
    margin-top: 40px;
  }
}
.cid-tsLwjs2RX2 .image-wrapper img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsLwjs2RX2 .image-wrapper img {
    padding-right: 5%;
  }
}
.cid-tsLwjs2RX2 .list {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 0;
  margin-top: 16px;
  width: 100%;
}
.cid-tsLwjs2RX2 .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.cid-tsLwjs2RX2 .icon-wrapper {
  display: flex;
  margin-right: 20px;
}
.cid-tsLwjs2RX2 .icon-wrapper span {
  color: #0066ff;
  font-size: 13px;
}
.cid-tsLwjs2RX2 .list-item-text {
  flex-grow: 1;
  color: #1b226e;
}
.cid-tsLwjs2RX2 .mbr-section-title,
.cid-tsLwjs2RX2 .mbr-section-btn {
  color: #130947;
}
.cid-toN6X0hJYc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-toN6X0hJYc .row {
  background: #ffffff;
  padding: 3rem 2rem;
  margin: 0rem;
}
@media (max-width: 767px) {
  .cid-toN6X0hJYc .row {
    padding: 1rem 0rem;
  }
}
.cid-toN6X0hJYc img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-toN6X0hJYc img {
    width: 100%;
  }
}
.cid-toN6X0hJYc .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-toN6X0hJYc .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-toN6X0hJYc .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-toN6X0hJYc .mbr-text,
.cid-toN6X0hJYc .mbr-section-btn {
  color: #000000;
}
.cid-toN6X0hJYc .mbr-section-subtitle {
  color: #777777;
}
.cid-toN6X0hJYc .mbr-section-title {
  color: #130947;
}
.cid-toN6X0hJYc .mbr-list {
  color: #1b226e;
}
.cid-toN6X0hJYc .card-b {
  padding-top: 5%;
  padding-bottom: 5%;
}
.cid-toN6X0hJYc .card-c {
  border-radius: 10px;
}
.cid-toN6X0hJYc .img_pro {
  width: 50px!important;
  height: 50px!important;
  margin-top: 0px!important;
  margin-bottom: 15px!important;
}
.cid-tpjHHpL5bl {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tpjHHpL5bl h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tpjHHpL5bl .container {
    position: relative;
  }
  .cid-tpjHHpL5bl .row {
    margin: 0;
  }
  .cid-tpjHHpL5bl h2 {
    margin: 0;
  }
}
.cid-tpjHHpL5bl .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tpjHHpL5bl .mbr-text {
  margin-top: 1.4rem;
}
.cid-tpjHHpL5bl h2 {
  color: #1b226e;
}
.cid-tpjv2Pg29E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpjv2Pg29E .card-wrapper {
  height: 100%;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-tpjv2Pg29E .card-wrapper .card-img {
  position: relative;
  width: auto;
  padding-right: 20px;
}
.cid-tpjv2Pg29E .card-wrapper .card-img .card-icon {
  background: #0d7afc;
  height: 100px;
  width: 100px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.22);
  border-radius: 100%;
  padding: 1rem;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-tpjv2Pg29E .card-wrapper .card-img .card-icon .mbr-iconfont {
  font-size: 2.5rem;
  color: #ffffff;
}
.cid-tpjv2Pg29E .card-wrapper .card-box {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-tpjv2Pg29E .card-wrapper .card-box .card-title {
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 10px !important;
  color: #130947;
  font-weight: 700;
}
.cid-tpjv2Pg29E .card-wrapper .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tpjv2Pg29E .card-wrapper .card-box p {
  text-align: left;
  color: #6d7a8c;
  line-height: 1.29;
}
.cid-tpjv2Pg29E .card-wrapper .card-box p {
  color: #000000;
}
.cid-tlj7YeupEJ {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tlj7YeupEJ .container-fluid {
  padding: 0 3rem;
}
.cid-tlj7YeupEJ .media-container-column {
  padding: 0 2rem;
}
.cid-tlj7YeupEJ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #1b226e;
}
@media (max-width: 767px) {
  .cid-tlj7YeupEJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tsAu9MzG4G {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tsAu9MzG4G img {
  width: 125px;
  margin: auto;
}
.cid-tsAu9MzG4G .card {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  margin-bottom: 1rem;
}
.cid-tsAu9MzG4G .mbr-section-title {
  color: #130947;
  margin-bottom: 10px;
}
.cid-tsAu9MzG4G .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsAu9MzG4G .row {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-tsAu9MzG4G .col-lg-1 {
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-tsAu9MzG4G .row {
  -webkit-box-pack: center !important;
  justify-content: center !important;
}
@media (max-width: 768px) {
  .cid-tsAu9MzG4G .mbr-section-title {
    text-align: center;
  }
}
.cid-tsAuhCXfhI {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tsAuhCXfhI img {
  width: 125px;
  margin: auto;
}
.cid-tsAuhCXfhI .card {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  margin-bottom: 1rem;
}
.cid-tsAuhCXfhI .mbr-section-title {
  color: #130947;
  margin-bottom: 10px;
}
.cid-tsAuhCXfhI .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsAuhCXfhI .row {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-tsAuhCXfhI .col-lg-1 {
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-tsAuhCXfhI .row {
  -webkit-box-pack: center !important;
  justify-content: center !important;
}
@media (max-width: 768px) {
  .cid-tsAuhCXfhI .mbr-section-title {
    text-align: center;
  }
}
.cid-tsAvUfSOgl {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tsAvUfSOgl img {
  width: 125px;
  margin: auto;
}
.cid-tsAvUfSOgl .card {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  margin-bottom: 1rem;
}
.cid-tsAvUfSOgl .mbr-section-title {
  color: #130947;
  margin-bottom: 10px;
}
.cid-tsAvUfSOgl .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsAvUfSOgl .row {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-tsAvUfSOgl .col-lg-1 {
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-tsAvUfSOgl .row {
  -webkit-box-pack: center !important;
  justify-content: center !important;
}
@media (max-width: 768px) {
  .cid-tsAvUfSOgl .mbr-section-title {
    text-align: center;
  }
}
.cid-tsAwsHhoDR {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tsAwsHhoDR img {
  width: 125px;
  margin: auto;
}
.cid-tsAwsHhoDR .card {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  margin-bottom: 1rem;
}
.cid-tsAwsHhoDR .mbr-section-title {
  color: #130947;
  margin-bottom: 10px;
}
.cid-tsAwsHhoDR .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsAwsHhoDR .row {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-tsAwsHhoDR .col-lg-1 {
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-tsAwsHhoDR .row {
  -webkit-box-pack: center !important;
  justify-content: center !important;
}
@media (max-width: 768px) {
  .cid-tsAwsHhoDR .mbr-section-title {
    text-align: center;
  }
}
.cid-tliLQl5sx0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tliLQl5sx0 .row {
  flex-direction: row-reverse;
}
.cid-tliLQl5sx0 .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tliLQl5sx0 .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tliLQl5sx0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tliLQl5sx0 .mbr-section-title {
  color: #103178;
}
.cid-tliLQl5sx0 .mbr-text,
.cid-tliLQl5sx0 .mbr-section-btn {
  color: #000000;
}
.cid-ttk1IVDTTJ {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #dce7fb;
}
.cid-ttk1IVDTTJ .row {
  flex-direction: row-reverse;
}
.cid-ttk1IVDTTJ .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ttk1IVDTTJ .row {
    padding-bottom: 40px;
  }
}
.cid-ttk1IVDTTJ .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-ttk1IVDTTJ .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-ttk1IVDTTJ .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-ttk1IVDTTJ .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-ttk1IVDTTJ .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-ttk1IVDTTJ .text-container {
    text-align: center!important;
  }
}
.cid-ttk1IVDTTJ .mbr-section-title {
  color: #1b226e;
}
.cid-ttk1IVDTTJ .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-ttk1IVDTTJ .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-ttk1IVDTTJ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ttk1IVDTTJ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ttk1IVDTTJ .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-ttk1IVDTTJ .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-ttk1IVDTTJ .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-ttk1IVDTTJ .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-ttk1IVDTTJ .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-ttk1IVDTTJ .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ttk1IVDTTJ .col-video .mbr-media img {
    height: auto;
  }
}
.cid-ttk1IVDTTJ .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-ttk1IVDTTJ .mbr-media {
  position: relative;
}
.cid-ttk1IVDTTJ .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-ttk1IVDTTJ .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-ttk1IVDTTJ .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-ttk1IVDTTJ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ttk1IVDTTJ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ttk1IVDTTJ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ttk1IVDTTJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ttk1IVDTTJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttk1IVDTTJ .mbr-section-subtitle,
.cid-ttk1IVDTTJ .mbr-section-btn {
  color: #000000;
}
.cid-tldlN9BiOQ {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tldlN9BiOQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tldlN9BiOQ .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-tldlN9BiOQ .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-tldlN9BiOQ .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-tldlN9BiOQ .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-tldlN9BiOQ .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-tldlN9BiOQ .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-tldlN9BiOQ .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-tldlN9BiOQ .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-tldlN9BiOQ .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-tldlN9BiOQ .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #0d7afc;
}
.cid-tldlN9BiOQ .text-content .social span:hover {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tldlN9BiOQ .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-tldlN9BiOQ .list-block {
  position: relative;
}
.cid-tldlN9BiOQ .list-block h4,
.cid-tldlN9BiOQ .list-block p {
  padding-left: 4.5rem;
}
.cid-tldlN9BiOQ .card-img {
  display: block;
}
.cid-tldlN9BiOQ input,
.cid-tldlN9BiOQ textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-tldlN9BiOQ input:focus,
.cid-tldlN9BiOQ textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-tldlN9BiOQ .form-control,
.cid-tldlN9BiOQ .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tldlN9BiOQ .form-control:hover,
.cid-tldlN9BiOQ .field-input:hover,
.cid-tldlN9BiOQ .form-control:focus,
.cid-tldlN9BiOQ .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tldlN9BiOQ input::-webkit-input-placeholder,
.cid-tldlN9BiOQ textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-tldlN9BiOQ input:-moz-placeholder,
.cid-tldlN9BiOQ textarea:-moz-placeholder {
  color: #28303f;
}
.cid-tldlN9BiOQ .jq-selectbox li,
.cid-tldlN9BiOQ .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tldlN9BiOQ .jq-selectbox li:hover,
.cid-tldlN9BiOQ .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tldlN9BiOQ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tldlN9BiOQ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tldlN9BiOQ .mbr-form {
  max-width: 550px;
}
.cid-tldlN9BiOQ .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tldlN9BiOQ .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tldlN9BiOQ .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tldlN9BiOQ .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tldlN9BiOQ .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-tldlN9BiOQ .mbr-form textarea {
  min-height: 100px;
}
.cid-tldlN9BiOQ .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #1b226e;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-tldlN9BiOQ .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-tldlN9BiOQ .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tldlN9BiOQ .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-tldlN9BiOQ .mbr-section-title,
  .cid-tldlN9BiOQ .content-title,
  .cid-tldlN9BiOQ .mbr-section-btn {
    text-align: left;
  }
}
.cid-tldlN9BiOQ .text-content .list-block .list-item-text {
  color: #000000;
}
.cid-tldlN9BiOQ .text-content .content-title,
.cid-tldlN9BiOQ .social {
  color: #1b226e;
}
.cid-tldlN9BiOQ LABEL {
  color: #000000;
}
.cid-tldlN9BiOQ .center-text {
  text-align: center !important;
}
.cid-tldlN9BiOQ .text-content .list-block .list-item-title {
  color: #1b226e;
}
.cid-tldmTF6kmo {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #25303e;
}
.cid-tldmTF6kmo section {
  position: relative;
}
.cid-tldmTF6kmo .widget-title {
  font-weight: 600;
}
.cid-tldmTF6kmo .widget-title.display-7 {
  font-size: 17px;
  line-height: 1.59;
  letter-spacing: 0.5px;
}
.cid-tldmTF6kmo .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}
.cid-tldmTF6kmo .item .card-box .item-title {
  font-weight: 300;
}
.cid-tldmTF6kmo .item .card-box .item-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tldmTF6kmo .item .card-img {
  width: auto;
  background-color: #1b226e;
  border-radius: 100%;
}
.cid-tldmTF6kmo .item .card-img .img1 {
  display: block;
  padding: 6px;
  font-size: 13px;
}
.cid-tldmTF6kmo img {
  height: 100px;
  padding-right: 8px;
}
.cid-tldmTF6kmo .img1 {
  color: #ffffff;
  background-color: #0d7afc;
  border-radius: 50%;
}
.cid-tldmTF6kmo .img2 {
  color: #ffffff;
  font-size: 10px;
}
.cid-tldmTF6kmo .line {
  width: 50px;
  height: 2px;
  display: inline-block;
  background: #0d7afc;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-tldmTF6kmo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tldmTF6kmo .content .link-wrap {
  font-weight: 300;
  color: #fff;
}
.cid-tldmTF6kmo .content .link-wrap.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tldmTF6kmo .content .date-wrap {
  color: #4f87fb;
  font-weight: 500;
}
.cid-tldmTF6kmo .content .date-wrap.display-4 {
  font-size: 13px;
  line-height: 1.3;
}
.cid-tldmTF6kmo .item,
.cid-tldmTF6kmo .link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-tldmTF6kmo .item h4,
.cid-tldmTF6kmo .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tldmTF6kmo .link .card-img {
  padding-bottom: 3px;
}
.cid-tldmTF6kmo .link .card-box .link-title {
  font-weight: 300;
}
.cid-tldmTF6kmo .link .card-box .link-title a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #0d7afc !important;
}
.cid-tldmTF6kmo .link .card-box .link-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tldmTF6kmo .card-img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-tldmTF6kmo h5 {
    text-align: left !important;
  }
  .cid-tldmTF6kmo .line-wrap {
    text-align: left !important;
  }
}
.cid-tldmTF6kmo .item-title {
  color: #ffffff;
}
.cid-tldmTF6kmo .tips {
  height: 70px;
  width: 70px;
  margin: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tldmTF6kmo .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
  text-align: left;
  line-height: 1.5;
}
.cid-tldmTF6kmo .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tldmTF6kmo .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #1b226e !important;
  box-shadow: none !important;
}
.cid-tldmTF6kmo .btn[class*='-outline']:active,
.cid-tldmTF6kmo .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tldmTF6kmo .list .list-item:first-child {
  padding-bottom: 15px;
}
.cid-tldmTF6kmo .list .list-item:last-child {
  margin-top: 10px;
}
.cid-tldmTF6kmo .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
}
.cid-tldmTF6kmo .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-tldmTF6kmo .box-list li:first-child {
  padding-top: 0;
}
.cid-tldmTF6kmo .box-list li:last-child {
  border-bottom: none;
}
.cid-tldmTF6kmo .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #0d7afc;
}
.cid-tldmTF6kmo .box-list.display-4 {
  line-height: 1.71;
}
.cid-tldmTF6kmo .mbr-text {
  line-height: 1.5;
  margin-bottom: 25px;
}
.cid-tldmTF6kmo .list .list-item .content .date-wrap {
  color: #dce7fb;
}
.cid-tldmTF6kmo .box-list li SPAN {
  color: #ffffff;
}
.cid-tlhSwUBEn0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #25303e;
}
.cid-tlhSwUBEn0 a:link {
  text-decoration: none;
}
.cid-tlhSwUBEn0 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tlhSwUBEn0 .icon-transition span:hover {
  background-color: #0d7afc;
}
.cid-tlhSwUBEn0 .inner-text {
  line-height: 3em;
}
.cid-tlhSwUBEn0 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tlhSwUBEn0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tlhSwUBEn0 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tlhSwUBEn0 .content-text,
.cid-tlhSwUBEn0 .inner-text {
  color: #c1c1c1;
}
.cid-tlhSwUBEn0 .content-text,
.cid-tlhSwUBEn0 .inner-text DIV {
  text-align: left;
}
.cid-tldmXtGr4K {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #25303e;
}
.cid-tldmXtGr4K .links {
  text-align: center;
  color: #ffffff;
}
.cid-tldmXtGr4K p {
  margin: 0;
}
.cid-tldmXtGr4K a {
  color: #ffffff;
}
.cid-tldmXtGr4K a:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tpjPDp0HC5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tpjPDp0HC5 .nav-item:focus,
.cid-tpjPDp0HC5 .nav-link:focus {
  outline: none;
}
.cid-tpjPDp0HC5 .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-tpjPDp0HC5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpjPDp0HC5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tpjPDp0HC5 .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-tpjPDp0HC5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpjPDp0HC5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpjPDp0HC5 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tpjPDp0HC5 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tpjPDp0HC5 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tpjPDp0HC5 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tpjPDp0HC5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpjPDp0HC5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpjPDp0HC5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tpjPDp0HC5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tpjPDp0HC5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tpjPDp0HC5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpjPDp0HC5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpjPDp0HC5 .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-tpjPDp0HC5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpjPDp0HC5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpjPDp0HC5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpjPDp0HC5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpjPDp0HC5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpjPDp0HC5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tpjPDp0HC5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpjPDp0HC5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpjPDp0HC5 .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-tpjPDp0HC5 .navbar .navbar-logo img {
    height: 4rem !important;
    width: auto;
  }
  .cid-tpjPDp0HC5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpjPDp0HC5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpjPDp0HC5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tpjPDp0HC5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tpjPDp0HC5 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tpjPDp0HC5 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tpjPDp0HC5 .navbar.navbar-short .navbar-logo img {
  height: 4rem !important;
}
.cid-tpjPDp0HC5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpjPDp0HC5 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tpjPDp0HC5 .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-tpjPDp0HC5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpjPDp0HC5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpjPDp0HC5 .dropdown-item.active,
.cid-tpjPDp0HC5 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tpjPDp0HC5 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tpjPDp0HC5 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tpjPDp0HC5 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tpjPDp0HC5 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tpjPDp0HC5 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tpjPDp0HC5 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tpjPDp0HC5 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tpjPDp0HC5 .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tpjPDp0HC5 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tpjPDp0HC5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tpjPDp0HC5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpjPDp0HC5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpjPDp0HC5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tpjPDp0HC5 .navbar-buttons {
  text-align: center;
}
.cid-tpjPDp0HC5 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-tpjPDp0HC5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #130947;
}
.cid-tpjPDp0HC5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpjPDp0HC5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpjPDp0HC5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpjPDp0HC5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpjPDp0HC5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpjPDp0HC5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpjPDp0HC5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpjPDp0HC5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpjPDp0HC5 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tpjPDp0HC5 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tpjPDp0HC5 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tpjPDp0HC5 .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-tpjPDp0HC5 .icons-menu span {
  font-size: 20px;
  color: #0d7afc;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpjPDp0HC5 .navbar {
    height: 77px;
  }
  .cid-tpjPDp0HC5 .navbar.opened {
    height: auto;
  }
  .cid-tpjPDp0HC5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpjPDp0HC5 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tpjPDp0HC5 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #0d7afc;
}
.cid-tpjPDp0HC5 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tpjPDp0HC5 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tplu2AuUpI {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/medical-physician-doctor-man-1150.webp");
}
.cid-tplu2AuUpI .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tplu2AuUpI .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-tplu2AuUpI .align-center {
    text-align: center;
  }
}
.cid-tplu2AuUpI H1 {
  color: #1b226e;
}
.cid-tplu2AuUpI .mbr-text,
.cid-tplu2AuUpI .mbr-section-btn {
  color: #000000;
}
.cid-tppxrYBLrf {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tppxrYBLrf H1 {
  color: #1b226e;
}
.cid-tppxrYBLrf .mbr-text,
.cid-tppxrYBLrf .mbr-section-btn {
  color: #000000;
}
.cid-tppxkH4ef7 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tppxkH4ef7 p {
  line-height: 1.6;
}
.cid-tppxkH4ef7 .card-box {
  width: -webkit-fill-available;
}
.cid-tppxkH4ef7 .card-img span {
  font-size: 96px;
  padding: 0.6rem;
  margin: 0 1rem;
  border-radius: 8px;
}
.cid-tppxkH4ef7 .card-img .img1 {
  color: #1b226e !important;
}
.cid-tppxkH4ef7 .card-img .img2 {
  color: #1b226e !important;
}
.cid-tppxkH4ef7 .card-img .img3 {
  color: #1b226e !important;
}
.cid-tppxkH4ef7 .card-img .img4 {
  color: #1b226e !important;
}
.cid-tppxkH4ef7 .card-img .img5 {
  color: #1b226e !important;
}
.cid-tppxkH4ef7 .card-img .img6 {
  color: #1b226e !important;
}
.cid-tppxkH4ef7 .mbr-iconfont {
  font-size: 3.5rem !important;
}
.cid-tppxkH4ef7 .card-wrapper {
  display: flex;
  flex-direction: row;
}
.cid-tppxkH4ef7 .card {
  height: 100%;
  margin: auto;
}
.cid-tppxkH4ef7 img {
  width: 100%;
  heigth: auto;
}
.cid-tppxkH4ef7 .card-title1 {
  color: #323cdf;
}
.cid-tppxkH4ef7 .mbr-text1 {
  color: #000000;
}
.cid-tppxkH4ef7 .card-title2 {
  color: #323cdf;
}
.cid-tppxkH4ef7 .mbr-text2 {
  color: #000000;
}
@media (max-width: 576px) {
  .cid-tppxkH4ef7 .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0 0!important;
  }
  .cid-tppxkH4ef7 .card-img {
    order: 1;
  }
  .cid-tppxkH4ef7 .card-box {
    order: 2;
  }
}
.cid-tppxkH4ef7 .card-img {
  width: auto;
}
.cid-tppF47WeOa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tppF47WeOa H1 {
  color: #1b226e;
}
.cid-tppF47WeOa .mbr-text,
.cid-tppF47WeOa .mbr-section-btn {
  color: #000000;
}
.cid-tppETyZ9aO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tppETyZ9aO .card-wrapper {
  background-color: #1b226e;
}
.cid-tppETyZ9aO .mbr-text {
  line-height: 34px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tppETyZ9aO .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tppETyZ9aO .card-wrapper {
    padding: 61px 50px 55px 70px;
  }
}
.cid-tpscdxJkF6 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpscdxJkF6 img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tpscdxJkF6 img {
    width: 100%;
  }
}
.cid-tpscdxJkF6 .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-tpscdxJkF6 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-tpscdxJkF6 .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tpscdxJkF6 .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0d7afc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-tpscdxJkF6 .mbr-text,
.cid-tpscdxJkF6 .mbr-section-btn {
  color: #000000;
}
.cid-tpscdxJkF6 .mbr-section-subtitle {
  color: #777777;
}
.cid-tpscdxJkF6 .mbr-list {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tpscdxJkF6 .mbr-list {
    justify-content: center;
    display: flex;
  }
}
.cid-tpscdxJkF6 .mbr-section-title {
  color: #1b226e;
}
.cid-tpukp9S2r1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpukp9S2r1 H1 {
  color: #1b226e;
}
.cid-tpukp9S2r1 .mbr-text,
.cid-tpukp9S2r1 .mbr-section-btn {
  color: #000000;
}
.cid-tpukp9S2r1 img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-tpukp9S2r1 .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tpukp9S2r1 img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tpuxV2N53C {
  padding-top: 75px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-tpuxV2N53C .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tpuxV2N53C .team-card:hover {
  transform: translateY(-10px);
}
.cid-tpuxV2N53C .card-wrap {
  background: #dce7fb;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-tpuxV2N53C .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tpuxV2N53C .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-tpuxV2N53C .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tpuxV2N53C .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tpuxV2N53C .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tpuxV2N53C .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tpuxV2N53C .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-tpuxV2N53C .card-title {
  color: #1b226e;
}
.cid-tpuxV2N53C .card-text,
.cid-tpuxV2N53C .mbr-section-btn {
  color: #000000;
}
.cid-tpuxV2N53C .mbr-role {
  color: #0d7afc;
}
.cid-tpuxV2N53C .main-title {
  color: #1b226e;
}
.cid-tpv3xmba93 {
  padding-top: 0px;
  padding-bottom: 90px;
  background: #ffffff;
}
.cid-tpv3xmba93 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tpv3xmba93 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tpv3xmba93 .card-wrap {
  background: #dce7fb;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-tpv3xmba93 .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tpv3xmba93 .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-tpv3xmba93 .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tpv3xmba93 .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tpv3xmba93 .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tpv3xmba93 .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tpv3xmba93 .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-tpv3xmba93 .card-title {
  color: #1b226e;
}
.cid-tpv3xmba93 .card-text,
.cid-tpv3xmba93 .mbr-section-btn {
  color: #000000;
}
.cid-tpv3xmba93 .mbr-role {
  color: #0d7afc;
}
.cid-tpv3xmba93 .main-title {
  color: #1b226e;
}
.cid-tpv4ontCrz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dce7fb;
}
.cid-tpv4ontCrz .row {
  flex-direction: row-reverse;
}
.cid-tpv4ontCrz .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tpv4ontCrz .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpv4ontCrz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tpv4ontCrz .mbr-section-title {
  color: #103178;
}
.cid-tpv4ontCrz .mbr-text,
.cid-tpv4ontCrz .mbr-section-btn {
  color: #000000;
}
.cid-tpv4p1tJPC {
  padding-top: 120px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tpv4p1tJPC .mbr-text,
.cid-tpv4p1tJPC .mbr-section-title {
  letter-spacing: -0.5px;
}
.cid-tpv4p1tJPC .img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-tpv4p1tJPC .mbr-text,
.cid-tpv4p1tJPC .mbr-section-btn,
.cid-tpv4p1tJPC .mbr-section-title {
  color: #ffffff;
}
.cid-tpv4p1tJPC .mbr-text {
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tpv4p1tJPC .mbr-text.display-7 {
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.cid-tpv4p1tJPC .mbr-section-title {
  font-weight: 700;
}
.cid-tpv4p1tJPC .mbr-section-title.display-2 {
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.cid-tpv4p1tJPC .btn {
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  letter-spacing: 1px;
  line-height: 1.71;
  border-width: 2px;
}
@media (max-width: 768px) {
  .cid-tpv4p1tJPC .mbr-section-title,
  .cid-tpv4p1tJPC .mbr-text,
  .cid-tpv4p1tJPC .mbr-section-btn {
    text-align: left;
  }
}
.cid-tpv4pQ9yj0 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tpv4pQ9yj0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tpv4pQ9yj0 .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-tpv4pQ9yj0 .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-tpv4pQ9yj0 .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-tpv4pQ9yj0 .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-tpv4pQ9yj0 .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-tpv4pQ9yj0 .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-tpv4pQ9yj0 .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-tpv4pQ9yj0 .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-tpv4pQ9yj0 .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-tpv4pQ9yj0 .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #0d7afc;
}
.cid-tpv4pQ9yj0 .text-content .social span:hover {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tpv4pQ9yj0 .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-tpv4pQ9yj0 .list-block {
  position: relative;
}
.cid-tpv4pQ9yj0 .list-block h4,
.cid-tpv4pQ9yj0 .list-block p {
  padding-left: 4.5rem;
}
.cid-tpv4pQ9yj0 .card-img {
  display: block;
}
.cid-tpv4pQ9yj0 input,
.cid-tpv4pQ9yj0 textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-tpv4pQ9yj0 input:focus,
.cid-tpv4pQ9yj0 textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-tpv4pQ9yj0 .form-control,
.cid-tpv4pQ9yj0 .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tpv4pQ9yj0 .form-control:hover,
.cid-tpv4pQ9yj0 .field-input:hover,
.cid-tpv4pQ9yj0 .form-control:focus,
.cid-tpv4pQ9yj0 .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tpv4pQ9yj0 input::-webkit-input-placeholder,
.cid-tpv4pQ9yj0 textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-tpv4pQ9yj0 input:-moz-placeholder,
.cid-tpv4pQ9yj0 textarea:-moz-placeholder {
  color: #28303f;
}
.cid-tpv4pQ9yj0 .jq-selectbox li,
.cid-tpv4pQ9yj0 .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tpv4pQ9yj0 .jq-selectbox li:hover,
.cid-tpv4pQ9yj0 .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tpv4pQ9yj0 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tpv4pQ9yj0 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tpv4pQ9yj0 .mbr-form {
  max-width: 550px;
}
.cid-tpv4pQ9yj0 .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tpv4pQ9yj0 .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tpv4pQ9yj0 .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tpv4pQ9yj0 .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tpv4pQ9yj0 .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-tpv4pQ9yj0 .mbr-form textarea {
  min-height: 100px;
}
.cid-tpv4pQ9yj0 .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #1b226e;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-tpv4pQ9yj0 .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-tpv4pQ9yj0 .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tpv4pQ9yj0 .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-tpv4pQ9yj0 .mbr-section-title,
  .cid-tpv4pQ9yj0 .content-title,
  .cid-tpv4pQ9yj0 .mbr-section-btn {
    text-align: left;
  }
}
.cid-tpv4pQ9yj0 .text-content .list-block .list-item-text {
  color: #000000;
}
.cid-tpv4pQ9yj0 .text-content .content-title,
.cid-tpv4pQ9yj0 .social {
  color: #1b226e;
}
.cid-tpv4pQ9yj0 LABEL {
  color: #000000;
}
.cid-tpv4pQ9yj0 .center-text {
  text-align: center !important;
}
.cid-tpv4pQ9yj0 .text-content .list-block .list-item-title {
  color: #1b226e;
}
.cid-tpv4qn9FWX {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #25303e;
}
.cid-tpv4qn9FWX section {
  position: relative;
}
.cid-tpv4qn9FWX .widget-title {
  font-weight: 600;
}
.cid-tpv4qn9FWX .widget-title.display-7 {
  font-size: 17px;
  line-height: 1.59;
  letter-spacing: 0.5px;
}
.cid-tpv4qn9FWX .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}
.cid-tpv4qn9FWX .item .card-box .item-title {
  font-weight: 300;
}
.cid-tpv4qn9FWX .item .card-box .item-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpv4qn9FWX .item .card-img {
  width: auto;
  background-color: #1b226e;
  border-radius: 100%;
}
.cid-tpv4qn9FWX .item .card-img .img1 {
  display: block;
  padding: 6px;
  font-size: 13px;
}
.cid-tpv4qn9FWX img {
  height: 100px;
  padding-right: 8px;
}
.cid-tpv4qn9FWX .img1 {
  color: #ffffff;
  background-color: #0d7afc;
  border-radius: 50%;
}
.cid-tpv4qn9FWX .img2 {
  color: #ffffff;
  font-size: 10px;
}
.cid-tpv4qn9FWX .line {
  width: 50px;
  height: 2px;
  display: inline-block;
  background: #0d7afc;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-tpv4qn9FWX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tpv4qn9FWX .content .link-wrap {
  font-weight: 300;
  color: #fff;
}
.cid-tpv4qn9FWX .content .link-wrap.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpv4qn9FWX .content .date-wrap {
  color: #4f87fb;
  font-weight: 500;
}
.cid-tpv4qn9FWX .content .date-wrap.display-4 {
  font-size: 13px;
  line-height: 1.3;
}
.cid-tpv4qn9FWX .item,
.cid-tpv4qn9FWX .link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-tpv4qn9FWX .item h4,
.cid-tpv4qn9FWX .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tpv4qn9FWX .link .card-img {
  padding-bottom: 3px;
}
.cid-tpv4qn9FWX .link .card-box .link-title {
  font-weight: 300;
}
.cid-tpv4qn9FWX .link .card-box .link-title a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #0d7afc !important;
}
.cid-tpv4qn9FWX .link .card-box .link-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpv4qn9FWX .card-img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-tpv4qn9FWX h5 {
    text-align: left !important;
  }
  .cid-tpv4qn9FWX .line-wrap {
    text-align: left !important;
  }
}
.cid-tpv4qn9FWX .item-title {
  color: #ffffff;
}
.cid-tpv4qn9FWX .tips {
  height: 70px;
  width: 70px;
  margin: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tpv4qn9FWX .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
  text-align: left;
  line-height: 1.5;
}
.cid-tpv4qn9FWX .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tpv4qn9FWX .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #1b226e !important;
  box-shadow: none !important;
}
.cid-tpv4qn9FWX .btn[class*='-outline']:active,
.cid-tpv4qn9FWX .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tpv4qn9FWX .list .list-item:first-child {
  padding-bottom: 15px;
}
.cid-tpv4qn9FWX .list .list-item:last-child {
  margin-top: 10px;
}
.cid-tpv4qn9FWX .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
}
.cid-tpv4qn9FWX .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-tpv4qn9FWX .box-list li:first-child {
  padding-top: 0;
}
.cid-tpv4qn9FWX .box-list li:last-child {
  border-bottom: none;
}
.cid-tpv4qn9FWX .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #0d7afc;
}
.cid-tpv4qn9FWX .box-list.display-4 {
  line-height: 1.71;
}
.cid-tpv4qn9FWX .mbr-text {
  line-height: 1.5;
  margin-bottom: 25px;
}
.cid-tpv4qn9FWX .list .list-item .content .date-wrap {
  color: #dce7fb;
}
.cid-tpv4qn9FWX .box-list li SPAN {
  color: #ffffff;
}
.cid-tpv4rahq0K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #25303e;
}
.cid-tpv4rahq0K a:link {
  text-decoration: none;
}
.cid-tpv4rahq0K .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tpv4rahq0K .icon-transition span:hover {
  background-color: #0d7afc;
}
.cid-tpv4rahq0K .inner-text {
  line-height: 3em;
}
.cid-tpv4rahq0K .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tpv4rahq0K .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tpv4rahq0K .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tpv4rahq0K .content-text,
.cid-tpv4rahq0K .inner-text {
  color: #c1c1c1;
}
.cid-tpv4rahq0K .content-text,
.cid-tpv4rahq0K .inner-text DIV {
  text-align: left;
}
.cid-tpv4rSIOm4 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #25303e;
}
.cid-tpv4rSIOm4 .links {
  text-align: center;
  color: #ffffff;
}
.cid-tpv4rSIOm4 p {
  margin: 0;
}
.cid-tpv4rSIOm4 a {
  color: #ffffff;
}
.cid-tpv4rSIOm4 a:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tpv4RLWgaM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tpv4RLWgaM .nav-item:focus,
.cid-tpv4RLWgaM .nav-link:focus {
  outline: none;
}
.cid-tpv4RLWgaM .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-tpv4RLWgaM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpv4RLWgaM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tpv4RLWgaM .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-tpv4RLWgaM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpv4RLWgaM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpv4RLWgaM .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tpv4RLWgaM .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tpv4RLWgaM .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tpv4RLWgaM .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tpv4RLWgaM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpv4RLWgaM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpv4RLWgaM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tpv4RLWgaM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tpv4RLWgaM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tpv4RLWgaM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpv4RLWgaM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpv4RLWgaM .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-tpv4RLWgaM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpv4RLWgaM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpv4RLWgaM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpv4RLWgaM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpv4RLWgaM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpv4RLWgaM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tpv4RLWgaM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpv4RLWgaM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpv4RLWgaM .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-tpv4RLWgaM .navbar .navbar-logo img {
    height: 4rem !important;
    width: auto;
  }
  .cid-tpv4RLWgaM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpv4RLWgaM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpv4RLWgaM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tpv4RLWgaM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tpv4RLWgaM .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tpv4RLWgaM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tpv4RLWgaM .navbar.navbar-short .navbar-logo img {
  height: 4rem !important;
}
.cid-tpv4RLWgaM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpv4RLWgaM .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tpv4RLWgaM .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-tpv4RLWgaM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpv4RLWgaM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpv4RLWgaM .dropdown-item.active,
.cid-tpv4RLWgaM .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tpv4RLWgaM .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tpv4RLWgaM .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tpv4RLWgaM .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tpv4RLWgaM .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tpv4RLWgaM .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tpv4RLWgaM .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tpv4RLWgaM .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tpv4RLWgaM .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tpv4RLWgaM .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tpv4RLWgaM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tpv4RLWgaM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpv4RLWgaM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpv4RLWgaM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tpv4RLWgaM .navbar-buttons {
  text-align: center;
}
.cid-tpv4RLWgaM 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-tpv4RLWgaM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #130947;
}
.cid-tpv4RLWgaM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpv4RLWgaM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpv4RLWgaM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpv4RLWgaM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpv4RLWgaM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpv4RLWgaM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpv4RLWgaM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpv4RLWgaM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpv4RLWgaM .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tpv4RLWgaM a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tpv4RLWgaM .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tpv4RLWgaM .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-tpv4RLWgaM .icons-menu span {
  font-size: 20px;
  color: #0d7afc;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpv4RLWgaM .navbar {
    height: 77px;
  }
  .cid-tpv4RLWgaM .navbar.opened {
    height: auto;
  }
  .cid-tpv4RLWgaM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpv4RLWgaM a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tpv4RLWgaM a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #0d7afc;
}
.cid-tpv4RLWgaM .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tpv4RLWgaM .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tpv4RN0lvp {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tpv4RN0lvp .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tpv4RN0lvp .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-tpv4RN0lvp .align-center {
    text-align: center;
  }
}
.cid-tpv4RN0lvp H1 {
  color: #1b226e;
}
.cid-tpv4RN0lvp .mbr-text,
.cid-tpv4RN0lvp .mbr-section-btn {
  color: #000000;
}
.cid-tpv4RN0lvp H3 {
  color: #323cdf;
}
.cid-tpv7gLLjBS {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #e6ecf2;
}
.cid-tpv7gLLjBS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tpv7gLLjBS input,
.cid-tpv7gLLjBS textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #130947;
  font-weight: 600;
}
.cid-tpv7gLLjBS input:focus,
.cid-tpv7gLLjBS textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-tpv7gLLjBS .form-control,
.cid-tpv7gLLjBS .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tpv7gLLjBS .form-control:hover,
.cid-tpv7gLLjBS .field-input:hover,
.cid-tpv7gLLjBS .form-control:focus,
.cid-tpv7gLLjBS .field-input:focus {
  background-color: #dce7fb;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tpv7gLLjBS input::-webkit-input-placeholder,
.cid-tpv7gLLjBS textarea::-webkit-input-placeholder {
  color: #1b226e;
}
.cid-tpv7gLLjBS input:-moz-placeholder,
.cid-tpv7gLLjBS textarea:-moz-placeholder {
  color: #1b226e;
}
.cid-tpv7gLLjBS .jq-selectbox li,
.cid-tpv7gLLjBS .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tpv7gLLjBS .jq-selectbox li:hover,
.cid-tpv7gLLjBS .jq-selectbox li.selected {
  background-color: #dce7fb;
  color: #000000;
}
.cid-tpv7gLLjBS .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tpv7gLLjBS .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #dce7fb;
}
.cid-tpv7gLLjBS .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tpv7gLLjBS .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tpv7gLLjBS .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tpv7gLLjBS .mbr-text {
  line-height: 2;
  letter-spacing: 0;
  margin-top: 20px;
  color: #000000;
}
.cid-tpv7gLLjBS .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tpv7gLLjBS img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tpv7gLLjBS .mbr-form {
  max-width: 550px;
}
.cid-tpv7gLLjBS .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
.cid-tpv7gLLjBS textarea {
  min-height: 150px;
}
.cid-tpv7gLLjBS .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #1b226e;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-tpv7gLLjBS .mbr-form .btn:hover {
  color: #ffffff;
}
.cid-tpv7gLLjBS .second {
  height: fit-content;
}
.cid-tpv7gLLjBS .second .inbox {
  position: static;
  bottom: -70px;
  width: 100%;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box {
  padding: 36px 20px 36px;
  background-color: #1b226e;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 22px;
  background-color: #dce7fb;
  font-size: 3.45rem;
  color: #130947;
  margin-right: 15px;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget .signature {
  width: 40%;
  height: 75px;
  display: inline-block;
  margin-right: 15px;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget .widget-content {
  display: inline-block;
  vertical-align: baseline;
  text-align: left;
  color: #ffffff;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  letter-spacing: 2px;
  font-weight: 700;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget .widget-content .widget-title.display-7 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 2px;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tpv7gLLjBS .second .inbox .inbox-box .info-widget .widget-content .widget-text.display-5 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .cid-tpv7gLLjBS .mbr-section-title {
    text-align: left;
  }
  .cid-tpv7gLLjBS .second {
    margin-top: 30px;
  }
}
.cid-tpv7gLLjBS .mbr-section-title,
.cid-tpv7gLLjBS .mbr-section-btn {
  color: #1b226e;
}
.cid-tpv7gLLjBS LABEL {
  color: #000000;
}
.cid-tpv4RRL1Hk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dce7fb;
}
.cid-tpv4RRL1Hk .row {
  flex-direction: row-reverse;
}
.cid-tpv4RRL1Hk .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tpv4RRL1Hk .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpv4RRL1Hk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tpv4RRL1Hk .mbr-section-title {
  color: #103178;
}
.cid-tpv4RRL1Hk .mbr-text,
.cid-tpv4RRL1Hk .mbr-section-btn {
  color: #000000;
}
.cid-tpv4RTjf0i {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #25303e;
}
.cid-tpv4RTjf0i section {
  position: relative;
}
.cid-tpv4RTjf0i .widget-title {
  font-weight: 600;
}
.cid-tpv4RTjf0i .widget-title.display-7 {
  font-size: 17px;
  line-height: 1.59;
  letter-spacing: 0.5px;
}
.cid-tpv4RTjf0i .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}
.cid-tpv4RTjf0i .item .card-box .item-title {
  font-weight: 300;
}
.cid-tpv4RTjf0i .item .card-box .item-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpv4RTjf0i .item .card-img {
  width: auto;
  background-color: #1b226e;
  border-radius: 100%;
}
.cid-tpv4RTjf0i .item .card-img .img1 {
  display: block;
  padding: 6px;
  font-size: 13px;
}
.cid-tpv4RTjf0i img {
  height: 100px;
  padding-right: 8px;
}
.cid-tpv4RTjf0i .img1 {
  color: #ffffff;
  background-color: #0d7afc;
  border-radius: 50%;
}
.cid-tpv4RTjf0i .img2 {
  color: #ffffff;
  font-size: 10px;
}
.cid-tpv4RTjf0i .line {
  width: 50px;
  height: 2px;
  display: inline-block;
  background: #0d7afc;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-tpv4RTjf0i .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tpv4RTjf0i .content .link-wrap {
  font-weight: 300;
  color: #fff;
}
.cid-tpv4RTjf0i .content .link-wrap.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpv4RTjf0i .content .date-wrap {
  color: #4f87fb;
  font-weight: 500;
}
.cid-tpv4RTjf0i .content .date-wrap.display-4 {
  font-size: 13px;
  line-height: 1.3;
}
.cid-tpv4RTjf0i .item,
.cid-tpv4RTjf0i .link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-tpv4RTjf0i .item h4,
.cid-tpv4RTjf0i .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tpv4RTjf0i .link .card-img {
  padding-bottom: 3px;
}
.cid-tpv4RTjf0i .link .card-box .link-title {
  font-weight: 300;
}
.cid-tpv4RTjf0i .link .card-box .link-title a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #0d7afc !important;
}
.cid-tpv4RTjf0i .link .card-box .link-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpv4RTjf0i .card-img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-tpv4RTjf0i h5 {
    text-align: left !important;
  }
  .cid-tpv4RTjf0i .line-wrap {
    text-align: left !important;
  }
}
.cid-tpv4RTjf0i .item-title {
  color: #ffffff;
}
.cid-tpv4RTjf0i .tips {
  height: 70px;
  width: 70px;
  margin: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tpv4RTjf0i .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
  text-align: left;
  line-height: 1.5;
}
.cid-tpv4RTjf0i .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tpv4RTjf0i .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #1b226e !important;
  box-shadow: none !important;
}
.cid-tpv4RTjf0i .btn[class*='-outline']:active,
.cid-tpv4RTjf0i .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tpv4RTjf0i .list .list-item:first-child {
  padding-bottom: 15px;
}
.cid-tpv4RTjf0i .list .list-item:last-child {
  margin-top: 10px;
}
.cid-tpv4RTjf0i .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
}
.cid-tpv4RTjf0i .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-tpv4RTjf0i .box-list li:first-child {
  padding-top: 0;
}
.cid-tpv4RTjf0i .box-list li:last-child {
  border-bottom: none;
}
.cid-tpv4RTjf0i .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #0d7afc;
}
.cid-tpv4RTjf0i .box-list.display-4 {
  line-height: 1.71;
}
.cid-tpv4RTjf0i .mbr-text {
  line-height: 1.5;
  margin-bottom: 25px;
}
.cid-tpv4RTjf0i .list .list-item .content .date-wrap {
  color: #dce7fb;
}
.cid-tpv4RTjf0i .box-list li SPAN {
  color: #ffffff;
}
.cid-tpv4RU6kX1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #25303e;
}
.cid-tpv4RU6kX1 a:link {
  text-decoration: none;
}
.cid-tpv4RU6kX1 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tpv4RU6kX1 .icon-transition span:hover {
  background-color: #0d7afc;
}
.cid-tpv4RU6kX1 .inner-text {
  line-height: 3em;
}
.cid-tpv4RU6kX1 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tpv4RU6kX1 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tpv4RU6kX1 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tpv4RU6kX1 .content-text,
.cid-tpv4RU6kX1 .inner-text {
  color: #c1c1c1;
}
.cid-tpv4RU6kX1 .content-text,
.cid-tpv4RU6kX1 .inner-text DIV {
  text-align: left;
}
.cid-tpv4RUvzel {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #25303e;
}
.cid-tpv4RUvzel .links {
  text-align: center;
  color: #ffffff;
}
.cid-tpv4RUvzel p {
  margin: 0;
}
.cid-tpv4RUvzel a {
  color: #ffffff;
}
.cid-tpv4RUvzel a:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tpvc5WDn57 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tpvc5WDn57 .nav-item:focus,
.cid-tpvc5WDn57 .nav-link:focus {
  outline: none;
}
.cid-tpvc5WDn57 .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-tpvc5WDn57 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpvc5WDn57 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tpvc5WDn57 .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-tpvc5WDn57 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpvc5WDn57 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpvc5WDn57 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tpvc5WDn57 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-tpvc5WDn57 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tpvc5WDn57 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tpvc5WDn57 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpvc5WDn57 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpvc5WDn57 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tpvc5WDn57 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tpvc5WDn57 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tpvc5WDn57 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpvc5WDn57 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpvc5WDn57 .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-tpvc5WDn57 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpvc5WDn57 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpvc5WDn57 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpvc5WDn57 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpvc5WDn57 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpvc5WDn57 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tpvc5WDn57 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpvc5WDn57 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpvc5WDn57 .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-tpvc5WDn57 .navbar .navbar-logo img {
    height: 4rem !important;
    width: auto;
  }
  .cid-tpvc5WDn57 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpvc5WDn57 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpvc5WDn57 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tpvc5WDn57 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tpvc5WDn57 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tpvc5WDn57 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tpvc5WDn57 .navbar.navbar-short .navbar-logo img {
  height: 4rem !important;
}
.cid-tpvc5WDn57 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpvc5WDn57 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tpvc5WDn57 .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-tpvc5WDn57 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpvc5WDn57 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpvc5WDn57 .dropdown-item.active,
.cid-tpvc5WDn57 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tpvc5WDn57 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tpvc5WDn57 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tpvc5WDn57 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tpvc5WDn57 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tpvc5WDn57 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tpvc5WDn57 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tpvc5WDn57 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tpvc5WDn57 .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tpvc5WDn57 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tpvc5WDn57 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tpvc5WDn57 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpvc5WDn57 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpvc5WDn57 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tpvc5WDn57 .navbar-buttons {
  text-align: center;
}
.cid-tpvc5WDn57 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-tpvc5WDn57 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #130947;
}
.cid-tpvc5WDn57 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpvc5WDn57 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpvc5WDn57 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpvc5WDn57 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpvc5WDn57 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpvc5WDn57 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpvc5WDn57 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpvc5WDn57 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpvc5WDn57 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tpvc5WDn57 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tpvc5WDn57 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tpvc5WDn57 .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-tpvc5WDn57 .icons-menu span {
  font-size: 20px;
  color: #0d7afc;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpvc5WDn57 .navbar {
    height: 77px;
  }
  .cid-tpvc5WDn57 .navbar.opened {
    height: auto;
  }
  .cid-tpvc5WDn57 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpvc5WDn57 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tpvc5WDn57 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #0d7afc;
}
.cid-tpvc5WDn57 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tpvc5WDn57 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tpvc5XnjxN {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/medical-physician-doctor-man-1150.webp");
}
.cid-tpvc5XnjxN .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tpvc5XnjxN .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-tpvc5XnjxN .align-center {
    text-align: center;
  }
}
.cid-tpvc5XnjxN H1 {
  color: #1b226e;
}
.cid-tpvc5XnjxN .mbr-text,
.cid-tpvc5XnjxN .mbr-section-btn {
  color: #000000;
}
.cid-tpvd2HCRr9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dce7fb;
}
.cid-tpvd2HCRr9 .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tpvd2HCRr9 .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tpvd2HCRr9 .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tpvd2HCRr9 .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-tpvd2HCRr9 .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tpvd2HCRr9 .row-item {
  margin-bottom: 2rem;
  border-radius: 8px;
}
.cid-tpvd2HCRr9 .row-item:hover .wrapper {
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tpvd2HCRr9 .row-item:hover .wrapper::before {
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tpvd2HCRr9 .row-item:hover .wrapper .card-img {
  z-index: 1;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tpvd2HCRr9 .row-item:hover .wrapper .card-img span {
  z-index: 1;
  color: #ffffff !important;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tpvd2HCRr9 .row-item:hover .wrapper .mbr-card-title {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tpvd2HCRr9 .row-item .wrapper {
  padding: 40px 0 30px;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.cid-tpvd2HCRr9 .row-item .wrapper::before {
  border-radius: 8px;
  position: absolute;
  content: '';
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: visible;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  background-color: #0d7afc;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-tpvd2HCRr9 .row-item .wrapper .card-img span {
  color: #0d7afc;
}
.cid-tpvd2HCRr9 .row-item .wrapper .mbr-iconfont {
  font-size: 50px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.cid-tpvd2HCRr9 .row-item .wrapper .mbr-card-title {
  color: #130947;
  font-weight: 700;
}
.cid-tpvd2HCRr9 .row-item .wrapper .mbr-card-title.display-7 {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.cid-tpvd2HCRr9 img {
  width: 90%;
  border-radius: 8px;
}
.cid-tpvd2HCRr9 .btn {
  border-radius: 3px;
  padding: 12px 40px;
  font-weight: 700;
}
.cid-tpvd2HCRr9 .btn.display-4 {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .cid-tpvd2HCRr9 .mbr-section-title {
    text-align: left;
  }
  .cid-tpvd2HCRr9 img {
    width: 100%;
  }
}
.cid-tpvd2HCRr9 .mbr-section-title,
.cid-tpvd2HCRr9 .mbr-section-btn {
  color: #1b226e;
}
.cid-tpvd2HCRr9 .row-item .wrapper .mbr-card-title {
  color: #1b226e;
}
.cid-tpvkjNhfJO {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpvkjNhfJO .card {
  background: #1b226e;
  border-radius: 10px;
}
.cid-tpvkjNhfJO img {
  width: 100%;
  border-radius: 10px;
}
.cid-tpvkjNhfJO .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-tpvkjNhfJO .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tpvkjNhfJO .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-tpvkjNhfJO img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-tpvkjNhfJO .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-tpvkjNhfJO img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-tpvkjNhfJO img {
    width: 100%;
  }
}
.cid-tpvkjNhfJO .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tpvkjNhfJO .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tpvkjNhfJO .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-tpvkjNhfJO .mbr-text,
.cid-tpvkjNhfJO .mbr-section-btn {
  color: #ffffff;
}
.cid-tpvkjNhfJO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tpvkjNhfJO .mbr-section-title {
  color: #ffffff;
}
.cid-tpvkjNhfJO .mbr-list {
  color: #ffffff;
}
.cid-tpvf7LLCJ6 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpvf7LLCJ6 .row {
  background: #dce7fb;
  padding: 3rem 2rem;
  margin: 0rem;
}
@media (max-width: 767px) {
  .cid-tpvf7LLCJ6 .row {
    padding: 1rem 0rem;
  }
}
.cid-tpvf7LLCJ6 img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tpvf7LLCJ6 img {
    width: 100%;
  }
}
.cid-tpvf7LLCJ6 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tpvf7LLCJ6 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tpvf7LLCJ6 .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-tpvf7LLCJ6 .mbr-text,
.cid-tpvf7LLCJ6 .mbr-section-btn {
  color: #000000;
}
.cid-tpvf7LLCJ6 .mbr-section-subtitle {
  color: #777777;
}
.cid-tpvf7LLCJ6 .mbr-section-title {
  color: #1b226e;
}
.cid-tpvf7LLCJ6 .mbr-list {
  color: #000000;
}
.cid-tpvf7LLCJ6 .card-b {
  padding-top: 5%;
  padding-bottom: 5%;
}
.cid-tpvf7LLCJ6 .card-c {
  border-radius: 10px;
}
.cid-tpvc5ZgWuZ {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpvc5ZgWuZ img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tpvc5ZgWuZ img {
    width: 100%;
  }
}
.cid-tpvc5ZgWuZ .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-tpvc5ZgWuZ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-tpvc5ZgWuZ .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tpvc5ZgWuZ .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0d7afc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-tpvc5ZgWuZ .mbr-text,
.cid-tpvc5ZgWuZ .mbr-section-btn {
  color: #000000;
}
.cid-tpvc5ZgWuZ .mbr-section-subtitle {
  color: #777777;
}
.cid-tpvc5ZgWuZ .mbr-list {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tpvc5ZgWuZ .mbr-list {
    justify-content: center;
    display: flex;
  }
}
.cid-tpvc5ZgWuZ .mbr-section-title {
  color: #1b226e;
}
.cid-tpvm7EB0Iq {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpvm7EB0Iq .card {
  background: #0d7afc;
  border-radius: 10px;
}
.cid-tpvm7EB0Iq img {
  width: 100%;
  border-radius: 10px;
}
.cid-tpvm7EB0Iq .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-tpvm7EB0Iq .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tpvm7EB0Iq .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-tpvm7EB0Iq img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-tpvm7EB0Iq .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-tpvm7EB0Iq img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-tpvm7EB0Iq img {
    width: 100%;
  }
}
.cid-tpvm7EB0Iq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tpvm7EB0Iq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tpvm7EB0Iq .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-tpvm7EB0Iq .mbr-text,
.cid-tpvm7EB0Iq .mbr-section-btn {
  color: #ffffff;
}
.cid-tpvm7EB0Iq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tpvm7EB0Iq .mbr-section-title {
  color: #ffffff;
}
.cid-tpvm7EB0Iq .mbr-list {
  color: #ffffff;
}
.cid-tpvmsWqgEQ {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpvmsWqgEQ .row {
  background: #dce7fb;
  padding: 3rem 2rem;
  margin: 0rem;
}
@media (max-width: 767px) {
  .cid-tpvmsWqgEQ .row {
    padding: 1rem 0rem;
  }
}
.cid-tpvmsWqgEQ img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tpvmsWqgEQ img {
    width: 100%;
  }
}
.cid-tpvmsWqgEQ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tpvmsWqgEQ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tpvmsWqgEQ .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-tpvmsWqgEQ .mbr-text,
.cid-tpvmsWqgEQ .mbr-section-btn {
  color: #000000;
}
.cid-tpvmsWqgEQ .mbr-section-subtitle {
  color: #777777;
}
.cid-tpvmsWqgEQ .mbr-section-title {
  color: #1b226e;
}
.cid-tpvmsWqgEQ .mbr-list {
  color: #000000;
}
.cid-tpvmsWqgEQ .card-b {
  padding-top: 5%;
  padding-bottom: 5%;
}
.cid-tpvmsWqgEQ .card-c {
  border-radius: 10px;
}
.cid-tpvmGDRbPy {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tpvmGDRbPy img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tpvmGDRbPy img {
    width: 100%;
  }
}
.cid-tpvmGDRbPy .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-tpvmGDRbPy .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-tpvmGDRbPy .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tpvmGDRbPy .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0d7afc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-tpvmGDRbPy .mbr-text,
.cid-tpvmGDRbPy .mbr-section-btn {
  color: #000000;
}
.cid-tpvmGDRbPy .mbr-section-subtitle {
  color: #777777;
}
.cid-tpvmGDRbPy .mbr-list {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tpvmGDRbPy .mbr-list {
    justify-content: center;
    display: flex;
  }
}
.cid-tpvmGDRbPy .mbr-section-title {
  color: #1b226e;
}
.cid-tpvc61XBRj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dce7fb;
}
.cid-tpvc61XBRj .row {
  flex-direction: row-reverse;
}
.cid-tpvc61XBRj .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tpvc61XBRj .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpvc61XBRj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tpvc61XBRj .mbr-section-title {
  color: #103178;
}
.cid-tpvc61XBRj .mbr-text,
.cid-tpvc61XBRj .mbr-section-btn {
  color: #000000;
}
.cid-tpvc62iDoz {
  padding-top: 120px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tpvc62iDoz .mbr-text,
.cid-tpvc62iDoz .mbr-section-title {
  letter-spacing: -0.5px;
}
.cid-tpvc62iDoz .img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-tpvc62iDoz .mbr-text,
.cid-tpvc62iDoz .mbr-section-btn,
.cid-tpvc62iDoz .mbr-section-title {
  color: #ffffff;
}
.cid-tpvc62iDoz .mbr-text {
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tpvc62iDoz .mbr-text.display-7 {
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.cid-tpvc62iDoz .mbr-section-title {
  font-weight: 700;
}
.cid-tpvc62iDoz .mbr-section-title.display-2 {
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.cid-tpvc62iDoz .btn {
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  letter-spacing: 1px;
  line-height: 1.71;
  border-width: 2px;
}
@media (max-width: 768px) {
  .cid-tpvc62iDoz .mbr-section-title,
  .cid-tpvc62iDoz .mbr-text,
  .cid-tpvc62iDoz .mbr-section-btn {
    text-align: left;
  }
}
.cid-tpvc62CBym {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tpvc62CBym .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tpvc62CBym .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-tpvc62CBym .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-tpvc62CBym .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-tpvc62CBym .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-tpvc62CBym .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-tpvc62CBym .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-tpvc62CBym .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-tpvc62CBym .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-tpvc62CBym .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-tpvc62CBym .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #0d7afc;
}
.cid-tpvc62CBym .text-content .social span:hover {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tpvc62CBym .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-tpvc62CBym .list-block {
  position: relative;
}
.cid-tpvc62CBym .list-block h4,
.cid-tpvc62CBym .list-block p {
  padding-left: 4.5rem;
}
.cid-tpvc62CBym .card-img {
  display: block;
}
.cid-tpvc62CBym input,
.cid-tpvc62CBym textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-tpvc62CBym input:focus,
.cid-tpvc62CBym textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-tpvc62CBym .form-control,
.cid-tpvc62CBym .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tpvc62CBym .form-control:hover,
.cid-tpvc62CBym .field-input:hover,
.cid-tpvc62CBym .form-control:focus,
.cid-tpvc62CBym .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tpvc62CBym input::-webkit-input-placeholder,
.cid-tpvc62CBym textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-tpvc62CBym input:-moz-placeholder,
.cid-tpvc62CBym textarea:-moz-placeholder {
  color: #28303f;
}
.cid-tpvc62CBym .jq-selectbox li,
.cid-tpvc62CBym .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tpvc62CBym .jq-selectbox li:hover,
.cid-tpvc62CBym .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tpvc62CBym .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tpvc62CBym .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tpvc62CBym .mbr-form {
  max-width: 550px;
}
.cid-tpvc62CBym .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tpvc62CBym .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tpvc62CBym .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tpvc62CBym .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tpvc62CBym .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-tpvc62CBym .mbr-form textarea {
  min-height: 100px;
}
.cid-tpvc62CBym .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #1b226e;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-tpvc62CBym .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-tpvc62CBym .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tpvc62CBym .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-tpvc62CBym .mbr-section-title,
  .cid-tpvc62CBym .content-title,
  .cid-tpvc62CBym .mbr-section-btn {
    text-align: left;
  }
}
.cid-tpvc62CBym .text-content .list-block .list-item-text {
  color: #000000;
}
.cid-tpvc62CBym .text-content .content-title,
.cid-tpvc62CBym .social {
  color: #1b226e;
}
.cid-tpvc62CBym LABEL {
  color: #000000;
}
.cid-tpvc62CBym .center-text {
  text-align: center !important;
}
.cid-tpvc62CBym .text-content .list-block .list-item-title {
  color: #1b226e;
}
.cid-tpvc63pP0W {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #25303e;
}
.cid-tpvc63pP0W section {
  position: relative;
}
.cid-tpvc63pP0W .widget-title {
  font-weight: 600;
}
.cid-tpvc63pP0W .widget-title.display-7 {
  font-size: 17px;
  line-height: 1.59;
  letter-spacing: 0.5px;
}
.cid-tpvc63pP0W .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}
.cid-tpvc63pP0W .item .card-box .item-title {
  font-weight: 300;
}
.cid-tpvc63pP0W .item .card-box .item-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpvc63pP0W .item .card-img {
  width: auto;
  background-color: #1b226e;
  border-radius: 100%;
}
.cid-tpvc63pP0W .item .card-img .img1 {
  display: block;
  padding: 6px;
  font-size: 13px;
}
.cid-tpvc63pP0W img {
  height: 100px;
  padding-right: 8px;
}
.cid-tpvc63pP0W .img1 {
  color: #ffffff;
  background-color: #0d7afc;
  border-radius: 50%;
}
.cid-tpvc63pP0W .img2 {
  color: #ffffff;
  font-size: 10px;
}
.cid-tpvc63pP0W .line {
  width: 50px;
  height: 2px;
  display: inline-block;
  background: #0d7afc;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-tpvc63pP0W .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tpvc63pP0W .content .link-wrap {
  font-weight: 300;
  color: #fff;
}
.cid-tpvc63pP0W .content .link-wrap.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpvc63pP0W .content .date-wrap {
  color: #4f87fb;
  font-weight: 500;
}
.cid-tpvc63pP0W .content .date-wrap.display-4 {
  font-size: 13px;
  line-height: 1.3;
}
.cid-tpvc63pP0W .item,
.cid-tpvc63pP0W .link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-tpvc63pP0W .item h4,
.cid-tpvc63pP0W .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tpvc63pP0W .link .card-img {
  padding-bottom: 3px;
}
.cid-tpvc63pP0W .link .card-box .link-title {
  font-weight: 300;
}
.cid-tpvc63pP0W .link .card-box .link-title a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #0d7afc !important;
}
.cid-tpvc63pP0W .link .card-box .link-title.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tpvc63pP0W .card-img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-tpvc63pP0W h5 {
    text-align: left !important;
  }
  .cid-tpvc63pP0W .line-wrap {
    text-align: left !important;
  }
}
.cid-tpvc63pP0W .item-title {
  color: #ffffff;
}
.cid-tpvc63pP0W .tips {
  height: 70px;
  width: 70px;
  margin: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tpvc63pP0W .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
  text-align: left;
  line-height: 1.5;
}
.cid-tpvc63pP0W .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tpvc63pP0W .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #1b226e !important;
  box-shadow: none !important;
}
.cid-tpvc63pP0W .btn[class*='-outline']:active,
.cid-tpvc63pP0W .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tpvc63pP0W .list .list-item:first-child {
  padding-bottom: 15px;
}
.cid-tpvc63pP0W .list .list-item:last-child {
  margin-top: 10px;
}
.cid-tpvc63pP0W .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
}
.cid-tpvc63pP0W .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-tpvc63pP0W .box-list li:first-child {
  padding-top: 0;
}
.cid-tpvc63pP0W .box-list li:last-child {
  border-bottom: none;
}
.cid-tpvc63pP0W .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #0d7afc;
}
.cid-tpvc63pP0W .box-list.display-4 {
  line-height: 1.71;
}
.cid-tpvc63pP0W .mbr-text {
  line-height: 1.5;
  margin-bottom: 25px;
}
.cid-tpvc63pP0W .list .list-item .content .date-wrap {
  color: #dce7fb;
}
.cid-tpvc63pP0W .box-list li SPAN {
  color: #ffffff;
}
.cid-tpvc64dVWp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #25303e;
}
.cid-tpvc64dVWp a:link {
  text-decoration: none;
}
.cid-tpvc64dVWp .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tpvc64dVWp .icon-transition span:hover {
  background-color: #0d7afc;
}
.cid-tpvc64dVWp .inner-text {
  line-height: 3em;
}
.cid-tpvc64dVWp .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tpvc64dVWp .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tpvc64dVWp .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tpvc64dVWp .content-text,
.cid-tpvc64dVWp .inner-text {
  color: #c1c1c1;
}
.cid-tpvc64dVWp .content-text,
.cid-tpvc64dVWp .inner-text DIV {
  text-align: left;
}
.cid-tpvc64FDQY {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #25303e;
}
.cid-tpvc64FDQY .links {
  text-align: center;
  color: #ffffff;
}
.cid-tpvc64FDQY p {
  margin: 0;
}
.cid-tpvc64FDQY a {
  color: #ffffff;
}
.cid-tpvc64FDQY a:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
