@import url(https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic);





body {
  font-family: Open Sans;
  font-style: normal;
  line-height: 1.3;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.2;
}
.mbr-text {
  font-style: normal;
  line-height: 1.3;
}
.mbr-normal {
  font-weight: 400;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 3.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.8rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.6rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  border-radius: 0;
  font-weight: 600;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 0px;
  margin: 0.4rem 0.8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn-sm {
  font-weight: 600;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
  border-radius: 6px;
}
.btn-md {
  font-weight: 600;
  letter-spacing: 0px;
  margin: 0.4rem 0.8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-lg {
  font-weight: 600;
  letter-spacing: 0px;
  margin: 0.4rem 0.8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 20px 25px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #0087ab !important;
}
.bg-success {
  background-color: #344cf1 !important;
}
.bg-info {
  background-color: #48d678 !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0087ab !important;
  border-color: #0087ab !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #004b5e !important;
  border-color: #004b5e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #004b5e !important;
  border-color: #004b5e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #48d678 !important;
  border-color: #48d678 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #6d6d6d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  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,
.btn-primary-outline.active {
  background: none;
  border-color: #003645;
  color: #003645;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #0087ab;
  border-color: #0087ab;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0087ab !important;
  border-color: #0087ab !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #0a1c44;
  border-color: #0a1c44;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #229649;
  color: #229649;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #48d678;
  border-color: #48d678;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #48d678 !important;
  border-color: #48d678 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0c21b3;
  color: #0c21b3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #344cf1;
  border-color: #344cf1;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #6d6d6d;
  background-color: #ececec;
  border-color: #ececec;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6d6d6d !important;
  background-color: #ececec !important;
  border-color: #ececec !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  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: #0087ab !important;
}
.text-secondary {
  color: #0a1c44 !important;
}
.text-success {
  color: #344cf1 !important;
}
.text-info {
  color: #48d678 !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #ececec !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #003645 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0c21b3 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #229649 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b9b9b9 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #48d678;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #ececec;
}
.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: #0087ab;
  border-color: #0087ab;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #0087ab;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2bd2ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f3f4fe;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #effbf3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
#scrollToTop a i:before {
  content: "";
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: "";
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value="Rubik"] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0.357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em 0.5em;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #0087ab;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: 0.9rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #0087ab;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #0087ab;
}
.btn-social + .btn {
  margin-left: 0.1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #0087ab;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #0087ab;
}
/* Headers*/
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.btn {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.18);
  font-weight: 600;
}
.btn .mbr-iconfont-btn {
  order: 1;
  margin: 0 !important;
  padding-left: 0.8rem !important;
}
.popover-content .btn {
  box-shadow: none !important;
}
.btn-primary:hover {
  color: #0087ab !important;
  background: white !important;
  border-color: white !important;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1xJceOf26 {
  padding-top: 255px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1xJceOf26 .mbr-section-title DIV {
  text-align: center;
}
.cid-r1xJceOf26 .mbr-text,
.cid-r1xJceOf26 .mbr-section-btn {
  text-align: center;
}
.cid-r1xO9SKkew {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-r1xO9SKkew .container-fluid {
  padding: 0;
}
.cid-r1xO9SKkew img {
  width: 100%;
}
.cid-r1xO9SKkew .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1200px) {
  .cid-r1xO9SKkew .content {
    padding: 3rem;
  }
}
.cid-r1xO9SKkew .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-r1xO9SKkew .img-col {
  padding: 0;
}
.cid-r1xUFkFgXf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1xUFkFgXf .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1xUFkFgXf .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1xUFkFgXf .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xUFkFgXf .rev,
.cid-r1xUFkFgXf .mbr-iconfont {
  display: inline-block;
}
.cid-r1xUFkFgXf .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xUFkFgXf .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1xUFkFgXf .card-box {
  padding: 1.5rem;
}
.cid-r1xUFkFgXf .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1xUFkFgXf .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xUFkFgXf .mbr-section-title,
.cid-r1xUFkFgXf .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1xUFkFgXf .rev {
  text-align: left;
}
.cid-r1xUFkFgXf .card-text,
.cid-r1xUFkFgXf .mbr-section-btn,
.cid-r1xUFkFgXf .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xUFkFgXf .rev I {
  color: #0a1c44;
}
.cid-r1xVj9qdOM {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #0087ab;
}
.cid-r1xVj9qdOM .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-r1xVj9qdOM .video-block {
    width: 100% !important;
  }
}
.cid-r1xVj9qdOM .mbr-section-title,
.cid-r1xVj9qdOM .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-r1xJBcdsAZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1xJBcdsAZ .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1xJBcdsAZ .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1xJBcdsAZ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xJBcdsAZ .rev,
.cid-r1xJBcdsAZ .mbr-iconfont {
  display: inline-block;
}
.cid-r1xJBcdsAZ .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xJBcdsAZ .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1xJBcdsAZ .card-box {
  padding: 1.5rem;
}
.cid-r1xJBcdsAZ .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1xJBcdsAZ .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xJBcdsAZ .mbr-section-title,
.cid-r1xJBcdsAZ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1xJBcdsAZ .rev {
  text-align: left;
}
.cid-r1xJBcdsAZ .card-text,
.cid-r1xJBcdsAZ .mbr-section-btn,
.cid-r1xJBcdsAZ .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xJBcdsAZ .rev I {
  color: #0a1c44;
}
.cid-r1xUX724Ia {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1xUX724Ia .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1xUX724Ia p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1yaSB6rpk {
  padding-top: 165px;
  padding-bottom: 45px;
  background-color: #0087ab;
}
.cid-r1yaSB6rpk .mbr-section-title DIV {
  text-align: center;
}
.cid-r1xPYfNJiF {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1xPYxthIV {
  padding-top: 150px;
  padding-bottom: 150px;
}
.cid-r1xPYxthIV .mbr-section-title {
  text-align: center;
}
.cid-r1xPYxthIV .mbr-text,
.cid-r1xPYxthIV .mbr-section-btn {
  text-align: center;
}
.cid-r1xPYIG5U6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-r1xPYIG5U6 .container-fluid {
  padding: 0;
}
.cid-r1xPYIG5U6 img {
  width: 100%;
}
.cid-r1xPYIG5U6 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-r1xPYIG5U6 .content {
    padding: 3rem;
  }
}
.cid-r1xPYIG5U6 .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-r1xPYIG5U6 .img-col {
  padding: 0;
  margin: auto;
}
.cid-r2hd8NWnld {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-r2hd8NWnld img {
  width: 100%;
}
.cid-r2hd8NWnld p {
  line-height: 1.6;
}
.cid-r2hd8NWnld .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-r2hd8NWnld .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-r2hd8NWnld .mbr-text,
.cid-r2hd8NWnld .mbr-section-btn {
  color: #656565;
  text-align: left;
}
.cid-r2hd8NWnld .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hd8NWnld .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-r2hd8NWnld .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-r2hd8NWnld .mbr-section-title,
.cid-r2hd8NWnld .line-wrap {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-r2hd8NWnld .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-r2hdfnz0CN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r2hdfnz0CN .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r2hdfnz0CN .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r2hdfnz0CN .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hdfnz0CN p {
  line-height: 1.6;
}
.cid-r2hdfnz0CN .rev,
.cid-r2hdfnz0CN .mbr-iconfont {
  display: inline-block;
}
.cid-r2hdfnz0CN .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r2hdfnz0CN .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-r2hdfnz0CN .card-box {
  padding: 1.5rem;
}
.cid-r2hdfnz0CN .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r2hdfnz0CN .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r2hdfnz0CN .mbr-section-title,
.cid-r2hdfnz0CN .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r2hdfnz0CN .rev {
  text-align: left;
}
.cid-r2hdfnz0CN .card-text,
.cid-r2hdfnz0CN .mbr-section-btn,
.cid-r2hdfnz0CN .ico-line {
  text-align: left;
  color: #9e9e9e;
}
.cid-r2hdfnz0CN .rev i {
  color: #0a1c44;
}
.cid-r1xPZMjSpV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1xPZMjSpV .card {
  align-items: center;
}
.cid-r1xPZMjSpV .card-box {
  width: 100%;
}
.cid-r1xPZMjSpV .card-img {
  padding: 1rem;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-r1xPZMjSpV .card-img span {
  font-size: 3rem;
  color: #0a1c44;
}
.cid-r1xPZMjSpV .mbr-text {
  color: #656565;
}
.cid-r1xPZMjSpV p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-r1xPZMjSpV .card {
    margin-bottom: 2rem;
  }
}
.cid-r1xPZMjSpV .card-title,
.cid-r1xPZMjSpV .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-r1xPZMjSpV .mbr-section-title {
  text-align: center;
}
.cid-r1xPZMjSpV .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xPZMjSpV .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xPZMjSpV .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xPZMjSpV .line-wrap2 {
  display: inline-block;
  width: 100%;
}
.cid-r1xPZMjSpV .line2 {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cid-r1xPZMjSpV .mbr-section-title,
.cid-r1xPZMjSpV .line-wrap {
  text-align: center;
}
.cid-r1xPZMjSpV .mbr-text,
.cid-r1xPZMjSpV .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-r2hdkFmadO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-r2hdkFmadO .row {
  margin: 0;
}
.cid-r2hdkFmadO .container-fluid {
  padding: 0;
}
.cid-r2hdkFmadO p {
  line-height: 1.6;
}
.cid-r2hdkFmadO .img {
  padding: 0;
  width: 100%;
  overflow: hidden;
  max-height: 940px;
}
.cid-r2hdkFmadO .rev {
  margin: 0;
  color: #000000;
  text-align: left;
}
.cid-r2hdkFmadO .mbr-section-btn {
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.cid-r2hdkFmadO .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 10rem;
  padding-right: 10rem;
}
.cid-r2hdkFmadO .mbr-section-title {
  text-align: left;
}
.cid-r2hdkFmadO .card-wrapper {
  width: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 1.5rem;
}
.cid-r2hdkFmadO .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hdkFmadO .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
.cid-r2hdkFmadO .mbr-iconfont {
  font-size: 1rem;
}
.cid-r2hdkFmadO .ico-line-wrap {
  display: flex;
  justify-content: space-between;
}
.cid-r2hdkFmadO .ico-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-r2hdkFmadO .card-title {
  color: #0087ab;
  text-align: left;
}
.cid-r2hdkFmadO .card-img {
  margin: auto;
  border-radius: 0;
  width: 155px;
  height: 100%;
}
.cid-r2hdkFmadO .card-box {
  padding: 1rem 1rem;
  width: 100%;
  align-self: center;
}
.cid-r2hdkFmadO .mbr-section-title,
.cid-r2hdkFmadO .line-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-r2hdkFmadO .card-box,
.cid-r2hdkFmadO .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-r2hdkFmadO .text,
.cid-r2hdkFmadO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .cid-r2hdkFmadO .content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
  .cid-r2hdkFmadO .big-img {
    margin-left: -100px;
  }
}
@media (max-width: 1200px) {
  .cid-r2hdkFmadO .content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-r2hdkFmadO .big-img {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .cid-r2hdkFmadO .content {
    padding: 3rem;
  }
  .cid-r2hdkFmadO .card-wrapper {
    flex-direction: column;
  }
  .cid-r2hdkFmadO .card-img {
    width: 100%;
  }
}
.cid-r2hdo4nboI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r2hdo4nboI .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r2hdo4nboI .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hdo4nboI .rev,
.cid-r2hdo4nboI .mbr-iconfont {
  display: inline-block;
}
.cid-r2hdo4nboI .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r2hdo4nboI .card-img {
  position: relative;
}
.cid-r2hdo4nboI .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-r2hdo4nboI .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-r2hdo4nboI .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-r2hdo4nboI .card-box {
  padding: 1.5rem;
}
.cid-r2hdo4nboI .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r2hdo4nboI .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r2hdo4nboI .mbr-section-title,
.cid-r2hdo4nboI .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-r2hdo4nboI .card-text,
.cid-r2hdo4nboI .mbr-section-btn,
.cid-r2hdo4nboI .ico-line {
  text-align: left;
  color: #9e9e9e;
}
.cid-r2hdo4nboI .mbr-text,
.cid-r2hdo4nboI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-r2hdo4nboI .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-r2hds7ER4y {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r2hds7ER4y .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r2hds7ER4y .card-img {
  overflow: hidden;
  border-radius: 0;
  position: relative;
}
.cid-r2hds7ER4y .card-img:hover .img-hover {
  opacity: 0.5;
}
.cid-r2hds7ER4y .card-img:hover .img-btn {
  opacity: 1;
  margin-top: -15%;
}
.cid-r2hds7ER4y .btn {
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-r2hds7ER4y .img-btn {
  transition: all 0.3s;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  margin-top: -10%;
  left: 50%;
  margin-left: -50%;
  opacity: 0;
}
.cid-r2hds7ER4y .img-hover {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  background: #0a1c44;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.cid-r2hds7ER4y .content-box {
  display: flex;
}
.cid-r2hds7ER4y .date-box {
  background: #0a1c44;
  width: 110px;
  padding: 5px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.cid-r2hds7ER4y .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r2hds7ER4y .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hds7ER4y .rev,
.cid-r2hds7ER4y .mbr-iconfont {
  display: inline-block;
}
.cid-r2hds7ER4y .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r2hds7ER4y .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-r2hds7ER4y .card-box {
  padding: 1rem;
}
.cid-r2hds7ER4y .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r2hds7ER4y .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r2hds7ER4y .mbr-section-title,
.cid-r2hds7ER4y .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r2hds7ER4y .rev {
  text-align: left;
}
.cid-r2hds7ER4y .card-text,
.cid-r2hds7ER4y .mbr-section-btn,
.cid-r2hds7ER4y .ico-line {
  text-align: left;
  color: #9e9e9e;
}
.cid-r2hds7ER4y .rev i {
  color: #0a1c44;
}
.cid-r2hds7ER4y .date {
  text-align: center;
  color: #ffffff;
}
.cid-r2hds7ER4y .mounth {
  text-align: center;
  color: #ffffff;
}
.cid-r2hds7ER4y .time {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-r2hds7ER4y .img-hover {
    opacity: 0.5;
  }
  .cid-r2hds7ER4y .img-btn {
    opacity: 1;
    margin-top: -15%;
  }
}
.cid-r1xQ0Tc5R9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r1xQ0Tc5R9 .card-title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.cid-r1xQ0Tc5R9 .card {
  margin-bottom: 25px;
  owerflow: hidden;
  height: 200px;
}
.cid-r1xQ0Tc5R9 .card:hover .card-img {
  transform: scale(1.05);
}
.cid-r1xQ0Tc5R9 .card:hover .card-wrapper:before {
  opacity: 0.8;
  background: #0087ab;
}
.cid-r1xQ0Tc5R9 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xQ0Tc5R9 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.cid-r1xQ0Tc5R9 .card-big {
  height: 425px;
}
.cid-r1xQ0Tc5R9 .card-wrapper {
  overflow: hidden;
  position: relative;
}
.cid-r1xQ0Tc5R9 .card-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0.4;
  z-index: 10;
  pointer-events: none;
}
.cid-r1xQ0Tc5R9 .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-r1xQ0Tc5R9 .card-box {
  position: absolute;
  overflow: hidden;
  height: fit-content;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.cid-r1xQ0Tc5R9 .mbr-section-title {
  color: #656565;
  text-align: center;
}
.cid-r1xQ0Tc5R9 .card-sub-title {
  text-align: center;
  font-weight: 500;
}
.cid-r1xQ0Tc5R9 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xQ0Tc5R9 .mbr-section-title,
.cid-r1xQ0Tc5R9 .line-wrap {
  color: #000000;
  text-align: center;
}
.cid-r1xQ0Tc5R9 .mbr-text {
  text-align: center;
  color: #656565;
}
@media (max-width: 992px) {
  .cid-r1xQ0Tc5R9 .card-big {
    height: 200px;
  }
  .cid-r1xQ0Tc5R9 .card-img {
    margin-top: -15%;
  }
}
.cid-r2hdwLjtXC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r2hdwLjtXC .row-main {
  flex-direction: row-reverse;
}
.cid-r2hdwLjtXC .card {
  align-items: center;
  display: flex;
  flex-direction: row;
  padding-bottom: 0.5rem;
}
.cid-r2hdwLjtXC .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-r2hdwLjtXC .img {
  margin: auto;
}
.cid-r2hdwLjtXC .card-box {
  width: 100%;
}
.cid-r2hdwLjtXC p {
  line-height: 1.5;
  margin: 0;
}
.cid-r2hdwLjtXC .box {
  padding: 3rem 13rem;
  margin: auto;
}
.cid-r2hdwLjtXC .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-r2hdwLjtXC .card-img span {
  font-size: 3.6rem;
  color: #0a1c44;
}
.cid-r2hdwLjtXC img {
  width: 100%;
}
.cid-r2hdwLjtXC .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-r2hdwLjtXC .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r2hdwLjtXC .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-r2hdwLjtXC .box {
    padding: 2rem 3rem;
  }
}
.cid-r2hdwLjtXC .card-title,
.cid-r2hdwLjtXC .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-r2hdwLjtXC .mbr-section-title {
  text-align: center;
}
.cid-r2hdwLjtXC .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r2hdwLjtXC .mbr-section-title,
.cid-r2hdwLjtXC .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r2hdwLjtXC .mbr-text,
.cid-r2hdwLjtXC .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-r1ybqCWbb1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1ybqCWbb1 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1ybqCWbb1 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1ybqCWbb1 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1ybqCWbb1 .rev,
.cid-r1ybqCWbb1 .mbr-iconfont {
  display: inline-block;
}
.cid-r1ybqCWbb1 .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1ybqCWbb1 .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1ybqCWbb1 .card-box {
  padding: 1.5rem;
}
.cid-r1ybqCWbb1 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1ybqCWbb1 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1ybqCWbb1 .mbr-section-title,
.cid-r1ybqCWbb1 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1ybqCWbb1 .rev {
  text-align: left;
}
.cid-r1ybqCWbb1 .card-text,
.cid-r1ybqCWbb1 .mbr-section-btn,
.cid-r1ybqCWbb1 .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1ybqCWbb1 .rev I {
  color: #0a1c44;
}
.cid-r1yboEWUCq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1yboEWUCq .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1yboEWUCq p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1ybBfpFnR {
  padding-top: 165px;
  padding-bottom: 45px;
  background-color: #0087ab;
}
.cid-r1ybBfpFnR .mbr-section-title DIV {
  text-align: center;
}
.cid-r1xQ8CQ5wh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1xQ8CQ5wh .mbr-section-title {
  text-align: left;
}
.cid-r1xQ8CQ5wh .mbr-text,
.cid-r1xQ8CQ5wh .mbr-section-btn {
  text-align: left;
}
.cid-r1xQ8CQ5wh .mbr-iconfont {
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-r1xQ9FfBjZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-r1xQ9FfBjZ .progress {
  width: 100%;
}
.cid-r1xQ9FfBjZ progress {
  height: 10px;
}
.cid-r1xQ9FfBjZ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xQ9FfBjZ p {
  margin-bottom: 0.5rem;
}
.cid-r1xQ9FfBjZ .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xQ9FfBjZ .mbr-section-subtitle {
  color: #767676;
}
.cid-r1xQ9FfBjZ .progress_value {
  position: relative;
}
.cid-r1xQ9FfBjZ .progress_elements {
  margin: 0 auto;
}
.cid-r1xQ9FfBjZ .title-wrap {
  display: flex;
  justify-content: space-between;
}
.cid-r1xQ9FfBjZ .progress1 .progressbar-number:before,
.cid-r1xQ9FfBjZ .progress2 .progressbar-number:before,
.cid-r1xQ9FfBjZ .progress3 .progressbar-number:before,
.cid-r1xQ9FfBjZ .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-r1xQ9FfBjZ progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-r1xQ9FfBjZ progress::-webkit-progress-value {
  background: #0087ab;
}
.cid-r1xQ9FfBjZ progress[value]::-moz-progress-bar {
  background: #0087ab;
}
.cid-r1xQ9FfBjZ progress::-ms-fill {
  background: #0087ab;
}
.cid-r1xQ9FfBjZ .progress1 .progressbar-number:before {
  content: "43";
}
.cid-r1xQ9FfBjZ .progress2 .progressbar-number:before {
  content: "73";
}
.cid-r1xQ9FfBjZ .progress3 .progressbar-number:before {
  content: "90";
}
.cid-r1xQ9FfBjZ .progress4 .progressbar-number:before {
  content: "100";
}
.cid-r1xQ9FfBjZ .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-r1xQ9FfBjZ .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-r1xQ9FfBjZ .progress_value span {
  padding-left: 30px;
}
.cid-r1xQ9FfBjZ .mbr-section-title,
.cid-r1xQ9FfBjZ .line-wrap {
  text-align: center;
}
.cid-r1xQ9FfBjZ .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-r1xQ9FfBjZ .progressbar-title p,
.cid-r1xQ9FfBjZ .progress_value {
  color: #656565;
}
.cid-r1xQ9QIEXF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-r1xQ9QIEXF h3 {
  text-align: center;
  font-weight: 300;
}
.cid-r1xQ9QIEXF .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-r1xQ9QIEXF .mbr-section-subtitle {
  color: #767676;
}
.cid-r1xQ9QIEXF .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-r1xQ9QIEXF ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-r1xQ9QIEXF path {
  stroke: #0087ab;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-r1xQ9QIEXF .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-r1xQ9QIEXF .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xQ9QIEXF .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xQ9QIEXF .mbr-section-title,
.cid-r1xQ9QIEXF .line-wrap {
  text-align: center;
}
.cid-r1xQ9QIEXF p {
  color: #656565;
}
.cid-r1xQ9ZSpNl {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-r1xQ9ZSpNl .progress {
  width: 100%;
}
.cid-r1xQ9ZSpNl progress {
  height: 20px;
}
.cid-r1xQ9ZSpNl .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xQ9ZSpNl p {
  margin-bottom: 0.5rem;
}
.cid-r1xQ9ZSpNl .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xQ9ZSpNl .mbr-section-subtitle {
  color: #767676;
}
.cid-r1xQ9ZSpNl .progress_value {
  position: relative;
}
.cid-r1xQ9ZSpNl .progress_elements {
  margin: 0 auto;
}
.cid-r1xQ9ZSpNl .title-wrap {
  display: flex;
  justify-content: space-between;
}
.cid-r1xQ9ZSpNl .progress1 .progressbar-number:before,
.cid-r1xQ9ZSpNl .progress2 .progressbar-number:before,
.cid-r1xQ9ZSpNl .progress3 .progressbar-number:before,
.cid-r1xQ9ZSpNl .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-r1xQ9ZSpNl progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-r1xQ9ZSpNl progress::-webkit-progress-value {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-color: #0087ab;
  background-size: 40px 40px;
}
.cid-r1xQ9ZSpNl progress[value]::-moz-progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-color: #0087ab;
  background-size: 40px 40px;
}
.cid-r1xQ9ZSpNl progress::-ms-fill {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-color: #0087ab;
  background-size: 40px 40px;
}
.cid-r1xQ9ZSpNl .progress1 .progressbar-number:before {
  content: "43";
}
.cid-r1xQ9ZSpNl .progress2 .progressbar-number:before {
  content: "73";
}
.cid-r1xQ9ZSpNl .progress3 .progressbar-number:before {
  content: "90";
}
.cid-r1xQ9ZSpNl .progress4 .progressbar-number:before {
  content: "100";
}
.cid-r1xQ9ZSpNl .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-r1xQ9ZSpNl .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-r1xQ9ZSpNl .progress_value span {
  padding-left: 30px;
}
.cid-r1xQ9ZSpNl .mbr-section-title,
.cid-r1xQ9ZSpNl .line-wrap {
  text-align: center;
}
.cid-r1xQ9ZSpNl .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-r1xQ9ZSpNl .progressbar-title p,
.cid-r1xQ9ZSpNl .progress_value {
  color: #656565;
}
.cid-r1ybCmMLw0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1ybCmMLw0 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1ybCmMLw0 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1ybCmMLw0 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1ybCmMLw0 .rev,
.cid-r1ybCmMLw0 .mbr-iconfont {
  display: inline-block;
}
.cid-r1ybCmMLw0 .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1ybCmMLw0 .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1ybCmMLw0 .card-box {
  padding: 1.5rem;
}
.cid-r1ybCmMLw0 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1ybCmMLw0 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1ybCmMLw0 .mbr-section-title,
.cid-r1ybCmMLw0 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1ybCmMLw0 .rev {
  text-align: left;
}
.cid-r1ybCmMLw0 .card-text,
.cid-r1ybCmMLw0 .mbr-section-btn,
.cid-r1ybCmMLw0 .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1ybCmMLw0 .rev I {
  color: #0a1c44;
}
.cid-r1ybDgpXbm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1ybDgpXbm .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1ybDgpXbm p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1ybPBP0jx {
  padding-top: 165px;
  padding-bottom: 45px;
  background-color: #0087ab;
}
.cid-r1ybPBP0jx .mbr-section-title DIV {
  text-align: center;
}
.cid-r1xQbKMERa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-r1xQbKMERa .mbr-section-subtitle {
  color: #767676;
}
.cid-r1xQbKMERa .container-table {
  margin: 0 auto;
}
.cid-r1xQbKMERa table.dataTable thead .sorting:before,
.cid-r1xQbKMERa table.dataTable thead .sorting:after,
.cid-r1xQbKMERa table.dataTable thead .sorting_asc:before,
.cid-r1xQbKMERa table.dataTable thead .sorting_asc:after,
.cid-r1xQbKMERa table.dataTable thead .sorting_desc:before,
.cid-r1xQbKMERa table.dataTable thead .sorting_desc:after,
.cid-r1xQbKMERa table.dataTable thead .sorting_asc_disabled:before,
.cid-r1xQbKMERa table.dataTable thead .sorting_asc_disabled:after,
.cid-r1xQbKMERa table.dataTable thead .sorting_desc_disabled:before,
.cid-r1xQbKMERa table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px!important;
}
.cid-r1xQbKMERa .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xQbKMERa .form-control {
  min-height: 2.5em;
  padding: .5em .5em;
}
.cid-r1xQbKMERa .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xQbKMERa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-r1xQbKMERa .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #0a1c44;
  border-bottom: 1px solid #0a1c44;
}
.cid-r1xQbKMERa .head-item:hover {
  background: #0a1c44;
  color: inherit;
}
.cid-r1xQbKMERa .table-heads {
  color: #ffffff;
}
.cid-r1xQbKMERa .dataTables_wrapper {
  display: block;
}
.cid-r1xQbKMERa .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-r1xQbKMERa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-r1xQbKMERa table {
  width: 100% !important;
  margin-top: 6px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 0;
}
.cid-r1xQbKMERa table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-r1xQbKMERa table th:hover {
  background: #e9e9e9;
  color: #000000;
}
.cid-r1xQbKMERa table td {
  border-top: 1px solid #e9e9e9;
}
.cid-r1xQbKMERa table.table {
  background: #ffffff;
}
.cid-r1xQbKMERa .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-r1xQbKMERa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-r1xQbKMERa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-r1xQbKMERa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-r1xQbKMERa .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-r1xQbKMERa .dataTables_filter {
    text-align: center;
  }
  .cid-r1xQbKMERa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-r1xQbKMERa .mbr-section-title,
.cid-r1xQbKMERa .line-wrap {
  text-align: center;
}
.cid-r1xQbKMERa .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-r1xQbUX3HL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r1xQbUX3HL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-r1xQbUX3HL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-r1xQbUX3HL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-r1xQbUX3HL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-r1xQbUX3HL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-r1xQbUX3HL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-r1xQbUX3HL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-r1xQbUX3HL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-r1xQbUX3HL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-r1ybQ6OXZS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1ybQ6OXZS .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1ybQ6OXZS .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1ybQ6OXZS .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1ybQ6OXZS .rev,
.cid-r1ybQ6OXZS .mbr-iconfont {
  display: inline-block;
}
.cid-r1ybQ6OXZS .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1ybQ6OXZS .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1ybQ6OXZS .card-box {
  padding: 1.5rem;
}
.cid-r1ybQ6OXZS .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1ybQ6OXZS .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1ybQ6OXZS .mbr-section-title,
.cid-r1ybQ6OXZS .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1ybQ6OXZS .rev {
  text-align: left;
}
.cid-r1ybQ6OXZS .card-text,
.cid-r1ybQ6OXZS .mbr-section-btn,
.cid-r1ybQ6OXZS .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1ybQ6OXZS .rev I {
  color: #0a1c44;
}
.cid-r1ybQp8xAM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1ybQp8xAM .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1ybQp8xAM p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1yc0XUEJz {
  padding-top: 165px;
  padding-bottom: 45px;
  background-color: #0087ab;
}
.cid-r1yc0XUEJz .mbr-section-title DIV {
  text-align: center;
}
.cid-r2hdJbTpDQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r2hdJbTpDQ .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-r2hdJbTpDQ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hdJbTpDQ .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r2hdJbTpDQ .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-r2hdJbTpDQ .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-r2hdJbTpDQ .card-box {
  padding: 1rem;
}
.cid-r2hdJbTpDQ .mbr-section-title,
.cid-r2hdJbTpDQ .line-wrap {
  text-align: center;
}
.cid-r2hdJbTpDQ .card-box > p,
.cid-r2hdJbTpDQ .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-r2hdJEvn4N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r2hdJEvn4N .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-r2hdJEvn4N .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hdJEvn4N .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r2hdJEvn4N .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-r2hdJEvn4N .btn {
  margin: 0!important;
  transition: all 0.3s;
  opacity: 0;
}
.cid-r2hdJEvn4N .card {
  padding: 0!important;
  margin: 0;
  overflow: hidden;
}
.cid-r2hdJEvn4N .card:hover .card-box {
  bottom: 0;
}
.cid-r2hdJEvn4N .card:hover .btn {
  opacity: 1;
}
.cid-r2hdJEvn4N .card-title {
  color: #ffffff;
  margin: 0;
  text-align: left;
}
.cid-r2hdJEvn4N .card-img {
  overflow: hidden!important;
  position: relative;
  border-radius: 0px;
}
.cid-r2hdJEvn4N .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-r2hdJEvn4N .card-box {
  position: absolute;
  padding: 1.5rem 1.5rem;
  bottom: -70px;
  transition: all 0.3s;
  width: 100%;
  left: 0;
  z-index: 2;
}
.cid-r2hdJEvn4N .mbr-section-title,
.cid-r2hdJEvn4N .line-wrap {
  text-align: center;
}
.cid-r2hdJEvn4N .card-box > p,
.cid-r2hdJEvn4N .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-r2hdJEvn4N .card-box {
    bottom: 0;
  }
  .cid-r2hdJEvn4N .btn {
    opacity: 1;
  }
}
.cid-r2hdK62XlS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r2hdK62XlS .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  display: flex;
}
.cid-r2hdK62XlS .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hdK62XlS p {
  line-height: 1.5;
}
.cid-r2hdK62XlS .card-img img {
  border-radius: 3px;
}
.cid-r2hdK62XlS .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r2hdK62XlS .ico-line {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-r2hdK62XlS .mail,
.cid-r2hdK62XlS .phone,
.cid-r2hdK62XlS .mbr-iconfont {
  display: inline-block;
}
.cid-r2hdK62XlS .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-r2hdK62XlS h3 {
  margin: 0;
}
.cid-r2hdK62XlS .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-r2hdK62XlS .card-box {
  padding-left: 1rem;
  width: 70%;
}
.cid-r2hdK62XlS .mbr-section-title,
.cid-r2hdK62XlS .line-wrap {
  text-align: center;
}
.cid-r2hdK62XlS .phone {
  color: #000000;
  text-align: left;
}
.cid-r2hdK62XlS .mail {
  color: #0087ab;
  text-align: left;
}
.cid-r2hdK62XlS .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-r1xQeAWUlW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-r1xQeAWUlW .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-r1xQeAWUlW .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xQeAWUlW .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-r1xQeAWUlW img {
  width: 100%;
}
.cid-r1xQeAWUlW .col-md-3 {
  margin-bottom: 2rem;
}
.cid-r1xQeAWUlW .number {
  color: #0087ab;
  position: relative;
  display: flex;
  text-align: center;
  border: 2px solid #e9e9e9;
  margin: auto;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  line-height: 1.3;
}
.cid-r1xQeAWUlW .period {
  display: block;
  padding-top: 2px;
  font-weight: 700;
}
.cid-r1xQeAWUlW .dot {
  display: none;
}
.cid-r1xQeAWUlW .countdown-cont {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-r1xQeAWUlW .dot {
    display: none;
  }
}
@media (max-width: 543px) {
  .cid-r1xQeAWUlW .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-r1xQeAWUlW .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
  }
  .cid-r1xQeAWUlW .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-r1xQeAWUlW .number,
  .cid-r1xQeAWUlW .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-r1xQeAWUlW .period {
    font-size: 1rem;
  }
}
.cid-r1xQeAWUlW .mbr-section-title,
.cid-r1xQeAWUlW .line-wrap {
  text-align: center;
}
.cid-r1yc1XypMX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1yc1XypMX .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1yc1XypMX .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1yc1XypMX .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1yc1XypMX .rev,
.cid-r1yc1XypMX .mbr-iconfont {
  display: inline-block;
}
.cid-r1yc1XypMX .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1yc1XypMX .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1yc1XypMX .card-box {
  padding: 1.5rem;
}
.cid-r1yc1XypMX .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1yc1XypMX .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1yc1XypMX .mbr-section-title,
.cid-r1yc1XypMX .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1yc1XypMX .rev {
  text-align: left;
}
.cid-r1yc1XypMX .card-text,
.cid-r1yc1XypMX .mbr-section-btn,
.cid-r1yc1XypMX .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1yc1XypMX .rev I {
  color: #0a1c44;
}
.cid-r1yc2fRkw6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1yc2fRkw6 .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1yc2fRkw6 p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1ycgtXh20 {
  padding-top: 165px;
  padding-bottom: 45px;
  background-color: #0087ab;
}
.cid-r1ycgtXh20 .mbr-section-title DIV {
  text-align: center;
}
.cid-r1xQinJ4eq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-r1xQinJ4eq .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-r1xQinJ4eq .card {
  background-color: #0a1c44;
  padding: 4rem 10rem;
}
.cid-r1xQinJ4eq .input-group-btn {
  display: block;
}
.cid-r1xQinJ4eq .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xQinJ4eq .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xQinJ4eq input,
.cid-r1xQinJ4eq textarea {
  background: white !important;
  max-height: 2.5rem;
  padding: 0;
  border-radius: 4px !important;
  font-size: 16px;
}
.cid-r1xQinJ4eq .btn-primary {
  border: 1px solid #0087ab !important;
}
.cid-r1xQinJ4eq .btn-file {
  margin: 0 !important;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 55px;
}
.cid-r1xQinJ4eq .btn-lg {
  border-radius: 4px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.cid-r1xQinJ4eq .form-file {
  padding: 0 !important;
  margin: 0 !important;
  text-align: right !important;
  min-height: 55px;
  border: 0;
}
.cid-r1xQinJ4eq .form-control {
  background: white;
  padding: 1rem 1rem;
  max-height: 3rem;
}
.cid-r1xQinJ4eq .mbr-form input,
.cid-r1xQinJ4eq textarea {
  border-radius: 0px;
  padding-left: 15px;
}
.cid-r1xQinJ4eq input[type="file"] {
  display: none;
}
.cid-r1xQinJ4eq .mbr-section-subtitle {
  color: #656565;
  text-align: left;
}
.cid-r1xQinJ4eq .title2 {
  color: #ffffff;
}
.cid-r1xQinJ4eq .form-title {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-r1xQinJ4eq .card {
    padding: 4rem 4rem;
  }
}
@media (max-width: 576px) {
  .cid-r1xQinJ4eq .col-sm-12 {
    margin: 1rem;
  }
  .cid-r1xQinJ4eq .card {
    padding: 2rem;
  }
}
.cid-r1xQinJ4eq .mbr-section-title,
.cid-r1xQinJ4eq .line-wrap {
  color: #ffffff;
}
.cid-r1xQiHrVkP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r1xQiHrVkP .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-r1xQiHrVkP .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-r1xQiHrVkP .mbr-form {
  display: flex;
}
.cid-r1xQiHrVkP .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-r1xQiHrVkP .card {
  padding: 3rem 8rem;
}
.cid-r1xQiHrVkP .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-r1xQiHrVkP .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-r1xQiHrVkP .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-r1xQiHrVkP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-r1xQiHrVkP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-r1xQiHrVkP .map-placeholder {
  display: none;
}
.cid-r1xQiHrVkP .btn-primary {
  border: 1px solid #0087ab !important;
}
.cid-r1xQiHrVkP .btn-primary:hover {
  border: 1px solid #0087ab !important;
}
.cid-r1xQiHrVkP .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-r1xQiHrVkP .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 300px;
}
.cid-r1xQiHrVkP .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-r1xQiHrVkP .mbr-text {
  color: #444;
}
.cid-r1xQiHrVkP h5 {
  margin-bottom: 0;
}
.cid-r1xQiHrVkP .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-r1xQiHrVkP .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}
.cid-r1xQiHrVkP .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-r1xQiHrVkP .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xQiHrVkP .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-r1xQiHrVkP .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-r1xQiHrVkP .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-r1xQiHrVkP .social-list a:hover {
  opacity: 0.4;
}
.cid-r1xQiHrVkP .media-container-row > div {
  padding: 0px;
}
.cid-r1xQiHrVkP .text2 {
  color: #000000;
  text-align: left;
}
.cid-r1xQiHrVkP .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-r1xQiHrVkP .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-r1xQiHrVkP .card {
    padding: 3rem 3rem;
  }
}
@media (max-width: 991px) {
  .cid-r1xQiHrVkP .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-r1xQiHrVkP h3 {
    margin-bottom: 10px;
  }
  .cid-r1xQiHrVkP .card {
    padding: 3rem 3rem;
  }
}
@media (max-width: 576px) {
  .cid-r1xQiHrVkP .form-control {
    max-width: 180px;
  }
  .cid-r1xQiHrVkP .card {
    padding: 2rem 1rem;
  }
}
.cid-r1xQiHrVkP .links span {
  color: #9e9e9e;
}
.cid-r1xQiHrVkP .logo-sub-title {
  text-align: center;
}
.cid-r1xQiHrVkP .logo-title {
  text-align: center;
}
.cid-r1xQiHrVkP .logo-sub-title i {
  color: #9e9e9e;
}
.cid-r1xQkss5bF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1xQkss5bF .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-r1xQkss5bF .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-r1xQkss5bF .mbr-form {
  display: flex;
}
.cid-r1xQkss5bF .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-r1xQkss5bF .btn-primary {
  border: 1px solid #0087ab !important;
}
.cid-r1xQkss5bF .btn-primary:hover {
  border: 1px solid #0087ab !important;
}
.cid-r1xQkss5bF .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-r1xQkss5bF .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-r1xQkss5bF .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-r1xQkss5bF .mbr-text {
  color: #444;
}
.cid-r1xQkss5bF h5 {
  margin-bottom: 0;
}
.cid-r1xQkss5bF .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-r1xQkss5bF .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}
.cid-r1xQkss5bF .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-r1xQkss5bF .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xQkss5bF .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-r1xQkss5bF .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-r1xQkss5bF .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-r1xQkss5bF .social-list a:hover {
  opacity: 0.4;
}
.cid-r1xQkss5bF .media-container-row > div {
  padding: 0px;
}
.cid-r1xQkss5bF .text2 {
  color: #000000;
  text-align: left;
}
.cid-r1xQkss5bF .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-r1xQkss5bF .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-r1xQkss5bF .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-r1xQkss5bF .social-list,
  .cid-r1xQkss5bF .img-list {
    justify-content: center;
    text-align: center;
  }
  .cid-r1xQkss5bF h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-r1xQkss5bF .form-control {
    max-width: 180px;
  }
}
.cid-r1xQkss5bF .links span {
  color: #9e9e9e;
}
.cid-r1xQkss5bF .logo-sub-title {
  text-align: center;
}
.cid-r1xQkss5bF .logo-title {
  text-align: center;
}
.cid-r1xQkss5bF .logo-sub-title i {
  color: #9e9e9e;
}
.cid-r1xQiYLSZE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r1xQiYLSZE .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-r1xQiYLSZE .mbr-section-title {
  padding-bottom: 3rem;
}
.cid-r1xQiYLSZE .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-r1xQiYLSZE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-r1xQiYLSZE .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-r1xQiYLSZE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-r1xQiYLSZE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-r1xQiYLSZE .map-placeholder {
  display: none;
}
.cid-r1xQiYLSZE h4 {
  padding-top: 5rem;
  color: #767676;
  text-align: center;
}
.cid-r1xQl4hewK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1xQl4hewK .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-r1xQl4hewK .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-r1xQl4hewK .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xQl4hewK .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-r1xQl4hewK .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-r1xQl4hewK .text2 {
  color: #000000;
  text-align: left;
}
.cid-r1xQl4hewK .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-r1xQl4hewK .logo-title {
  text-align: center;
}
.cid-r1xQl4hewK .logo-sub-title {
  text-align: center;
}
.cid-r1xQl4hewK .links {
  text-align: center;
  color: #656565;
}
.cid-r1xQl4hewK .logo-sub-title i {
  color: #9e9e9e;
}
.cid-r1yciuzEvv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1yciuzEvv .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1yciuzEvv .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1yciuzEvv .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1yciuzEvv .rev,
.cid-r1yciuzEvv .mbr-iconfont {
  display: inline-block;
}
.cid-r1yciuzEvv .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1yciuzEvv .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1yciuzEvv .card-box {
  padding: 1.5rem;
}
.cid-r1yciuzEvv .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1yciuzEvv .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1yciuzEvv .mbr-section-title,
.cid-r1yciuzEvv .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1yciuzEvv .rev {
  text-align: left;
}
.cid-r1yciuzEvv .card-text,
.cid-r1yciuzEvv .mbr-section-btn,
.cid-r1yciuzEvv .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1yciuzEvv .rev I {
  color: #0a1c44;
}
.cid-r1xQlAcHf0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1xQlAcHf0 .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1xQlAcHf0 p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1xW8sH87k {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r2hCT6vf95 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-r2hCT6vf95 img {
  width: 100%;
}
.cid-r2hCT6vf95 p {
  line-height: 1.6;
}
.cid-r2hCT6vf95 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-r2hCT6vf95 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-r2hCT6vf95 .mbr-text,
.cid-r2hCT6vf95 .mbr-section-btn {
  color: #656565;
  text-align: left;
}
.cid-r2hCT6vf95 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hCT6vf95 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-r2hCT6vf95 .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-r2hCT6vf95 .mbr-section-title,
.cid-r2hCT6vf95 .line-wrap {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-r2hCT6vf95 .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-r2hCYJ5Ox0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-r2hCYJ5Ox0 .row {
  margin: 0;
}
.cid-r2hCYJ5Ox0 .container-fluid {
  padding: 0;
}
.cid-r2hCYJ5Ox0 p {
  line-height: 1.6;
}
.cid-r2hCYJ5Ox0 .img {
  padding: 0;
  width: 100%;
  overflow: hidden;
  max-height: 940px;
}
.cid-r2hCYJ5Ox0 .rev {
  margin: 0;
  color: #000000;
  text-align: left;
}
.cid-r2hCYJ5Ox0 .mbr-section-btn {
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.cid-r2hCYJ5Ox0 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 10rem;
  padding-right: 10rem;
}
.cid-r2hCYJ5Ox0 .mbr-section-title {
  text-align: left;
}
.cid-r2hCYJ5Ox0 .card-wrapper {
  width: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 1.5rem;
}
.cid-r2hCYJ5Ox0 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hCYJ5Ox0 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
.cid-r2hCYJ5Ox0 .mbr-iconfont {
  font-size: 1rem;
}
.cid-r2hCYJ5Ox0 .ico-line-wrap {
  display: flex;
  justify-content: space-between;
}
.cid-r2hCYJ5Ox0 .ico-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-r2hCYJ5Ox0 .card-title {
  color: #0087ab;
  text-align: left;
}
.cid-r2hCYJ5Ox0 .card-img {
  margin: auto;
  border-radius: 0;
  width: 155px;
  height: 100%;
}
.cid-r2hCYJ5Ox0 .card-box {
  padding: 1rem 1rem;
  width: 100%;
  align-self: center;
}
.cid-r2hCYJ5Ox0 .mbr-section-title,
.cid-r2hCYJ5Ox0 .line-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-r2hCYJ5Ox0 .card-box,
.cid-r2hCYJ5Ox0 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-r2hCYJ5Ox0 .text,
.cid-r2hCYJ5Ox0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .cid-r2hCYJ5Ox0 .content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
  .cid-r2hCYJ5Ox0 .big-img {
    margin-left: -100px;
  }
}
@media (max-width: 1200px) {
  .cid-r2hCYJ5Ox0 .content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-r2hCYJ5Ox0 .big-img {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .cid-r2hCYJ5Ox0 .content {
    padding: 3rem;
  }
  .cid-r2hCYJ5Ox0 .card-wrapper {
    flex-direction: column;
  }
  .cid-r2hCYJ5Ox0 .card-img {
    width: 100%;
  }
}
.cid-r1xWfXxAVT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r1xWfXxAVT .card-title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.cid-r1xWfXxAVT .card {
  margin-bottom: 25px;
  owerflow: hidden;
  height: 200px;
}
.cid-r1xWfXxAVT .card:hover .card-img {
  transform: scale(1.05);
}
.cid-r1xWfXxAVT .card:hover .card-wrapper:before {
  opacity: 0.8;
  background: #0087ab;
}
.cid-r1xWfXxAVT .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xWfXxAVT .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.cid-r1xWfXxAVT .card-big {
  height: 425px;
}
.cid-r1xWfXxAVT .card-wrapper {
  overflow: hidden;
  position: relative;
}
.cid-r1xWfXxAVT .card-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0.4;
  z-index: 10;
  pointer-events: none;
}
.cid-r1xWfXxAVT .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-r1xWfXxAVT .card-box {
  position: absolute;
  overflow: hidden;
  height: fit-content;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.cid-r1xWfXxAVT .mbr-section-title {
  color: #656565;
  text-align: center;
}
.cid-r1xWfXxAVT .card-sub-title {
  text-align: center;
  font-weight: 500;
}
.cid-r1xWfXxAVT .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xWfXxAVT .mbr-section-title,
.cid-r1xWfXxAVT .line-wrap {
  color: #000000;
  text-align: center;
}
.cid-r1xWfXxAVT .mbr-text {
  text-align: center;
  color: #656565;
}
@media (max-width: 992px) {
  .cid-r1xWfXxAVT .card-big {
    height: 200px;
  }
  .cid-r1xWfXxAVT .card-img {
    margin-top: -15%;
  }
}
.cid-r1xWemAHXA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1xWemAHXA .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1xWemAHXA .card-img {
  overflow: hidden;
  border-radius: 0;
  position: relative;
}
.cid-r1xWemAHXA .card-img:hover .img-hover {
  opacity: 0.5;
}
.cid-r1xWemAHXA .card-img:hover .img-btn {
  opacity: 1;
  margin-top: -15%;
}
.cid-r1xWemAHXA .btn {
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-r1xWemAHXA .img-btn {
  transition: all 0.3s;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  margin-top: -10%;
  left: 50%;
  margin-left: -50%;
  opacity: 0;
}
.cid-r1xWemAHXA .img-hover {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  background: #0a1c44;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.cid-r1xWemAHXA .content-box {
  display: flex;
}
.cid-r1xWemAHXA .date-box {
  background: #0a1c44;
  width: 110px;
  padding: 5px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.cid-r1xWemAHXA .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1xWemAHXA .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xWemAHXA .rev,
.cid-r1xWemAHXA .mbr-iconfont {
  display: inline-block;
}
.cid-r1xWemAHXA .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xWemAHXA .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-r1xWemAHXA .card-box {
  padding: 1rem;
}
.cid-r1xWemAHXA .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1xWemAHXA .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1xWemAHXA .mbr-section-title,
.cid-r1xWemAHXA .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1xWemAHXA .rev {
  text-align: left;
}
.cid-r1xWemAHXA .card-text,
.cid-r1xWemAHXA .mbr-section-btn,
.cid-r1xWemAHXA .ico-line {
  text-align: left;
  color: #9e9e9e;
}
.cid-r1xWemAHXA .rev i {
  color: #0a1c44;
}
.cid-r1xWemAHXA .date {
  text-align: center;
  color: #ffffff;
}
.cid-r1xWemAHXA .mounth {
  text-align: center;
  color: #ffffff;
}
.cid-r1xWemAHXA .time {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-r1xWemAHXA .img-hover {
    opacity: 0.5;
  }
  .cid-r1xWemAHXA .img-btn {
    opacity: 1;
    margin-top: -15%;
  }
}
.cid-r1xXppy0tF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-r1xXppy0tF h3 {
  text-align: center;
  font-weight: 300;
}
.cid-r1xXppy0tF .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-r1xXppy0tF .mbr-section-subtitle {
  color: #767676;
}
.cid-r1xXppy0tF .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-r1xXppy0tF ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-r1xXppy0tF path {
  stroke: #0087ab;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-r1xXppy0tF .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-r1xXppy0tF .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xXppy0tF .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xXppy0tF .mbr-section-title,
.cid-r1xXppy0tF .line-wrap {
  text-align: center;
}
.cid-r1xXppy0tF p {
  color: #656565;
}
.cid-r1xWyNLFeX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1xWyNLFeX .mbr-section-title {
  text-align: left;
}
.cid-r1xWyNLFeX .mbr-text,
.cid-r1xWyNLFeX .mbr-section-btn {
  text-align: left;
}
.cid-r1xWyNLFeX .mbr-iconfont {
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-r1xWkIhPS3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1xWkIhPS3 .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  display: flex;
}
.cid-r1xWkIhPS3 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1xWkIhPS3 p {
  line-height: 1.5;
}
.cid-r1xWkIhPS3 .card-img img {
  border-radius: 3px;
}
.cid-r1xWkIhPS3 .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1xWkIhPS3 .ico-line {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-r1xWkIhPS3 .mail,
.cid-r1xWkIhPS3 .phone,
.cid-r1xWkIhPS3 .mbr-iconfont {
  display: inline-block;
}
.cid-r1xWkIhPS3 .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-r1xWkIhPS3 h3 {
  margin: 0;
}
.cid-r1xWkIhPS3 .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-r1xWkIhPS3 .card-box {
  padding-left: 1rem;
  width: 70%;
}
.cid-r1xWkIhPS3 .mbr-section-title,
.cid-r1xWkIhPS3 .line-wrap {
  text-align: center;
}
.cid-r1xWkIhPS3 .phone {
  color: #000000;
  text-align: left;
}
.cid-r1xWkIhPS3 .mail {
  color: #0087ab;
  text-align: left;
}
.cid-r1xWkIhPS3 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-r1xWqJPj4k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1xWqJPj4k .container-fluid {
  overflow: hidden;
}
.cid-r1xWqJPj4k .carousel-controls {
  display: none;
}
.cid-r1xWqJPj4k .carousel-controls a {
  transition: opacity 0.5s;
}
.cid-r1xWqJPj4k .carousel-controls a:hover span,
.cid-r1xWqJPj4k .carousel-controls a:focus span {
  opacity: 1;
}
.cid-r1xWqJPj4k .carousel-controls a:hover svg,
.cid-r1xWqJPj4k .carousel-controls a:focus svg {
  transition: all 0.25s;
  stroke-width: 3;
}
.cid-r1xWqJPj4k .carousel-controls a:active svg {
  transition: all 0.1s;
  stroke-width: 5;
}
.cid-r1xWqJPj4k .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-r1xWqJPj4k .carousel-indicators {
  bottom: 0px;
}
.cid-r1xWqJPj4k .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #0087ab;
}
.cid-r1xWqJPj4k ol {
  margin-bottom: 0rem;
}
.cid-r1xWqJPj4k .carousel-item {
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 1rem;
}
.cid-r1xWqJPj4k .carousel-control-prev {
  justify-content: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-r1xWqJPj4k .carousel-control-next {
  justify-content: flex-start;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-r1xWqJPj4k .carousel-item.active,
.cid-r1xWqJPj4k .carousel-item-next,
.cid-r1xWqJPj4k .carousel-item-prev {
  display: flex;
}
.cid-r1xWqJPj4k .user_image {
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
}
.cid-r1xWqJPj4k .user_image .user_image_inner {
  max-width: 250px;
  max-height: 250px;
  border-radius: 10%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-r1xWqJPj4k .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-r1xWqJPj4k .user_text {
  color: #767676;
  position: relative;
}
.cid-r1xWqJPj4k .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-r1xWqJPj4k .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0087ab, #0a1c44);
  display: inline-block;
}
.cid-r1xWqJPj4k .testimonials-quote svg {
  height: 50px;
  width: 50px;
  opacity: 0.2;
  margin-bottom: -50px;
  margin-left: -25px;
}
.cid-r1xWqJPj4k svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-r1xWqJPj4k .user_name {
  color: #ffffff;
  text-align: right;
}
.cid-r1xWqJPj4k .carousel-controls svg {
  height: 60px;
}
@media (max-width: 576px) {
  .cid-r1xWqJPj4k .carousel-controls {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-r1xWqJPj4k .testimonials-quote,
  .cid-r1xWqJPj4k .user_text,
  .cid-r1xWqJPj4k .user_name,
  .cid-r1xWqJPj4k .user_desk {
    text-align: center !important;
  }
  .cid-r1xWqJPj4k .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
  .cid-r1xWqJPj4k .testimonials-quote svg {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .cid-r1xWqJPj4k .mbr-section-title,
  .cid-r1xWqJPj4k .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-r1xWqJPj4k .carousel-control-prev span {
    right: -1rem;
  }
  .cid-r1xWqJPj4k .carousel-control-next span {
    left: -1rem;
  }
  .cid-r1xWqJPj4k .user-text {
    padding-right: 2rem;
  }
  .cid-r1xWqJPj4k .carousel-control-prev,
  .cid-r1xWqJPj4k .carousel-control-next {
    align-items: center;
  }
}
.cid-r1xWqJPj4k .user_desk {
  text-align: right;
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}
.cid-r1xWqJPj4k .user_text,
.cid-r1xWqJPj4k .testimonials-quote {
  color: #ffffff;
}
.cid-r1xWsKZhyB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r1xWsKZhyB .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-r1xWsKZhyB .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-r1xWsKZhyB .mbr-form {
  display: flex;
}
.cid-r1xWsKZhyB .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-r1xWsKZhyB .card {
  padding: 3rem 8rem;
}
.cid-r1xWsKZhyB .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-r1xWsKZhyB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-r1xWsKZhyB .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-r1xWsKZhyB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-r1xWsKZhyB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-r1xWsKZhyB .map-placeholder {
  display: none;
}
.cid-r1xWsKZhyB .btn-primary {
  border: 1px solid #0087ab !important;
}
.cid-r1xWsKZhyB .btn-primary:hover {
  border: 1px solid #0087ab !important;
}
.cid-r1xWsKZhyB .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-r1xWsKZhyB .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 300px;
}
.cid-r1xWsKZhyB .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-r1xWsKZhyB .mbr-text {
  color: #444;
}
.cid-r1xWsKZhyB h5 {
  margin-bottom: 0;
}
.cid-r1xWsKZhyB .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-r1xWsKZhyB .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}
.cid-r1xWsKZhyB .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-r1xWsKZhyB .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xWsKZhyB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-r1xWsKZhyB .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-r1xWsKZhyB .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-r1xWsKZhyB .social-list a:hover {
  opacity: 0.4;
}
.cid-r1xWsKZhyB .media-container-row > div {
  padding: 0px;
}
.cid-r1xWsKZhyB .text2 {
  color: #000000;
  text-align: left;
}
.cid-r1xWsKZhyB .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-r1xWsKZhyB .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-r1xWsKZhyB .card {
    padding: 3rem 3rem;
  }
}
@media (max-width: 991px) {
  .cid-r1xWsKZhyB .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-r1xWsKZhyB h3 {
    margin-bottom: 10px;
  }
  .cid-r1xWsKZhyB .card {
    padding: 3rem 3rem;
  }
}
@media (max-width: 576px) {
  .cid-r1xWsKZhyB .form-control {
    max-width: 180px;
  }
  .cid-r1xWsKZhyB .card {
    padding: 2rem 1rem;
  }
}
.cid-r1xWsKZhyB .links span {
  color: #9e9e9e;
}
.cid-r1xWsKZhyB .logo-sub-title {
  text-align: center;
}
.cid-r1xWsKZhyB .logo-title {
  text-align: center;
}
.cid-r1xWsKZhyB .logo-sub-title i {
  color: #9e9e9e;
}
.cid-r1xWv9H6lB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1xWv9H6lB .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1xWv9H6lB p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1y0ay8sxw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-r1y0ay8sxw .container-fluid {
  padding: 0;
}
.cid-r1y0ay8sxw img {
  width: 100%;
}
.cid-r1y0ay8sxw .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-r1y0ay8sxw .content {
    padding: 3rem;
  }
}
.cid-r1y0ay8sxw .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-r1y0ay8sxw .img-col {
  padding: 0;
  margin: auto;
}
.cid-r1y0jKdhCl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1y0jKdhCl .card {
  align-items: center;
}
.cid-r1y0jKdhCl .card-box {
  width: 100%;
}
.cid-r1y0jKdhCl .card-img {
  padding: 1rem;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-r1y0jKdhCl .card-img span {
  font-size: 3rem;
  color: #0a1c44;
}
.cid-r1y0jKdhCl .mbr-text {
  color: #656565;
}
.cid-r1y0jKdhCl p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-r1y0jKdhCl .card {
    margin-bottom: 2rem;
  }
}
.cid-r1y0jKdhCl .card-title,
.cid-r1y0jKdhCl .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-r1y0jKdhCl .mbr-section-title {
  text-align: center;
}
.cid-r1y0jKdhCl .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1y0jKdhCl .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1y0jKdhCl .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1y0jKdhCl .line-wrap2 {
  display: inline-block;
  width: 100%;
}
.cid-r1y0jKdhCl .line2 {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cid-r1y0jKdhCl .mbr-section-title,
.cid-r1y0jKdhCl .line-wrap {
  text-align: center;
}
.cid-r1y0jKdhCl .mbr-text,
.cid-r1y0jKdhCl .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-r1y0pck8Nv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1y0pck8Nv .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1y0pck8Nv .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1y0pck8Nv .rev,
.cid-r1y0pck8Nv .mbr-iconfont {
  display: inline-block;
}
.cid-r1y0pck8Nv .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1y0pck8Nv .card-img {
  position: relative;
}
.cid-r1y0pck8Nv .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-r1y0pck8Nv .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-r1y0pck8Nv .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-r1y0pck8Nv .card-box {
  padding: 1.5rem;
}
.cid-r1y0pck8Nv .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1y0pck8Nv .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1y0pck8Nv .mbr-section-title,
.cid-r1y0pck8Nv .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-r1y0pck8Nv .card-text,
.cid-r1y0pck8Nv .mbr-section-btn,
.cid-r1y0pck8Nv .ico-line {
  text-align: left;
  color: #9e9e9e;
}
.cid-r1y0pck8Nv .mbr-text,
.cid-r1y0pck8Nv .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-r1y0pck8Nv .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-r2hCFpLJfd {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-r2hCFpLJfd img {
  width: 100%;
}
.cid-r2hCFpLJfd p {
  line-height: 1.6;
}
.cid-r2hCFpLJfd .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-r2hCFpLJfd .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-r2hCFpLJfd .mbr-text,
.cid-r2hCFpLJfd .mbr-section-btn {
  color: #656565;
  text-align: left;
}
.cid-r2hCFpLJfd .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r2hCFpLJfd .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-r2hCFpLJfd .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-r2hCFpLJfd .mbr-section-title,
.cid-r2hCFpLJfd .line-wrap {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-r2hCFpLJfd .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-r1y0kY7oW3 {
  padding-top: 150px;
  padding-bottom: 150px;
}
.cid-r1y0kY7oW3 .mbr-section-title {
  text-align: center;
}
.cid-r1y0kY7oW3 .mbr-text,
.cid-r1y0kY7oW3 .mbr-section-btn {
  text-align: center;
}
.cid-r2hCIhefiw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r2hCIhefiw .row-main {
  flex-direction: row-reverse;
}
.cid-r2hCIhefiw .card {
  align-items: center;
  display: flex;
  flex-direction: row;
  padding-bottom: 0.5rem;
}
.cid-r2hCIhefiw .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-r2hCIhefiw .img {
  margin: auto;
}
.cid-r2hCIhefiw .card-box {
  width: 100%;
}
.cid-r2hCIhefiw p {
  line-height: 1.5;
  margin: 0;
}
.cid-r2hCIhefiw .box {
  padding: 3rem 13rem;
  margin: auto;
}
.cid-r2hCIhefiw .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-r2hCIhefiw .card-img span {
  font-size: 3.6rem;
  color: #0a1c44;
}
.cid-r2hCIhefiw img {
  width: 100%;
}
.cid-r2hCIhefiw .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-r2hCIhefiw .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r2hCIhefiw .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-r2hCIhefiw .box {
    padding: 2rem 3rem;
  }
}
.cid-r2hCIhefiw .card-title,
.cid-r2hCIhefiw .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-r2hCIhefiw .mbr-section-title {
  text-align: center;
}
.cid-r2hCIhefiw .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r2hCIhefiw .mbr-section-title,
.cid-r2hCIhefiw .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r2hCIhefiw .mbr-text,
.cid-r2hCIhefiw .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-r1y0wN9Vcm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r1y0wN9Vcm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-r1y0wN9Vcm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-r1y0wN9Vcm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-r1y0wN9Vcm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-r1y0wN9Vcm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-r1y0wN9Vcm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-r1y0wN9Vcm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-r1y0wN9Vcm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-r1y0wN9Vcm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-r1y0w3yt9a {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1y0w3yt9a .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-r1y0w3yt9a .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1y0w3yt9a .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1y0w3yt9a .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-r1y0w3yt9a .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-r1y0w3yt9a .card-box {
  padding: 1rem;
}
.cid-r1y0w3yt9a .mbr-section-title,
.cid-r1y0w3yt9a .line-wrap {
  text-align: center;
}
.cid-r1y0w3yt9a .card-box > p,
.cid-r1y0w3yt9a .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-r1y0E7mlpT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1y0E7mlpT .container-fluid {
  overflow: hidden;
}
.cid-r1y0E7mlpT .carousel-controls {
  display: none;
}
.cid-r1y0E7mlpT .carousel-controls a {
  transition: opacity 0.5s;
}
.cid-r1y0E7mlpT .carousel-controls a:hover span,
.cid-r1y0E7mlpT .carousel-controls a:focus span {
  opacity: 1;
}
.cid-r1y0E7mlpT .carousel-controls a:hover svg,
.cid-r1y0E7mlpT .carousel-controls a:focus svg {
  transition: all 0.25s;
  stroke-width: 3;
}
.cid-r1y0E7mlpT .carousel-controls a:active svg {
  transition: all 0.1s;
  stroke-width: 5;
}
.cid-r1y0E7mlpT .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-r1y0E7mlpT .carousel-indicators {
  bottom: 0px;
}
.cid-r1y0E7mlpT .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #0087ab;
}
.cid-r1y0E7mlpT ol {
  margin-bottom: 0rem;
}
.cid-r1y0E7mlpT .carousel-item {
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 1rem;
}
.cid-r1y0E7mlpT .carousel-control-prev {
  justify-content: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-r1y0E7mlpT .carousel-control-next {
  justify-content: flex-start;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-r1y0E7mlpT .carousel-item.active,
.cid-r1y0E7mlpT .carousel-item-next,
.cid-r1y0E7mlpT .carousel-item-prev {
  display: flex;
}
.cid-r1y0E7mlpT .user_image {
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
}
.cid-r1y0E7mlpT .user_image .user_image_inner {
  max-width: 250px;
  max-height: 250px;
  border-radius: 10%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-r1y0E7mlpT .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-r1y0E7mlpT .user_text {
  color: #767676;
  position: relative;
}
.cid-r1y0E7mlpT .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-r1y0E7mlpT .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0087ab, #0a1c44);
  display: inline-block;
}
.cid-r1y0E7mlpT .testimonials-quote svg {
  height: 50px;
  width: 50px;
  opacity: 0.2;
  margin-bottom: -50px;
  margin-left: -25px;
}
.cid-r1y0E7mlpT svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-r1y0E7mlpT .user_name {
  color: #ffffff;
  text-align: right;
}
.cid-r1y0E7mlpT .carousel-controls svg {
  height: 60px;
}
@media (max-width: 576px) {
  .cid-r1y0E7mlpT .carousel-controls {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-r1y0E7mlpT .testimonials-quote,
  .cid-r1y0E7mlpT .user_text,
  .cid-r1y0E7mlpT .user_name,
  .cid-r1y0E7mlpT .user_desk {
    text-align: center !important;
  }
  .cid-r1y0E7mlpT .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
  .cid-r1y0E7mlpT .testimonials-quote svg {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .cid-r1y0E7mlpT .mbr-section-title,
  .cid-r1y0E7mlpT .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-r1y0E7mlpT .carousel-control-prev span {
    right: -1rem;
  }
  .cid-r1y0E7mlpT .carousel-control-next span {
    left: -1rem;
  }
  .cid-r1y0E7mlpT .user-text {
    padding-right: 2rem;
  }
  .cid-r1y0E7mlpT .carousel-control-prev,
  .cid-r1y0E7mlpT .carousel-control-next {
    align-items: center;
  }
}
.cid-r1y0E7mlpT .user_desk {
  text-align: right;
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}
.cid-r1y0E7mlpT .user_text,
.cid-r1y0E7mlpT .testimonials-quote {
  color: #ffffff;
}
.cid-r1y0BIVS7H {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-r1y0BIVS7H .mbr-section-subtitle {
  color: #767676;
}
.cid-r1y0BIVS7H .container-table {
  margin: 0 auto;
}
.cid-r1y0BIVS7H table.dataTable thead .sorting:before,
.cid-r1y0BIVS7H table.dataTable thead .sorting:after,
.cid-r1y0BIVS7H table.dataTable thead .sorting_asc:before,
.cid-r1y0BIVS7H table.dataTable thead .sorting_asc:after,
.cid-r1y0BIVS7H table.dataTable thead .sorting_desc:before,
.cid-r1y0BIVS7H table.dataTable thead .sorting_desc:after,
.cid-r1y0BIVS7H table.dataTable thead .sorting_asc_disabled:before,
.cid-r1y0BIVS7H table.dataTable thead .sorting_asc_disabled:after,
.cid-r1y0BIVS7H table.dataTable thead .sorting_desc_disabled:before,
.cid-r1y0BIVS7H table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px!important;
}
.cid-r1y0BIVS7H .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1y0BIVS7H .form-control {
  min-height: 2.5em;
  padding: .5em .5em;
}
.cid-r1y0BIVS7H .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1y0BIVS7H .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-r1y0BIVS7H .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #0a1c44;
  border-bottom: 1px solid #0a1c44;
}
.cid-r1y0BIVS7H .head-item:hover {
  background: #0a1c44;
  color: inherit;
}
.cid-r1y0BIVS7H .table-heads {
  color: #ffffff;
}
.cid-r1y0BIVS7H .dataTables_wrapper {
  display: block;
}
.cid-r1y0BIVS7H .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-r1y0BIVS7H .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-r1y0BIVS7H table {
  width: 100% !important;
  margin-top: 6px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 0;
}
.cid-r1y0BIVS7H table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-r1y0BIVS7H table th:hover {
  background: #e9e9e9;
  color: #000000;
}
.cid-r1y0BIVS7H table td {
  border-top: 1px solid #e9e9e9;
}
.cid-r1y0BIVS7H table.table {
  background: #ffffff;
}
.cid-r1y0BIVS7H .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-r1y0BIVS7H .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-r1y0BIVS7H .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-r1y0BIVS7H .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-r1y0BIVS7H .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-r1y0BIVS7H .dataTables_filter {
    text-align: center;
  }
  .cid-r1y0BIVS7H .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-r1y0BIVS7H .mbr-section-title,
.cid-r1y0BIVS7H .line-wrap {
  text-align: center;
}
.cid-r1y0BIVS7H .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-r1y0Nxk7Tg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-r1y0Nxk7Tg .progress {
  width: 100%;
}
.cid-r1y0Nxk7Tg progress {
  height: 20px;
}
.cid-r1y0Nxk7Tg .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1y0Nxk7Tg p {
  margin-bottom: 0.5rem;
}
.cid-r1y0Nxk7Tg .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1y0Nxk7Tg .mbr-section-subtitle {
  color: #767676;
}
.cid-r1y0Nxk7Tg .progress_value {
  position: relative;
}
.cid-r1y0Nxk7Tg .progress_elements {
  margin: 0 auto;
}
.cid-r1y0Nxk7Tg .title-wrap {
  display: flex;
  justify-content: space-between;
}
.cid-r1y0Nxk7Tg .progress1 .progressbar-number:before,
.cid-r1y0Nxk7Tg .progress2 .progressbar-number:before,
.cid-r1y0Nxk7Tg .progress3 .progressbar-number:before,
.cid-r1y0Nxk7Tg .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-r1y0Nxk7Tg progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-r1y0Nxk7Tg progress::-webkit-progress-value {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-color: #0087ab;
  background-size: 40px 40px;
}
.cid-r1y0Nxk7Tg progress[value]::-moz-progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-color: #0087ab;
  background-size: 40px 40px;
}
.cid-r1y0Nxk7Tg progress::-ms-fill {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-color: #0087ab;
  background-size: 40px 40px;
}
.cid-r1y0Nxk7Tg .progress1 .progressbar-number:before {
  content: "43";
}
.cid-r1y0Nxk7Tg .progress2 .progressbar-number:before {
  content: "73";
}
.cid-r1y0Nxk7Tg .progress3 .progressbar-number:before {
  content: "90";
}
.cid-r1y0Nxk7Tg .progress4 .progressbar-number:before {
  content: "100";
}
.cid-r1y0Nxk7Tg .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-r1y0Nxk7Tg .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-r1y0Nxk7Tg .progress_value span {
  padding-left: 30px;
}
.cid-r1y0Nxk7Tg .mbr-section-title,
.cid-r1y0Nxk7Tg .line-wrap {
  text-align: center;
}
.cid-r1y0Nxk7Tg .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-r1y0Nxk7Tg .progressbar-title p,
.cid-r1y0Nxk7Tg .progress_value {
  color: #656565;
}
.cid-r1y0FLqmnx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-r1y0FLqmnx .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-r1y0FLqmnx .card {
  background-color: #0a1c44;
  padding: 4rem 10rem;
}
.cid-r1y0FLqmnx .input-group-btn {
  display: block;
}
.cid-r1y0FLqmnx .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1y0FLqmnx .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1y0FLqmnx input,
.cid-r1y0FLqmnx textarea {
  background: white !important;
  max-height: 2.5rem;
  padding: 0;
  border-radius: 4px !important;
  font-size: 16px;
}
.cid-r1y0FLqmnx .btn-primary {
  border: 1px solid #0087ab !important;
}
.cid-r1y0FLqmnx .btn-file {
  margin: 0 !important;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 55px;
}
.cid-r1y0FLqmnx .btn-lg {
  border-radius: 4px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.cid-r1y0FLqmnx .form-file {
  padding: 0 !important;
  margin: 0 !important;
  text-align: right !important;
  min-height: 55px;
  border: 0;
}
.cid-r1y0FLqmnx .form-control {
  background: white;
  padding: 1rem 1rem;
  max-height: 3rem;
}
.cid-r1y0FLqmnx .mbr-form input,
.cid-r1y0FLqmnx textarea {
  border-radius: 0px;
  padding-left: 15px;
}
.cid-r1y0FLqmnx input[type="file"] {
  display: none;
}
.cid-r1y0FLqmnx .mbr-section-subtitle {
  color: #656565;
  text-align: left;
}
.cid-r1y0FLqmnx .title2 {
  color: #ffffff;
}
.cid-r1y0FLqmnx .form-title {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-r1y0FLqmnx .card {
    padding: 4rem 4rem;
  }
}
@media (max-width: 576px) {
  .cid-r1y0FLqmnx .col-sm-12 {
    margin: 1rem;
  }
  .cid-r1y0FLqmnx .card {
    padding: 2rem;
  }
}
.cid-r1y0FLqmnx .mbr-section-title,
.cid-r1y0FLqmnx .line-wrap {
  color: #ffffff;
}
.cid-r1y0HBxTwM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1y0HBxTwM .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-r1y0HBxTwM .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-r1y0HBxTwM .mbr-form {
  display: flex;
}
.cid-r1y0HBxTwM .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-r1y0HBxTwM .btn-primary {
  border: 1px solid #0087ab !important;
}
.cid-r1y0HBxTwM .btn-primary:hover {
  border: 1px solid #0087ab !important;
}
.cid-r1y0HBxTwM .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-r1y0HBxTwM .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-r1y0HBxTwM .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-r1y0HBxTwM .mbr-text {
  color: #444;
}
.cid-r1y0HBxTwM h5 {
  margin-bottom: 0;
}
.cid-r1y0HBxTwM .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-r1y0HBxTwM .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}
.cid-r1y0HBxTwM .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-r1y0HBxTwM .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1y0HBxTwM .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-r1y0HBxTwM .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-r1y0HBxTwM .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-r1y0HBxTwM .social-list a:hover {
  opacity: 0.4;
}
.cid-r1y0HBxTwM .media-container-row > div {
  padding: 0px;
}
.cid-r1y0HBxTwM .text2 {
  color: #000000;
  text-align: left;
}
.cid-r1y0HBxTwM .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-r1y0HBxTwM .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-r1y0HBxTwM .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-r1y0HBxTwM .social-list,
  .cid-r1y0HBxTwM .img-list {
    justify-content: center;
    text-align: center;
  }
  .cid-r1y0HBxTwM h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-r1y0HBxTwM .form-control {
    max-width: 180px;
  }
}
.cid-r1y0HBxTwM .links span {
  color: #9e9e9e;
}
.cid-r1y0HBxTwM .logo-sub-title {
  text-align: center;
}
.cid-r1y0HBxTwM .logo-title {
  text-align: center;
}
.cid-r1y0HBxTwM .logo-sub-title i {
  color: #9e9e9e;
}
.cid-r1y0HYJs7p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r1y0HYJs7p .mbr-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-r1y0HYJs7p .mbr-section-title {
  padding-bottom: 3rem;
}
.cid-r1y0HYJs7p .google-map {
  height: 25rem;
  position: relative;
  width: 100%;
}
.cid-r1y0HYJs7p .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-r1y0HYJs7p .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-r1y0HYJs7p .google-map[data-state] {
  background: #e9e5dc;
}
.cid-r1y0HYJs7p .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-r1y0HYJs7p .map-placeholder {
  display: none;
}
.cid-r1y0HYJs7p h4 {
  padding-top: 5rem;
  color: #767676;
  text-align: center;
}
.cid-r1y0JN4ioW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1y0JN4ioW .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1y0JN4ioW p {
  margin: 0;
}
.cid-r1xJbFr6TJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-r1xJbFr6TJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-r1xJbFr6TJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-r1xJbFr6TJ .menu-logo {
  margin: 0 auto !important;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-r1xJbFr6TJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .dropdown-item {
  padding: 0;
}
.cid-r1xJbFr6TJ .dropdown-item,
.cid-r1xJbFr6TJ .nav-link,
.cid-r1xJbFr6TJ .brand-link {
  font-style: normal;
}
.cid-r1xJbFr6TJ .dropdown-item:hover,
.cid-r1xJbFr6TJ .nav-link:hover,
.cid-r1xJbFr6TJ .brand-link:hover {
  color: #0087ab !important;
}
.cid-r1xJbFr6TJ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: flex-end;
}
.cid-r1xJbFr6TJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-r1xJbFr6TJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-r1xJbFr6TJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-r1xJbFr6TJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r1xJbFr6TJ .content-text {
  margin-bottom: 0;
}
.cid-r1xJbFr6TJ .navbar-nav {
  position: relative;
  min-height: 90px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-r1xJbFr6TJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-r1xJbFr6TJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-r1xJbFr6TJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r1xJbFr6TJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-r1xJbFr6TJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-r1xJbFr6TJ .content-right-side {
  text-align: center;
}
.cid-r1xJbFr6TJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-r1xJbFr6TJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-r1xJbFr6TJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-r1xJbFr6TJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-r1xJbFr6TJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-r1xJbFr6TJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-r1xJbFr6TJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-r1xJbFr6TJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-r1xJbFr6TJ .navbar .menu-content-top {
    display: flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-r1xJbFr6TJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-r1xJbFr6TJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-r1xJbFr6TJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-r1xJbFr6TJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-r1xJbFr6TJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r1xJbFr6TJ .navbar-toggler {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    justify-content: flex-end;
  }
}
.cid-r1xJbFr6TJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-r1xJbFr6TJ .btn {
  display: inline-flex;
  align-items: center;
}
.cid-r1xJbFr6TJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-r1xJbFr6TJ .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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r1xJbFr6TJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-r1xJbFr6TJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-r1xJbFr6TJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-r1xJbFr6TJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
}
.cid-r1xJbFr6TJ button.navbar-toggler:focus {
  outline: none;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-r1xJbFr6TJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-r1xJbFr6TJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-r1xJbFr6TJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .btn {
  display: flex;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-r1xJbFr6TJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-r1xJbFr6TJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-r1xJbFr6TJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-r1xJbFr6TJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-r1xJbFr6TJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-r1xJbFr6TJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-r1xJbFr6TJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-r1xJbFr6TJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-r1xJbFr6TJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing,
  .cid-r1xJbFr6TJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-r1xJbFr6TJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-r1xJbFr6TJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-r1xJbFr6TJ img {
    height: 3.8rem !important;
  }
  .cid-r1xJbFr6TJ .btn {
    display: flex;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    display: block;
  }
  .cid-r1xJbFr6TJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-r1xJbFr6TJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-r1xJbFr6TJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-r1xJbFr6TJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-r1xJbFr6TJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-r1xJbFr6TJ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-r1xJbFr6TJ .nav-link:focus {
  outline: none;
}
.cid-r1xJbFr6TJ .navbar-toggler {
  position: relative;
}
.cid-r1xJbFr6TJ .dropdown-item.active,
.cid-r1xJbFr6TJ .dropdown-item:active {
  color: initial;
}
.cid-r1xJbFr6TJ .widget-title,
.cid-r1xJbFr6TJ .widget-icon {
  color: #e9e9e9;
}
.cid-r1xJbFr6TJ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-r1xJbFr6TJ .menu-logo {
    display: none;
  }
  .cid-r1xJbFr6TJ .navbar {
    padding: 0;
  }
  .cid-r1xJbFr6TJ .menu-bottom {
    flex-direction: column;
  }
  .cid-r1xJbFr6TJ button.navbar-toggler {
    align-self: center;
    margin-bottom: 3rem;
  }
}
.cid-r1yc8wUn4g {
  padding-top: 165px;
  padding-bottom: 45px;
  background-color: #0087ab;
}
.cid-r1yc8wUn4g .mbr-section-title DIV {
  text-align: center;
}
.cid-r1xQgitO48 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-r1xQgitO48 .container-fluid {
  overflow: hidden;
}
.cid-r1xQgitO48 .carousel-controls {
  display: none;
}
.cid-r1xQgitO48 .carousel-controls a {
  transition: opacity 0.5s;
}
.cid-r1xQgitO48 .carousel-controls a:hover span,
.cid-r1xQgitO48 .carousel-controls a:focus span {
  opacity: 1;
}
.cid-r1xQgitO48 .carousel-controls a:hover svg,
.cid-r1xQgitO48 .carousel-controls a:focus svg {
  transition: all 0.25s;
  stroke-width: 3;
}
.cid-r1xQgitO48 .carousel-controls a:active svg {
  transition: all 0.1s;
  stroke-width: 5;
}
.cid-r1xQgitO48 .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-r1xQgitO48 .carousel-indicators {
  bottom: 0px;
}
.cid-r1xQgitO48 .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #0087ab;
}
.cid-r1xQgitO48 ol {
  margin-bottom: 0rem;
}
.cid-r1xQgitO48 .carousel-item {
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 1rem;
}
.cid-r1xQgitO48 .carousel-control-prev {
  justify-content: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-r1xQgitO48 .carousel-control-next {
  justify-content: flex-start;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-r1xQgitO48 .carousel-item.active,
.cid-r1xQgitO48 .carousel-item-next,
.cid-r1xQgitO48 .carousel-item-prev {
  display: flex;
}
.cid-r1xQgitO48 .user_image {
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
}
.cid-r1xQgitO48 .user_image .user_image_inner {
  max-width: 250px;
  max-height: 250px;
  border-radius: 10%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-r1xQgitO48 .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-r1xQgitO48 .user_text {
  color: #767676;
  position: relative;
}
.cid-r1xQgitO48 .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-r1xQgitO48 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0087ab, #0a1c44);
  display: inline-block;
}
.cid-r1xQgitO48 .testimonials-quote svg {
  height: 50px;
  width: 50px;
  opacity: 0.2;
  margin-bottom: -50px;
  margin-left: -25px;
}
.cid-r1xQgitO48 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-r1xQgitO48 .user_name {
  color: #ffffff;
  text-align: right;
}
.cid-r1xQgitO48 .carousel-controls svg {
  height: 60px;
}
@media (max-width: 576px) {
  .cid-r1xQgitO48 .carousel-controls {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-r1xQgitO48 .testimonials-quote,
  .cid-r1xQgitO48 .user_text,
  .cid-r1xQgitO48 .user_name,
  .cid-r1xQgitO48 .user_desk {
    text-align: center !important;
  }
  .cid-r1xQgitO48 .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
  .cid-r1xQgitO48 .testimonials-quote svg {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .cid-r1xQgitO48 .mbr-section-title,
  .cid-r1xQgitO48 .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-r1xQgitO48 .carousel-control-prev span {
    right: -1rem;
  }
  .cid-r1xQgitO48 .carousel-control-next span {
    left: -1rem;
  }
  .cid-r1xQgitO48 .user-text {
    padding-right: 2rem;
  }
  .cid-r1xQgitO48 .carousel-control-prev,
  .cid-r1xQgitO48 .carousel-control-next {
    align-items: center;
  }
}
.cid-r1xQgitO48 .user_desk {
  text-align: right;
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}
.cid-r1xQgitO48 .user_text,
.cid-r1xQgitO48 .testimonials-quote {
  color: #ffffff;
}
.cid-r1xQgww7Dt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r1xQgww7Dt .container-fluid {
  padding: 0 2rem;
}
.cid-r1xQgww7Dt .underline .line {
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  display: inline-block;
}
.cid-r1xQgww7Dt .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-r1xQgww7Dt .timeline-text-content p {
  margin-bottom: 0;
}
.cid-r1xQgww7Dt .time-line-date-content {
  margin-right: 2rem;
}
.cid-r1xQgww7Dt .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-r1xQgww7Dt .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-r1xQgww7Dt .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #0087ab;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-r1xQgww7Dt .separline:before,
.cid-r1xQgww7Dt .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #0087ab;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-r1xQgww7Dt .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #0087ab;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-r1xQgww7Dt .container-fluid {
    padding: 0 1rem;
  }
  .cid-r1xQgww7Dt .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-r1xQgww7Dt .separline:before,
  .cid-r1xQgww7Dt .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-r1xQgww7Dt .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-r1xQgww7Dt .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-r1xQgww7Dt .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-r1xQgww7Dt .time-line-date-content p {
    float: left !important;
  }
  .cid-r1xQgww7Dt .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-r1xQgww7Dt .mbr-section-title,
.cid-r1xQgww7Dt .underline {
  text-align: center;
}
.cid-r1yca6WxUR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-r1yca6WxUR .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-r1yca6WxUR .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-r1yca6WxUR .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-r1yca6WxUR .rev,
.cid-r1yca6WxUR .mbr-iconfont {
  display: inline-block;
}
.cid-r1yca6WxUR .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-r1yca6WxUR .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-r1yca6WxUR .card-box {
  padding: 1.5rem;
}
.cid-r1yca6WxUR .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-r1yca6WxUR .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1yca6WxUR .mbr-section-title,
.cid-r1yca6WxUR .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r1yca6WxUR .rev {
  text-align: left;
}
.cid-r1yca6WxUR .card-text,
.cid-r1yca6WxUR .mbr-section-btn,
.cid-r1yca6WxUR .ico-line {
  text-align: center;
  color: #9e9e9e;
}
.cid-r1yca6WxUR .rev I {
  color: #0a1c44;
}
.cid-r1ycaFQiLE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0087ab;
}
.cid-r1ycaFQiLE .links {
  text-align: center;
  color: #ffffff;
}
.cid-r1ycaFQiLE p {
  margin: 0;
}
