body {
  font-family: Open Sans;
}
.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.8rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.8rem;
}
.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: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 6px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 25px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #008b8b !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: #008b8b !important;
  border-color: #008b8b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #003e3e !important;
  border-color: #003e3e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #003e3e !important;
  border-color: #003e3e !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: #002525;
  color: #002525;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #008b8b;
  border-color: #008b8b;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #008b8b !important;
  border-color: #008b8b !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: #008b8b !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: #002525 !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: #008b8b;
  border-color: #008b8b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #008b8b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0bffff;
}
.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;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #008b8b;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.btn-primary:hover {
  color: #008b8b !important;
  background: white !important;
  border-color: white !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #008b8b;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #008b8b;
  border-bottom-color: #008b8b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #008b8b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #0a1c44 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23008b8b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-ssY4gFLQAh .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssY4gFLQAh .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssY4gFLQAh a {
  font-style: normal;
}
.cid-ssY4gFLQAh .show {
  overflow: visible;
}
.cid-ssY4gFLQAh .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssY4gFLQAh .dropdown-item:active {
  background-color: transparent;
}
.cid-ssY4gFLQAh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssY4gFLQAh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .nav-item:focus,
.cid-ssY4gFLQAh .nav-link:focus {
  outline: none;
}
.cid-ssY4gFLQAh .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssY4gFLQAh .menu-logo {
  margin-right: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssY4gFLQAh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssY4gFLQAh .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssY4gFLQAh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssY4gFLQAh button.navbar-toggler:focus {
  outline: none;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssY4gFLQAh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssY4gFLQAh .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssY4gFLQAh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .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-ssY4gFLQAh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssY4gFLQAh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssY4gFLQAh .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;
}
@media (max-width: 991px) {
  .cid-ssY4gFLQAh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh img {
    height: 3.8rem !important;
  }
  .cid-ssY4gFLQAh .btn {
    display: -webkit-flex;
  }
  .cid-ssY4gFLQAh button.navbar-toggler {
    display: block;
  }
  .cid-ssY4gFLQAh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing,
  .cid-ssY4gFLQAh .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .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-ssY4gFLQAh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssY4gFLQAh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssY4gFLQAh .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;
  }
}
@media (max-width: 767px) {
  .cid-ssY4gFLQAh .nav-link {
    justify-content: start !important;
  }
  .cid-ssY4gFLQAh .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssY4gFLQAh .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssY4gFLQAh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssY4gFLQAh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssY4gFLQAh .nav-link:hover,
.cid-ssY4gFLQAh .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssY4gFLQAh .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uPp09h1UZf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #7eb9b9;
}
.cid-uPp09h1UZf .mbr-section-title {
  color: #ff4a52;
}
.cid-uPp09h1UZf .mbr-section-subtitle {
  color: #232323;
}
.cid-uMNo8jMoIk {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #90ee90;
}
.cid-uMNo8jMoIk .mbr-section-title {
  color: #ff4a52;
}
.cid-uMNo8jMoIk .mbr-section-subtitle {
  color: #232323;
}
.cid-t1XrOIhynQ {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-t1XrOIhynQ svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-t1XrOIhynQ .mbr-text,
.cid-t1XrOIhynQ .mbr-section-btn {
  color: #000000;
}
.cid-t1XrOIhynQ #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-t1XrOIhynQ #e19_areaS3 {
  fill: #7eb9b9 !important;
}
.cid-t1XrOIhynQ H1 {
  color: #008b8b;
}
.cid-t1XrOIhynQ img {
  width: 70%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
.cid-t1XrOIhynQ .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #f0f0ff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-t1XrOIhynQ .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-t1XrOIhynQ img {
    left: 0px;
    width: 100%;
  }
}
.cid-tHPK0tMkVV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #008b8b;
}
.cid-tHPK0tMkVV H1 {
  color: #f5f7fa;
}
.cid-tHPK0tMkVV .mbr-text,
.cid-tHPK0tMkVV .mbr-section-btn {
  color: #f5f7fa;
}
.cid-tHPK0tMkVV H3 {
  color: #716c80;
}
.cid-sVapS0dmVR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVapS0dmVR img,
.cid-sVapS0dmVR .item-img {
  width: 100%;
}
.cid-sVapS0dmVR .item:focus,
.cid-sVapS0dmVR span:focus {
  outline: none;
}
.cid-sVapS0dmVR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sVapS0dmVR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sVapS0dmVR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sVapS0dmVR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sVapS0dmVR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sVapS0dmVR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sVapS0dmVR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sVapS0dmVR .mbr-section-title {
  color: #232323;
}
.cid-sVapS0dmVR .mbr-text,
.cid-sVapS0dmVR .mbr-section-btn {
  text-align: left;
}
.cid-sVapS0dmVR .item-title {
  text-align: left;
}
.cid-sVapS0dmVR .item-subtitle {
  text-align: left;
}
.cid-t2uNB402TA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tezzQPGTRS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-tezzQPGTRS .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-tezzQPGTRS .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tezzQPGTRS .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tezzQPGTRS .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-tezzQPGTRS .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-tezzQPGTRS .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tezzQPGTRS .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tezzQPGTRS .input-group-btn {
  padding-left: 0;
}
.cid-tezzQPGTRS .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tezzQPGTRS .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tezzQPGTRS .mbr-text {
  color: #444;
}
.cid-tezzQPGTRS h5 {
  margin-bottom: 0;
}
.cid-tezzQPGTRS .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tezzQPGTRS .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tezzQPGTRS .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tezzQPGTRS .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tezzQPGTRS .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tezzQPGTRS .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tezzQPGTRS .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tezzQPGTRS .social-list a:hover {
  opacity: 0.4;
}
.cid-tezzQPGTRS .media-container-row > div {
  padding: 0px;
}
.cid-tezzQPGTRS .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-tezzQPGTRS .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-tezzQPGTRS .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tezzQPGTRS .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tezzQPGTRS .social-list,
  .cid-tezzQPGTRS .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tezzQPGTRS h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tezzQPGTRS .form-group {
    max-width: 180px;
  }
}
.cid-tezzQPGTRS .links span {
  color: #9e9e9e;
}
.cid-tezzQPGTRS .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-tezzQPGTRS .logo-title {
  text-align: center;
}
.cid-tezzQPGTRS .logo-sub-title i {
  color: #9e9e9e;
}
.cid-tezzQPGTRS .logo-title,
.cid-tezzQPGTRS .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uCkjjcja4p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-uCkjjcja4p h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uCkjjcja4p .container {
    position: relative;
  }
  .cid-uCkjjcja4p .row {
    margin: 0;
  }
  .cid-uCkjjcja4p h2 {
    margin: 0;
  }
}
.cid-uCkjjcja4p .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uCkjjcja4p .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uCkjjcja4p h2 {
  color: #f5f7fa;
}
.cid-ssYmGxkk39 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssYmGxkk39 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssYmGxkk39 a {
  font-style: normal;
}
.cid-ssYmGxkk39 .show {
  overflow: visible;
}
.cid-ssYmGxkk39 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssYmGxkk39 .dropdown-item:active {
  background-color: transparent;
}
.cid-ssYmGxkk39 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssYmGxkk39 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssYmGxkk39 .nav-item:focus,
.cid-ssYmGxkk39 .nav-link:focus {
  outline: none;
}
.cid-ssYmGxkk39 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssYmGxkk39 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssYmGxkk39 .menu-logo {
  margin-right: auto;
}
.cid-ssYmGxkk39 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssYmGxkk39 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssYmGxkk39 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssYmGxkk39 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssYmGxkk39 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssYmGxkk39 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssYmGxkk39 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssYmGxkk39 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssYmGxkk39 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssYmGxkk39 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssYmGxkk39 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssYmGxkk39 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssYmGxkk39 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssYmGxkk39 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssYmGxkk39 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssYmGxkk39 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssYmGxkk39 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssYmGxkk39 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssYmGxkk39 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssYmGxkk39 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssYmGxkk39 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssYmGxkk39 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssYmGxkk39 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssYmGxkk39 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssYmGxkk39 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssYmGxkk39 button.navbar-toggler:focus {
  outline: none;
}
.cid-ssYmGxkk39 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssYmGxkk39 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssYmGxkk39 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYmGxkk39 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYmGxkk39 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssYmGxkk39 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssYmGxkk39 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssYmGxkk39 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssYmGxkk39 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssYmGxkk39 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssYmGxkk39 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYmGxkk39 .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssYmGxkk39 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssYmGxkk39 .collapsed .navbar-collapse.collapsing,
.cid-ssYmGxkk39 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssYmGxkk39 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssYmGxkk39 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssYmGxkk39 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssYmGxkk39 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssYmGxkk39 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssYmGxkk39 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssYmGxkk39 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssYmGxkk39 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssYmGxkk39 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssYmGxkk39 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssYmGxkk39 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssYmGxkk39 .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssYmGxkk39 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssYmGxkk39 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYmGxkk39 .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-ssYmGxkk39 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssYmGxkk39 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssYmGxkk39 .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;
}
@media (max-width: 991px) {
  .cid-ssYmGxkk39.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYmGxkk39 img {
    height: 3.8rem !important;
  }
  .cid-ssYmGxkk39 .btn {
    display: -webkit-flex;
  }
  .cid-ssYmGxkk39 button.navbar-toggler {
    display: block;
  }
  .cid-ssYmGxkk39 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssYmGxkk39 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYmGxkk39 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssYmGxkk39 .navbar-collapse.collapsing,
  .cid-ssYmGxkk39 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssYmGxkk39 .navbar-collapse.collapsing .navbar-nav,
  .cid-ssYmGxkk39 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssYmGxkk39 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssYmGxkk39 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssYmGxkk39 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssYmGxkk39 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYmGxkk39 .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssYmGxkk39 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssYmGxkk39 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssYmGxkk39 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYmGxkk39 .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-ssYmGxkk39 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssYmGxkk39 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssYmGxkk39 .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;
  }
}
@media (max-width: 767px) {
  .cid-ssYmGxkk39 .nav-link {
    justify-content: start !important;
  }
  .cid-ssYmGxkk39 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssYmGxkk39 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssYmGxkk39 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssYmGxkk39 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssYmGxkk39 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssYmGxkk39 .nav-link:hover,
.cid-ssYmGxkk39 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssYmGxkk39 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssYmGxkk39 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ssYmGyaKA1 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYmGyaKA1 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYmGyaKA1 .container {
    position: relative;
  }
  .cid-ssYmGyaKA1 .row {
    margin: 0;
  }
  .cid-ssYmGyaKA1 h2 {
    margin: 0;
  }
}
.cid-ssYmGyaKA1 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYmGyaKA1 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYmGyaKA1 h2 {
  color: #0a1c44;
}
.cid-ssYmGyPbCN {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-ssYmGyPbCN svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-ssYmGyPbCN #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-ssYmGyPbCN img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-ssYmGyPbCN img {
    width: 100%;
    left: 0;
  }
}
.cid-ssYmGyPbCN H1 {
  color: #48d678;
}
.cid-ssYmGyPbCN .mbr-text,
.cid-ssYmGyPbCN .mbr-section-btn {
  color: #0a1c44;
}
.cid-ssYo30Dpz5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ssYo30Dpz5 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-ssYo30Dpz5 .title,
.cid-ssYo30Dpz5 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-ssYo30Dpz5 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-ssYo30Dpz5 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-ssYo30Dpz5 .phone {
  margin-bottom: 0;
  color: #0a1c44;
  text-align: left;
}
.cid-ssYo30Dpz5 .text-box {
  padding: 0rem;
}
.cid-ssYo30Dpz5 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-ssYo30Dpz5 .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-ssYo30Dpz5 .card-img {
  overflow: hidden;
}
.cid-ssYo30Dpz5 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-ssYo30Dpz5 .card-box {
  padding: 0rem;
}
.cid-ssYo30Dpz5 img {
  transition: all 0.3s;
}
.cid-ssYo30Dpz5 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-ssYo30Dpz5 .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-ssYo30Dpz5 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssYo30Dpz5 .card-img {
    width: 30%;
  }
  .cid-ssYo30Dpz5 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ssYo30Dpz5 .card-img {
    width: 50%;
  }
  .cid-ssYo30Dpz5 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-ssYo30Dpz5 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-ssYo30Dpz5 .card-img {
    width: 100%;
  }
  .cid-ssYo30Dpz5 .card-box {
    width: 100%;
  }
}
.cid-ssYo30Dpz5 .card-box > p,
.cid-ssYo30Dpz5 .mbr-section-btn {
  color: #008b8b;
}
.cid-tJY66ZRHp8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tJY66ZRHp8 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-tJY66ZRHp8 .title,
.cid-tJY66ZRHp8 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-tJY66ZRHp8 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-tJY66ZRHp8 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-tJY66ZRHp8 .phone {
  margin-bottom: 0;
  color: #0a1c44;
  text-align: left;
}
.cid-tJY66ZRHp8 .text-box {
  padding: 0rem;
}
.cid-tJY66ZRHp8 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-tJY66ZRHp8 .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-tJY66ZRHp8 .card-img {
  overflow: hidden;
}
.cid-tJY66ZRHp8 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-tJY66ZRHp8 .card-box {
  padding: 0rem;
}
.cid-tJY66ZRHp8 img {
  transition: all 0.3s;
}
.cid-tJY66ZRHp8 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-tJY66ZRHp8 .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-tJY66ZRHp8 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tJY66ZRHp8 .card-img {
    width: 30%;
  }
  .cid-tJY66ZRHp8 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tJY66ZRHp8 .card-img {
    width: 50%;
  }
  .cid-tJY66ZRHp8 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-tJY66ZRHp8 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-tJY66ZRHp8 .card-img {
    width: 100%;
  }
  .cid-tJY66ZRHp8 .card-box {
    width: 100%;
  }
}
.cid-tJY66ZRHp8 .card-box > p,
.cid-tJY66ZRHp8 .mbr-section-btn {
  color: #008b8b;
}
.cid-uD3RjLQJby {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uD3RjLQJby .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-uD3RjLQJby .title,
.cid-uD3RjLQJby .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-uD3RjLQJby .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-uD3RjLQJby .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-uD3RjLQJby .phone {
  margin-bottom: 0;
  color: #0a1c44;
  text-align: left;
}
.cid-uD3RjLQJby .text-box {
  padding: 0rem;
}
.cid-uD3RjLQJby .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-uD3RjLQJby .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-uD3RjLQJby .card-img {
  overflow: hidden;
}
.cid-uD3RjLQJby .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-uD3RjLQJby .card-box {
  padding: 0rem;
}
.cid-uD3RjLQJby img {
  transition: all 0.3s;
}
.cid-uD3RjLQJby .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-uD3RjLQJby .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-uD3RjLQJby .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uD3RjLQJby .card-img {
    width: 30%;
  }
  .cid-uD3RjLQJby .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uD3RjLQJby .card-img {
    width: 50%;
  }
  .cid-uD3RjLQJby .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-uD3RjLQJby .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-uD3RjLQJby .card-img {
    width: 100%;
  }
  .cid-uD3RjLQJby .card-box {
    width: 100%;
  }
}
.cid-uD3RjLQJby .card-box > p,
.cid-uD3RjLQJby .mbr-section-btn {
  color: #008b8b;
}
.cid-ssYokDww4Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ssYokDww4Q .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-ssYokDww4Q .title,
.cid-ssYokDww4Q .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-ssYokDww4Q .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-ssYokDww4Q .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-ssYokDww4Q .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-ssYokDww4Q .text-box {
  padding: 0rem;
}
.cid-ssYokDww4Q .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-ssYokDww4Q .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-ssYokDww4Q .card-img {
  overflow: hidden;
}
.cid-ssYokDww4Q .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-ssYokDww4Q .card-box {
  padding: 0rem;
}
.cid-ssYokDww4Q img {
  transition: all 0.3s;
}
.cid-ssYokDww4Q .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-ssYokDww4Q .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-ssYokDww4Q .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssYokDww4Q .card-img {
    width: 30%;
  }
  .cid-ssYokDww4Q .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ssYokDww4Q .card-img {
    width: 50%;
  }
  .cid-ssYokDww4Q .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-ssYokDww4Q .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-ssYokDww4Q .card-img {
    width: 100%;
  }
  .cid-ssYokDww4Q .card-box {
    width: 100%;
  }
}
.cid-ssYokDww4Q .card-box > p,
.cid-ssYokDww4Q .mbr-section-btn {
  color: #767676;
}
.cid-ssYoiBT1up {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ssYoiBT1up .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-ssYoiBT1up .title,
.cid-ssYoiBT1up .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-ssYoiBT1up .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-ssYoiBT1up .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-ssYoiBT1up .phone {
  margin-bottom: 0;
  color: #0a1c44;
  text-align: left;
}
.cid-ssYoiBT1up .text-box {
  padding: 0rem;
}
.cid-ssYoiBT1up .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-ssYoiBT1up .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-ssYoiBT1up .card-img {
  overflow: hidden;
}
.cid-ssYoiBT1up .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-ssYoiBT1up .card-box {
  padding: 0rem;
}
.cid-ssYoiBT1up img {
  transition: all 0.3s;
}
.cid-ssYoiBT1up .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-ssYoiBT1up .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-ssYoiBT1up .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssYoiBT1up .card-img {
    width: 30%;
  }
  .cid-ssYoiBT1up .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ssYoiBT1up .card-img {
    width: 50%;
  }
  .cid-ssYoiBT1up .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-ssYoiBT1up .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-ssYoiBT1up .card-img {
    width: 100%;
  }
  .cid-ssYoiBT1up .card-box {
    width: 100%;
  }
}
.cid-ssYoiBT1up .card-box > p,
.cid-ssYoiBT1up .mbr-section-btn {
  color: #767676;
}
.cid-ssYojdKEM0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ssYojdKEM0 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-ssYojdKEM0 .title,
.cid-ssYojdKEM0 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-ssYojdKEM0 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-ssYojdKEM0 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-ssYojdKEM0 .phone {
  margin-bottom: 0;
  color: #0a1c44;
  text-align: left;
}
.cid-ssYojdKEM0 .text-box {
  padding: 0rem;
}
.cid-ssYojdKEM0 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-ssYojdKEM0 .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-ssYojdKEM0 .card-img {
  overflow: hidden;
}
.cid-ssYojdKEM0 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-ssYojdKEM0 .card-box {
  padding: 0rem;
}
.cid-ssYojdKEM0 img {
  transition: all 0.3s;
}
.cid-ssYojdKEM0 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-ssYojdKEM0 .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-ssYojdKEM0 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssYojdKEM0 .card-img {
    width: 30%;
  }
  .cid-ssYojdKEM0 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ssYojdKEM0 .card-img {
    width: 50%;
  }
  .cid-ssYojdKEM0 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-ssYojdKEM0 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-ssYojdKEM0 .card-img {
    width: 100%;
  }
  .cid-ssYojdKEM0 .card-box {
    width: 100%;
  }
}
.cid-ssYojdKEM0 .card-box > p,
.cid-ssYojdKEM0 .mbr-section-btn {
  color: #767676;
}
.cid-ssYojTnLTr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ssYojTnLTr .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-ssYojTnLTr .title,
.cid-ssYojTnLTr .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-ssYojTnLTr .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-ssYojTnLTr .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-ssYojTnLTr .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-ssYojTnLTr .text-box {
  padding: 0rem;
}
.cid-ssYojTnLTr .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-ssYojTnLTr .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-ssYojTnLTr .card-img {
  overflow: hidden;
}
.cid-ssYojTnLTr .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-ssYojTnLTr .card-box {
  padding: 0rem;
}
.cid-ssYojTnLTr img {
  transition: all 0.3s;
}
.cid-ssYojTnLTr .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-ssYojTnLTr .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-ssYojTnLTr .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssYojTnLTr .card-img {
    width: 30%;
  }
  .cid-ssYojTnLTr .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ssYojTnLTr .card-img {
    width: 50%;
  }
  .cid-ssYojTnLTr .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-ssYojTnLTr .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-ssYojTnLTr .card-img {
    width: 100%;
  }
  .cid-ssYojTnLTr .card-box {
    width: 100%;
  }
}
.cid-ssYojTnLTr .card-box > p,
.cid-ssYojTnLTr .mbr-section-btn {
  color: #767676;
}
.cid-ssYoJBJmQy {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ssYoJBJmQy .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-ssYoJBJmQy .title,
.cid-ssYoJBJmQy .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-ssYoJBJmQy .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-ssYoJBJmQy .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-ssYoJBJmQy .phone {
  margin-bottom: 0;
  color: #0a1c44;
  text-align: left;
}
.cid-ssYoJBJmQy .text-box {
  padding: 0rem;
}
.cid-ssYoJBJmQy .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-ssYoJBJmQy .card-title {
  color: #008b8b;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-ssYoJBJmQy .card-img {
  overflow: hidden;
}
.cid-ssYoJBJmQy .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-ssYoJBJmQy .card-box {
  padding: 0rem;
}
.cid-ssYoJBJmQy img {
  transition: all 0.3s;
}
.cid-ssYoJBJmQy .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-ssYoJBJmQy .status {
  color: #0a1c44;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-ssYoJBJmQy .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssYoJBJmQy .card-img {
    width: 30%;
  }
  .cid-ssYoJBJmQy .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ssYoJBJmQy .card-img {
    width: 50%;
  }
  .cid-ssYoJBJmQy .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-ssYoJBJmQy .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-ssYoJBJmQy .card-img {
    width: 100%;
  }
  .cid-ssYoJBJmQy .card-box {
    width: 100%;
  }
}
.cid-ssYoJBJmQy .card-box > p,
.cid-ssYoJBJmQy .mbr-section-btn {
  color: #767676;
}
.cid-st3o5Gzj4P {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3o5Gzj4P .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3o5Gzj4P .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3o5Gzj4P .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3o5Gzj4P .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3o5Gzj4P .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3o5Gzj4P .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3o5Gzj4P .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3o5Gzj4P .input-group-btn {
  padding-left: 0;
}
.cid-st3o5Gzj4P .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3o5Gzj4P .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3o5Gzj4P .mbr-text {
  color: #444;
}
.cid-st3o5Gzj4P h5 {
  margin-bottom: 0;
}
.cid-st3o5Gzj4P .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3o5Gzj4P .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3o5Gzj4P .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3o5Gzj4P .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3o5Gzj4P .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3o5Gzj4P .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3o5Gzj4P .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3o5Gzj4P .social-list a:hover {
  opacity: 0.4;
}
.cid-st3o5Gzj4P .media-container-row > div {
  padding: 0px;
}
.cid-st3o5Gzj4P .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3o5Gzj4P .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3o5Gzj4P .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3o5Gzj4P .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3o5Gzj4P .social-list,
  .cid-st3o5Gzj4P .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3o5Gzj4P h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3o5Gzj4P .form-group {
    max-width: 180px;
  }
}
.cid-st3o5Gzj4P .links span {
  color: #9e9e9e;
}
.cid-st3o5Gzj4P .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3o5Gzj4P .logo-title {
  text-align: center;
}
.cid-st3o5Gzj4P .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3o5Gzj4P .logo-title,
.cid-st3o5Gzj4P .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssYtutRynZ .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssYtutRynZ .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssYtutRynZ a {
  font-style: normal;
}
.cid-ssYtutRynZ .show {
  overflow: visible;
}
.cid-ssYtutRynZ .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssYtutRynZ .dropdown-item:active {
  background-color: transparent;
}
.cid-ssYtutRynZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssYtutRynZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssYtutRynZ .nav-item:focus,
.cid-ssYtutRynZ .nav-link:focus {
  outline: none;
}
.cid-ssYtutRynZ .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssYtutRynZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssYtutRynZ .menu-logo {
  margin-right: auto;
}
.cid-ssYtutRynZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssYtutRynZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssYtutRynZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssYtutRynZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssYtutRynZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssYtutRynZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssYtutRynZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssYtutRynZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssYtutRynZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssYtutRynZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssYtutRynZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssYtutRynZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssYtutRynZ .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssYtutRynZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssYtutRynZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssYtutRynZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssYtutRynZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssYtutRynZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssYtutRynZ .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssYtutRynZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssYtutRynZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssYtutRynZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssYtutRynZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssYtutRynZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssYtutRynZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssYtutRynZ button.navbar-toggler:focus {
  outline: none;
}
.cid-ssYtutRynZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssYtutRynZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssYtutRynZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYtutRynZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYtutRynZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssYtutRynZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssYtutRynZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssYtutRynZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssYtutRynZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssYtutRynZ .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssYtutRynZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYtutRynZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssYtutRynZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssYtutRynZ .collapsed .navbar-collapse.collapsing,
.cid-ssYtutRynZ .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssYtutRynZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssYtutRynZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssYtutRynZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssYtutRynZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssYtutRynZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssYtutRynZ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssYtutRynZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssYtutRynZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssYtutRynZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssYtutRynZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssYtutRynZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssYtutRynZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssYtutRynZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssYtutRynZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYtutRynZ .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-ssYtutRynZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssYtutRynZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssYtutRynZ .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;
}
@media (max-width: 991px) {
  .cid-ssYtutRynZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYtutRynZ img {
    height: 3.8rem !important;
  }
  .cid-ssYtutRynZ .btn {
    display: -webkit-flex;
  }
  .cid-ssYtutRynZ button.navbar-toggler {
    display: block;
  }
  .cid-ssYtutRynZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssYtutRynZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYtutRynZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssYtutRynZ .navbar-collapse.collapsing,
  .cid-ssYtutRynZ .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssYtutRynZ .navbar-collapse.collapsing .navbar-nav,
  .cid-ssYtutRynZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssYtutRynZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssYtutRynZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssYtutRynZ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssYtutRynZ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYtutRynZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssYtutRynZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssYtutRynZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssYtutRynZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYtutRynZ .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-ssYtutRynZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssYtutRynZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssYtutRynZ .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;
  }
}
@media (max-width: 767px) {
  .cid-ssYtutRynZ .nav-link {
    justify-content: start !important;
  }
  .cid-ssYtutRynZ .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssYtutRynZ .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssYtutRynZ .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssYtutRynZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssYtutRynZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssYtutRynZ .nav-link:hover,
.cid-ssYtutRynZ .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssYtutRynZ .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssYtutRynZ .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st7AUgYEHh {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st7AUgYEHh h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st7AUgYEHh .container {
    position: relative;
  }
  .cid-st7AUgYEHh .row {
    margin: 0;
  }
  .cid-st7AUgYEHh h2 {
    margin: 0;
  }
}
.cid-st7AUgYEHh .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st7AUgYEHh .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st7AUgYEHh h2 {
  color: #0a1c44;
}
.cid-st7AVfZWnr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st7AVfZWnr h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st7AVfZWnr .container {
    position: relative;
  }
  .cid-st7AVfZWnr .row {
    margin: 0;
  }
  .cid-st7AVfZWnr h2 {
    margin: 0;
  }
}
.cid-st7AVfZWnr .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st7AVfZWnr .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st7AVfZWnr h2 {
  color: #0a1c44;
}
.cid-ssYuedeLRR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ssYuedeLRR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ssYuedeLRR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ssYuedeLRR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ssYuedeLRR .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-ssYuedeLRR .container {
  padding: 0;
}
.cid-ssYuedeLRR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ssYuedeLRR .icon-focus {
  display: none;
}
.cid-ssYuedeLRR .btn[class*=-outline] {
  border: none!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  color: #808080 !important;
  font-weight: 400;
  box-shadow: none !important;
}
.cid-ssYuedeLRR .btn[class*=-outline]:hover,
.cid-ssYuedeLRR .btn[class*=-outline]:active {
  background: transparent!important;
}
.cid-ssYuedeLRR li:hover .btn-primary-outline,
.cid-ssYuedeLRR li:active .btn-primary-outline,
.cid-ssYuedeLRR li.active .btn-primary-outline {
  color: #008b8b !important;
}
.cid-ssYuedeLRR li:hover .btn-secondary-outline,
.cid-ssYuedeLRR li:active .btn-secondary-outline,
.cid-ssYuedeLRR li.active .btn-secondary-outline {
  color: #0a1c44 !important;
}
.cid-ssYuedeLRR li:hover .btn-info-outline,
.cid-ssYuedeLRR li:active .btn-info-outline,
.cid-ssYuedeLRR li.active .btn-info-outline {
  color: #48d678 !important;
}
.cid-ssYuedeLRR li:hover .btn-warning-outline,
.cid-ssYuedeLRR li:active .btn-warning-outline,
.cid-ssYuedeLRR li.active .btn-warning-outline {
  color: #d63d3d !important;
}
.cid-ssYuedeLRR li:hover .btn-white-outline,
.cid-ssYuedeLRR li:active .btn-white-outline,
.cid-ssYuedeLRR li.active .btn-white-outline {
  color: #ffffff !important;
}
.cid-ssYuedeLRR li:hover .btn-black-outline,
.cid-ssYuedeLRR li:active .btn-black-outline,
.cid-ssYuedeLRR li.active .btn-black-outline {
  color: #000000 !important;
}
.cid-ssYuedeLRR li:hover .btn-success-outline,
.cid-ssYuedeLRR li:active .btn-success-outline,
.cid-ssYuedeLRR li.active .btn-success-outline {
  color: #344cf1 !important;
}
.cid-ssYuedeLRR li:hover .btn-danger-outline,
.cid-ssYuedeLRR li:active .btn-danger-outline,
.cid-ssYuedeLRR li.active .btn-danger-outline {
  color: #ececec !important;
}
.cid-ssYuedeLRR li {
  position: relative;
}
.cid-ssYuedeLRR .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 6px;
  top: 50%;
  background: #d3d3d3 !important;
  transform: rotate(35deg) translateY(-59%);
}
.cid-ssYuedeLRR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ssYuedeLRR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ssYuedeLRR .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-ssYuedeLRR .btn {
  font-family: Open Sans !important;
}
.cid-ssYuedeLRR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ssYuedeLRR .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-ssYuedeLRR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-ssYuedeLRR .btn[class*="-outline"] {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-st3o9b1DPW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3o9b1DPW .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3o9b1DPW .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3o9b1DPW .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3o9b1DPW .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3o9b1DPW .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3o9b1DPW .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3o9b1DPW .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3o9b1DPW .input-group-btn {
  padding-left: 0;
}
.cid-st3o9b1DPW .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3o9b1DPW .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3o9b1DPW .mbr-text {
  color: #444;
}
.cid-st3o9b1DPW h5 {
  margin-bottom: 0;
}
.cid-st3o9b1DPW .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3o9b1DPW .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3o9b1DPW .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3o9b1DPW .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3o9b1DPW .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3o9b1DPW .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3o9b1DPW .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3o9b1DPW .social-list a:hover {
  opacity: 0.4;
}
.cid-st3o9b1DPW .media-container-row > div {
  padding: 0px;
}
.cid-st3o9b1DPW .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3o9b1DPW .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3o9b1DPW .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3o9b1DPW .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3o9b1DPW .social-list,
  .cid-st3o9b1DPW .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3o9b1DPW h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3o9b1DPW .form-group {
    max-width: 180px;
  }
}
.cid-st3o9b1DPW .links span {
  color: #9e9e9e;
}
.cid-st3o9b1DPW .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3o9b1DPW .logo-title {
  text-align: center;
}
.cid-st3o9b1DPW .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3o9b1DPW .logo-title,
.cid-st3o9b1DPW .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssYmmz6Cg1 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssYmmz6Cg1 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssYmmz6Cg1 a {
  font-style: normal;
}
.cid-ssYmmz6Cg1 .show {
  overflow: visible;
}
.cid-ssYmmz6Cg1 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssYmmz6Cg1 .dropdown-item:active {
  background-color: transparent;
}
.cid-ssYmmz6Cg1 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssYmmz6Cg1 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssYmmz6Cg1 .nav-item:focus,
.cid-ssYmmz6Cg1 .nav-link:focus {
  outline: none;
}
.cid-ssYmmz6Cg1 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssYmmz6Cg1 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssYmmz6Cg1 .menu-logo {
  margin-right: auto;
}
.cid-ssYmmz6Cg1 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssYmmz6Cg1 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssYmmz6Cg1 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssYmmz6Cg1 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssYmmz6Cg1 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssYmmz6Cg1 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssYmmz6Cg1 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssYmmz6Cg1 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssYmmz6Cg1 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssYmmz6Cg1 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssYmmz6Cg1 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssYmmz6Cg1 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssYmmz6Cg1 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssYmmz6Cg1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssYmmz6Cg1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssYmmz6Cg1 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssYmmz6Cg1 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssYmmz6Cg1 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssYmmz6Cg1 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssYmmz6Cg1 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssYmmz6Cg1 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssYmmz6Cg1 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssYmmz6Cg1 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssYmmz6Cg1 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssYmmz6Cg1 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssYmmz6Cg1 button.navbar-toggler:focus {
  outline: none;
}
.cid-ssYmmz6Cg1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssYmmz6Cg1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssYmmz6Cg1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYmmz6Cg1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYmmz6Cg1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssYmmz6Cg1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssYmmz6Cg1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssYmmz6Cg1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssYmmz6Cg1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssYmmz6Cg1 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssYmmz6Cg1 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYmmz6Cg1 .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.collapsing,
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssYmmz6Cg1 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssYmmz6Cg1 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssYmmz6Cg1 .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssYmmz6Cg1 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYmmz6Cg1 .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-ssYmmz6Cg1 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssYmmz6Cg1 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssYmmz6Cg1 .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;
}
@media (max-width: 991px) {
  .cid-ssYmmz6Cg1.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYmmz6Cg1 img {
    height: 3.8rem !important;
  }
  .cid-ssYmmz6Cg1 .btn {
    display: -webkit-flex;
  }
  .cid-ssYmmz6Cg1 button.navbar-toggler {
    display: block;
  }
  .cid-ssYmmz6Cg1 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssYmmz6Cg1 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYmmz6Cg1 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssYmmz6Cg1 .navbar-collapse.collapsing,
  .cid-ssYmmz6Cg1 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssYmmz6Cg1 .navbar-collapse.collapsing .navbar-nav,
  .cid-ssYmmz6Cg1 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssYmmz6Cg1 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssYmmz6Cg1 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssYmmz6Cg1 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssYmmz6Cg1 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYmmz6Cg1 .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssYmmz6Cg1 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssYmmz6Cg1 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssYmmz6Cg1 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYmmz6Cg1 .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-ssYmmz6Cg1 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssYmmz6Cg1 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssYmmz6Cg1 .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;
  }
}
@media (max-width: 767px) {
  .cid-ssYmmz6Cg1 .nav-link {
    justify-content: start !important;
  }
  .cid-ssYmmz6Cg1 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssYmmz6Cg1 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssYmmz6Cg1 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssYmmz6Cg1 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssYmmz6Cg1 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssYmmz6Cg1 .nav-link:hover,
.cid-ssYmmz6Cg1 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssYmmz6Cg1 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssYmmz6Cg1 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ssYmmzYWw4 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYmmzYWw4 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYmmzYWw4 .container {
    position: relative;
  }
  .cid-ssYmmzYWw4 .row {
    margin: 0;
  }
  .cid-ssYmmzYWw4 h2 {
    margin: 0;
  }
}
.cid-ssYmmzYWw4 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYmmzYWw4 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYmmzYWw4 h2 {
  color: #0a1c44;
}
.cid-ssYmmAGOiG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-ssYmmAGOiG svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-ssYmmAGOiG #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-ssYmmAGOiG img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-ssYmmAGOiG img {
    width: 100%;
    left: 0;
  }
}
.cid-ssYmmAGOiG H1 {
  color: #48d678;
}
.cid-ssYmmAGOiG .mbr-text,
.cid-ssYmmAGOiG .mbr-section-btn {
  color: #0a1c44;
}
.cid-st3nxfH5sE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3nxfH5sE .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3nxfH5sE .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3nxfH5sE .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3nxfH5sE .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3nxfH5sE .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3nxfH5sE .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3nxfH5sE .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3nxfH5sE .input-group-btn {
  padding-left: 0;
}
.cid-st3nxfH5sE .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3nxfH5sE .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3nxfH5sE .mbr-text {
  color: #444;
}
.cid-st3nxfH5sE h5 {
  margin-bottom: 0;
}
.cid-st3nxfH5sE .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3nxfH5sE .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3nxfH5sE .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3nxfH5sE .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3nxfH5sE .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3nxfH5sE .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3nxfH5sE .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3nxfH5sE .social-list a:hover {
  opacity: 0.4;
}
.cid-st3nxfH5sE .media-container-row > div {
  padding: 0px;
}
.cid-st3nxfH5sE .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3nxfH5sE .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3nxfH5sE .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3nxfH5sE .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3nxfH5sE .social-list,
  .cid-st3nxfH5sE .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3nxfH5sE h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3nxfH5sE .form-group {
    max-width: 180px;
  }
}
.cid-st3nxfH5sE .links span {
  color: #9e9e9e;
}
.cid-st3nxfH5sE .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3nxfH5sE .logo-title {
  text-align: center;
}
.cid-st3nxfH5sE .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3nxfH5sE .logo-title,
.cid-st3nxfH5sE .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssYJ2v2ZDQ .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssYJ2v2ZDQ .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssYJ2v2ZDQ a {
  font-style: normal;
}
.cid-ssYJ2v2ZDQ .show {
  overflow: visible;
}
.cid-ssYJ2v2ZDQ .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssYJ2v2ZDQ .dropdown-item:active {
  background-color: transparent;
}
.cid-ssYJ2v2ZDQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssYJ2v2ZDQ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssYJ2v2ZDQ .nav-item:focus,
.cid-ssYJ2v2ZDQ .nav-link:focus {
  outline: none;
}
.cid-ssYJ2v2ZDQ .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssYJ2v2ZDQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssYJ2v2ZDQ .menu-logo {
  margin-right: auto;
}
.cid-ssYJ2v2ZDQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssYJ2v2ZDQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssYJ2v2ZDQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssYJ2v2ZDQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssYJ2v2ZDQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssYJ2v2ZDQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssYJ2v2ZDQ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssYJ2v2ZDQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssYJ2v2ZDQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssYJ2v2ZDQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssYJ2v2ZDQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssYJ2v2ZDQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssYJ2v2ZDQ .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssYJ2v2ZDQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssYJ2v2ZDQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssYJ2v2ZDQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssYJ2v2ZDQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssYJ2v2ZDQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssYJ2v2ZDQ .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssYJ2v2ZDQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssYJ2v2ZDQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssYJ2v2ZDQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssYJ2v2ZDQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssYJ2v2ZDQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssYJ2v2ZDQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssYJ2v2ZDQ button.navbar-toggler:focus {
  outline: none;
}
.cid-ssYJ2v2ZDQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssYJ2v2ZDQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssYJ2v2ZDQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYJ2v2ZDQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYJ2v2ZDQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssYJ2v2ZDQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssYJ2v2ZDQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssYJ2v2ZDQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssYJ2v2ZDQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssYJ2v2ZDQ .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssYJ2v2ZDQ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYJ2v2ZDQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.collapsing,
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssYJ2v2ZDQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssYJ2v2ZDQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssYJ2v2ZDQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssYJ2v2ZDQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYJ2v2ZDQ .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-ssYJ2v2ZDQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssYJ2v2ZDQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssYJ2v2ZDQ .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;
}
@media (max-width: 991px) {
  .cid-ssYJ2v2ZDQ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYJ2v2ZDQ img {
    height: 3.8rem !important;
  }
  .cid-ssYJ2v2ZDQ .btn {
    display: -webkit-flex;
  }
  .cid-ssYJ2v2ZDQ button.navbar-toggler {
    display: block;
  }
  .cid-ssYJ2v2ZDQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssYJ2v2ZDQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYJ2v2ZDQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssYJ2v2ZDQ .navbar-collapse.collapsing,
  .cid-ssYJ2v2ZDQ .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssYJ2v2ZDQ .navbar-collapse.collapsing .navbar-nav,
  .cid-ssYJ2v2ZDQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssYJ2v2ZDQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssYJ2v2ZDQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssYJ2v2ZDQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssYJ2v2ZDQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYJ2v2ZDQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssYJ2v2ZDQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssYJ2v2ZDQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssYJ2v2ZDQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYJ2v2ZDQ .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-ssYJ2v2ZDQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssYJ2v2ZDQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssYJ2v2ZDQ .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;
  }
}
@media (max-width: 767px) {
  .cid-ssYJ2v2ZDQ .nav-link {
    justify-content: start !important;
  }
  .cid-ssYJ2v2ZDQ .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssYJ2v2ZDQ .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssYJ2v2ZDQ .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssYJ2v2ZDQ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssYJ2v2ZDQ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssYJ2v2ZDQ .nav-link:hover,
.cid-ssYJ2v2ZDQ .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssYJ2v2ZDQ .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssYJ2v2ZDQ .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ssYJ2wqRIJ {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYJ2wqRIJ h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYJ2wqRIJ .container {
    position: relative;
  }
  .cid-ssYJ2wqRIJ .row {
    margin: 0;
  }
  .cid-ssYJ2wqRIJ h2 {
    margin: 0;
  }
}
.cid-ssYJ2wqRIJ .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYJ2wqRIJ .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYJ2wqRIJ h2 {
  color: #0a1c44;
}
.cid-staCmtpFMc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
.cid-ssYJprJDiY {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ssYJprJDiY .mbr-text {
  color: #0a1c44;
}
.cid-ssYJprJDiY .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-ssYJprJDiY .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-ssYJprJDiY .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-ssYKS4nSlL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYKS4nSlL h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYKS4nSlL .container {
    position: relative;
  }
  .cid-ssYKS4nSlL .row {
    margin: 0;
  }
  .cid-ssYKS4nSlL h2 {
    margin: 0;
  }
}
.cid-ssYKS4nSlL .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYKS4nSlL .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYKS4nSlL h2 {
  color: #0a1c44;
}
.cid-ssYKSvh8dV {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ssYKSvh8dV .mbr-text {
  color: #0a1c44;
}
.cid-ssYKSvh8dV .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-ssYKSvh8dV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-ssYKSvh8dV .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-ssYLRCadhf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYLRCadhf h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYLRCadhf .container {
    position: relative;
  }
  .cid-ssYLRCadhf .row {
    margin: 0;
  }
  .cid-ssYLRCadhf h2 {
    margin: 0;
  }
}
.cid-ssYLRCadhf .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYLRCadhf .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYLRCadhf h2 {
  color: #0a1c44;
}
.cid-ssYLP9RGGM {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ssYLP9RGGM .mbr-text {
  color: #0a1c44;
}
.cid-ssYLP9RGGM .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-ssYLP9RGGM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-ssYLP9RGGM .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-ssYMyK6yMm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7eb9b9;
}
.cid-ssYMyK6yMm .mbr-text {
  color: #0a1c44;
}
.cid-ssYMyK6yMm .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-ssYMyK6yMm .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-ssYMyK6yMm .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-st3nWPQ5AM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3nWPQ5AM .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3nWPQ5AM .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3nWPQ5AM .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3nWPQ5AM .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3nWPQ5AM .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3nWPQ5AM .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3nWPQ5AM .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3nWPQ5AM .input-group-btn {
  padding-left: 0;
}
.cid-st3nWPQ5AM .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3nWPQ5AM .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3nWPQ5AM .mbr-text {
  color: #444;
}
.cid-st3nWPQ5AM h5 {
  margin-bottom: 0;
}
.cid-st3nWPQ5AM .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3nWPQ5AM .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3nWPQ5AM .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3nWPQ5AM .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3nWPQ5AM .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3nWPQ5AM .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3nWPQ5AM .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3nWPQ5AM .social-list a:hover {
  opacity: 0.4;
}
.cid-st3nWPQ5AM .media-container-row > div {
  padding: 0px;
}
.cid-st3nWPQ5AM .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3nWPQ5AM .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3nWPQ5AM .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3nWPQ5AM .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3nWPQ5AM .social-list,
  .cid-st3nWPQ5AM .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3nWPQ5AM h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3nWPQ5AM .form-group {
    max-width: 180px;
  }
}
.cid-st3nWPQ5AM .links span {
  color: #9e9e9e;
}
.cid-st3nWPQ5AM .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3nWPQ5AM .logo-title {
  text-align: center;
}
.cid-st3nWPQ5AM .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3nWPQ5AM .logo-title,
.cid-st3nWPQ5AM .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssYNw5UNNF .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssYNw5UNNF .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssYNw5UNNF a {
  font-style: normal;
}
.cid-ssYNw5UNNF .show {
  overflow: visible;
}
.cid-ssYNw5UNNF .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssYNw5UNNF .dropdown-item:active {
  background-color: transparent;
}
.cid-ssYNw5UNNF .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssYNw5UNNF .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssYNw5UNNF .nav-item:focus,
.cid-ssYNw5UNNF .nav-link:focus {
  outline: none;
}
.cid-ssYNw5UNNF .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssYNw5UNNF .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssYNw5UNNF .menu-logo {
  margin-right: auto;
}
.cid-ssYNw5UNNF .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssYNw5UNNF .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssYNw5UNNF .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssYNw5UNNF .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssYNw5UNNF .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssYNw5UNNF .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssYNw5UNNF .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssYNw5UNNF .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssYNw5UNNF .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssYNw5UNNF .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssYNw5UNNF .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssYNw5UNNF .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssYNw5UNNF .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssYNw5UNNF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssYNw5UNNF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssYNw5UNNF .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssYNw5UNNF .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssYNw5UNNF .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssYNw5UNNF .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssYNw5UNNF .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssYNw5UNNF .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssYNw5UNNF .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssYNw5UNNF .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssYNw5UNNF .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssYNw5UNNF button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssYNw5UNNF button.navbar-toggler:focus {
  outline: none;
}
.cid-ssYNw5UNNF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssYNw5UNNF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssYNw5UNNF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYNw5UNNF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYNw5UNNF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssYNw5UNNF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssYNw5UNNF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssYNw5UNNF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssYNw5UNNF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssYNw5UNNF .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssYNw5UNNF .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYNw5UNNF .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssYNw5UNNF .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssYNw5UNNF .collapsed .navbar-collapse.collapsing,
.cid-ssYNw5UNNF .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssYNw5UNNF .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssYNw5UNNF .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssYNw5UNNF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssYNw5UNNF .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssYNw5UNNF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssYNw5UNNF .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssYNw5UNNF .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssYNw5UNNF .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssYNw5UNNF .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssYNw5UNNF .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssYNw5UNNF .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssYNw5UNNF .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssYNw5UNNF .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssYNw5UNNF .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYNw5UNNF .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-ssYNw5UNNF .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssYNw5UNNF .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssYNw5UNNF .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;
}
@media (max-width: 991px) {
  .cid-ssYNw5UNNF.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYNw5UNNF img {
    height: 3.8rem !important;
  }
  .cid-ssYNw5UNNF .btn {
    display: -webkit-flex;
  }
  .cid-ssYNw5UNNF button.navbar-toggler {
    display: block;
  }
  .cid-ssYNw5UNNF .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssYNw5UNNF .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYNw5UNNF .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssYNw5UNNF .navbar-collapse.collapsing,
  .cid-ssYNw5UNNF .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssYNw5UNNF .navbar-collapse.collapsing .navbar-nav,
  .cid-ssYNw5UNNF .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssYNw5UNNF .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssYNw5UNNF .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssYNw5UNNF .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssYNw5UNNF .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYNw5UNNF .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssYNw5UNNF .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssYNw5UNNF .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssYNw5UNNF .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYNw5UNNF .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-ssYNw5UNNF .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssYNw5UNNF .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssYNw5UNNF .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;
  }
}
@media (max-width: 767px) {
  .cid-ssYNw5UNNF .nav-link {
    justify-content: start !important;
  }
  .cid-ssYNw5UNNF .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssYNw5UNNF .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssYNw5UNNF .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssYNw5UNNF .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssYNw5UNNF .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssYNw5UNNF .nav-link:hover,
.cid-ssYNw5UNNF .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssYNw5UNNF .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssYNw5UNNF .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ssYNw705LB {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYNw705LB h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYNw705LB .container {
    position: relative;
  }
  .cid-ssYNw705LB .row {
    margin: 0;
  }
  .cid-ssYNw705LB h2 {
    margin: 0;
  }
}
.cid-ssYNw705LB .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYNw705LB .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYNw705LB h2 {
  color: #0a1c44;
}
.cid-ssYNw7Q2l7 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ssYNw7Q2l7 .mbr-text {
  color: #0a1c44;
}
.cid-ssYNw7Q2l7 .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-ssYNw7Q2l7 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-ssYNw7Q2l7 .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-st3o1OFv53 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3o1OFv53 .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3o1OFv53 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3o1OFv53 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3o1OFv53 .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3o1OFv53 .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3o1OFv53 .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3o1OFv53 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3o1OFv53 .input-group-btn {
  padding-left: 0;
}
.cid-st3o1OFv53 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3o1OFv53 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3o1OFv53 .mbr-text {
  color: #444;
}
.cid-st3o1OFv53 h5 {
  margin-bottom: 0;
}
.cid-st3o1OFv53 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3o1OFv53 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3o1OFv53 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3o1OFv53 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3o1OFv53 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3o1OFv53 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3o1OFv53 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3o1OFv53 .social-list a:hover {
  opacity: 0.4;
}
.cid-st3o1OFv53 .media-container-row > div {
  padding: 0px;
}
.cid-st3o1OFv53 .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3o1OFv53 .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3o1OFv53 .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3o1OFv53 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3o1OFv53 .social-list,
  .cid-st3o1OFv53 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3o1OFv53 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3o1OFv53 .form-group {
    max-width: 180px;
  }
}
.cid-st3o1OFv53 .links span {
  color: #9e9e9e;
}
.cid-st3o1OFv53 .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3o1OFv53 .logo-title {
  text-align: center;
}
.cid-st3o1OFv53 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3o1OFv53 .logo-title,
.cid-st3o1OFv53 .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssYU8qo11a .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssYU8qo11a .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssYU8qo11a a {
  font-style: normal;
}
.cid-ssYU8qo11a .show {
  overflow: visible;
}
.cid-ssYU8qo11a .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssYU8qo11a .dropdown-item:active {
  background-color: transparent;
}
.cid-ssYU8qo11a .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssYU8qo11a .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssYU8qo11a .nav-item:focus,
.cid-ssYU8qo11a .nav-link:focus {
  outline: none;
}
.cid-ssYU8qo11a .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssYU8qo11a .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssYU8qo11a .menu-logo {
  margin-right: auto;
}
.cid-ssYU8qo11a .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssYU8qo11a .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssYU8qo11a .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssYU8qo11a .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssYU8qo11a .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssYU8qo11a .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssYU8qo11a .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssYU8qo11a .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssYU8qo11a .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssYU8qo11a .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssYU8qo11a .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssYU8qo11a .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssYU8qo11a .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssYU8qo11a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssYU8qo11a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssYU8qo11a .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssYU8qo11a .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssYU8qo11a .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssYU8qo11a .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssYU8qo11a .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssYU8qo11a .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssYU8qo11a .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssYU8qo11a .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssYU8qo11a .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssYU8qo11a button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssYU8qo11a button.navbar-toggler:focus {
  outline: none;
}
.cid-ssYU8qo11a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssYU8qo11a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssYU8qo11a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYU8qo11a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYU8qo11a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssYU8qo11a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssYU8qo11a nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssYU8qo11a nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssYU8qo11a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssYU8qo11a .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssYU8qo11a .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYU8qo11a .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssYU8qo11a .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssYU8qo11a .collapsed .navbar-collapse.collapsing,
.cid-ssYU8qo11a .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssYU8qo11a .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssYU8qo11a .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssYU8qo11a .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssYU8qo11a .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssYU8qo11a .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssYU8qo11a .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssYU8qo11a .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssYU8qo11a .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssYU8qo11a .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssYU8qo11a .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssYU8qo11a .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssYU8qo11a .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssYU8qo11a .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssYU8qo11a .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYU8qo11a .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-ssYU8qo11a .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssYU8qo11a .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssYU8qo11a .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;
}
@media (max-width: 991px) {
  .cid-ssYU8qo11a.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYU8qo11a img {
    height: 3.8rem !important;
  }
  .cid-ssYU8qo11a .btn {
    display: -webkit-flex;
  }
  .cid-ssYU8qo11a button.navbar-toggler {
    display: block;
  }
  .cid-ssYU8qo11a .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssYU8qo11a .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYU8qo11a .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssYU8qo11a .navbar-collapse.collapsing,
  .cid-ssYU8qo11a .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssYU8qo11a .navbar-collapse.collapsing .navbar-nav,
  .cid-ssYU8qo11a .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssYU8qo11a .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssYU8qo11a .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssYU8qo11a .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssYU8qo11a .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYU8qo11a .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssYU8qo11a .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssYU8qo11a .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssYU8qo11a .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYU8qo11a .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-ssYU8qo11a .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssYU8qo11a .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssYU8qo11a .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;
  }
}
@media (max-width: 767px) {
  .cid-ssYU8qo11a .nav-link {
    justify-content: start !important;
  }
  .cid-ssYU8qo11a .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssYU8qo11a .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssYU8qo11a .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssYU8qo11a .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssYU8qo11a .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssYU8qo11a .nav-link:hover,
.cid-ssYU8qo11a .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssYU8qo11a .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssYU8qo11a .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ssYU8qUYyM {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYU8qUYyM h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYU8qUYyM .container {
    position: relative;
  }
  .cid-ssYU8qUYyM .row {
    margin: 0;
  }
  .cid-ssYU8qUYyM h2 {
    margin: 0;
  }
}
.cid-ssYU8qUYyM .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYU8qUYyM .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYU8qUYyM h2 {
  color: #0a1c44;
}
.cid-uMNsXKBWXG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #344cf1;
}
.cid-uMNsXKBWXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNsXKBWXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNsXKBWXG .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uMNsXKBWXG .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMNsXKBWXG .container {
    padding: 0 30px;
  }
}
.cid-uMNsXKBWXG .card-wrapper {
  padding: 40px 3rem;
  border-radius: 3em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMNsXKBWXG .card-wrapper {
    display: block;
    padding: 30px 20px;
  }
}
.cid-uMNsXKBWXG .card-wrapper .title-wrapper {
  margin-right: 50px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .cid-uMNsXKBWXG .card-wrapper .title-wrapper {
    margin: 0;
  }
}
.cid-uMNsXKBWXG .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uMNsXKBWXG .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMNsXKBWXG .mbr-section-title {
  color: #2b2b2b;
}
.cid-uMNsXKBWXG .mbr-text {
  color: #4e4e4e;
}
.cid-uMNFbPe3Jh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #344cf1;
}
.cid-uMNFbPe3Jh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNFbPe3Jh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNFbPe3Jh .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uMNFbPe3Jh .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMNFbPe3Jh .container {
    padding: 0 30px;
  }
}
.cid-uMNFbPe3Jh .card-wrapper {
  padding: 40px 3rem;
  border-radius: 3em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMNFbPe3Jh .card-wrapper {
    display: block;
    padding: 30px 20px;
  }
}
.cid-uMNFbPe3Jh .card-wrapper .title-wrapper {
  margin-right: 50px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .cid-uMNFbPe3Jh .card-wrapper .title-wrapper {
    margin: 0;
  }
}
.cid-uMNFbPe3Jh .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uMNFbPe3Jh .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMNFbPe3Jh .mbr-section-title {
  color: #2b2b2b;
}
.cid-uMNFbPe3Jh .mbr-text {
  color: #4e4e4e;
}
.cid-uMNFnCscJc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #344cf1;
}
.cid-uMNFnCscJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNFnCscJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNFnCscJc .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uMNFnCscJc .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMNFnCscJc .container {
    padding: 0 30px;
  }
}
.cid-uMNFnCscJc .card-wrapper {
  padding: 40px 3rem;
  border-radius: 3em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMNFnCscJc .card-wrapper {
    display: block;
    padding: 30px 20px;
  }
}
.cid-uMNFnCscJc .card-wrapper .title-wrapper {
  margin-right: 50px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .cid-uMNFnCscJc .card-wrapper .title-wrapper {
    margin: 0;
  }
}
.cid-uMNFnCscJc .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uMNFnCscJc .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMNFnCscJc .mbr-section-title {
  color: #2b2b2b;
}
.cid-uMNFnCscJc .mbr-text {
  color: #4e4e4e;
}
.cid-uMNFsrgmqA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #344cf1;
}
.cid-uMNFsrgmqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNFsrgmqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNFsrgmqA .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uMNFsrgmqA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMNFsrgmqA .container {
    padding: 0 30px;
  }
}
.cid-uMNFsrgmqA .card-wrapper {
  padding: 40px 3rem;
  border-radius: 3em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMNFsrgmqA .card-wrapper {
    display: block;
    padding: 30px 20px;
  }
}
.cid-uMNFsrgmqA .card-wrapper .title-wrapper {
  margin-right: 50px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .cid-uMNFsrgmqA .card-wrapper .title-wrapper {
    margin: 0;
  }
}
.cid-uMNFsrgmqA .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uMNFsrgmqA .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMNFsrgmqA .mbr-section-title {
  color: #2b2b2b;
}
.cid-uMNFsrgmqA .mbr-text {
  color: #4e4e4e;
}
.cid-uMNFztYexL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #344cf1;
}
.cid-uMNFztYexL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNFztYexL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNFztYexL .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uMNFztYexL .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMNFztYexL .container {
    padding: 0 30px;
  }
}
.cid-uMNFztYexL .card-wrapper {
  padding: 40px 3rem;
  border-radius: 3em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMNFztYexL .card-wrapper {
    display: block;
    padding: 30px 20px;
  }
}
.cid-uMNFztYexL .card-wrapper .title-wrapper {
  margin-right: 50px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .cid-uMNFztYexL .card-wrapper .title-wrapper {
    margin: 0;
  }
}
.cid-uMNFztYexL .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uMNFztYexL .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMNFztYexL .mbr-section-title {
  color: #2b2b2b;
}
.cid-uMNFztYexL .mbr-text {
  color: #4e4e4e;
}
.cid-uMNFFPNPv4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #344cf1;
}
.cid-uMNFFPNPv4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNFFPNPv4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNFFPNPv4 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uMNFFPNPv4 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMNFFPNPv4 .container {
    padding: 0 30px;
  }
}
.cid-uMNFFPNPv4 .card-wrapper {
  padding: 40px 3rem;
  border-radius: 3em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMNFFPNPv4 .card-wrapper {
    display: block;
    padding: 30px 20px;
  }
}
.cid-uMNFFPNPv4 .card-wrapper .title-wrapper {
  margin-right: 50px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .cid-uMNFFPNPv4 .card-wrapper .title-wrapper {
    margin: 0;
  }
}
.cid-uMNFFPNPv4 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uMNFFPNPv4 .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMNFFPNPv4 .mbr-section-title {
  color: #2b2b2b;
}
.cid-uMNFFPNPv4 .mbr-text {
  color: #4e4e4e;
}
.cid-uMNFLknEuY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #344cf1;
}
.cid-uMNFLknEuY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNFLknEuY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNFLknEuY .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uMNFLknEuY .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMNFLknEuY .container {
    padding: 0 30px;
  }
}
.cid-uMNFLknEuY .card-wrapper {
  padding: 40px 3rem;
  border-radius: 3em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMNFLknEuY .card-wrapper {
    display: block;
    padding: 30px 20px;
  }
}
.cid-uMNFLknEuY .card-wrapper .title-wrapper {
  margin-right: 50px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .cid-uMNFLknEuY .card-wrapper .title-wrapper {
    margin: 0;
  }
}
.cid-uMNFLknEuY .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uMNFLknEuY .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMNFLknEuY .mbr-section-title {
  color: #2b2b2b;
}
.cid-uMNFLknEuY .mbr-text {
  color: #4e4e4e;
}
.cid-st3nMRWVCL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3nMRWVCL .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3nMRWVCL .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3nMRWVCL .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3nMRWVCL .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3nMRWVCL .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3nMRWVCL .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3nMRWVCL .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3nMRWVCL .input-group-btn {
  padding-left: 0;
}
.cid-st3nMRWVCL .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3nMRWVCL .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3nMRWVCL .mbr-text {
  color: #444;
}
.cid-st3nMRWVCL h5 {
  margin-bottom: 0;
}
.cid-st3nMRWVCL .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3nMRWVCL .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3nMRWVCL .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3nMRWVCL .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3nMRWVCL .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3nMRWVCL .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3nMRWVCL .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3nMRWVCL .social-list a:hover {
  opacity: 0.4;
}
.cid-st3nMRWVCL .media-container-row > div {
  padding: 0px;
}
.cid-st3nMRWVCL .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3nMRWVCL .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3nMRWVCL .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3nMRWVCL .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3nMRWVCL .social-list,
  .cid-st3nMRWVCL .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3nMRWVCL h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3nMRWVCL .form-group {
    max-width: 180px;
  }
}
.cid-st3nMRWVCL .links span {
  color: #9e9e9e;
}
.cid-st3nMRWVCL .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3nMRWVCL .logo-title {
  text-align: center;
}
.cid-st3nMRWVCL .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3nMRWVCL .logo-title,
.cid-st3nMRWVCL .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssYVQt7Otf .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssYVQt7Otf .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssYVQt7Otf a {
  font-style: normal;
}
.cid-ssYVQt7Otf .show {
  overflow: visible;
}
.cid-ssYVQt7Otf .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssYVQt7Otf .dropdown-item:active {
  background-color: transparent;
}
.cid-ssYVQt7Otf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssYVQt7Otf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssYVQt7Otf .nav-item:focus,
.cid-ssYVQt7Otf .nav-link:focus {
  outline: none;
}
.cid-ssYVQt7Otf .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssYVQt7Otf .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssYVQt7Otf .menu-logo {
  margin-right: auto;
}
.cid-ssYVQt7Otf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssYVQt7Otf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssYVQt7Otf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssYVQt7Otf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssYVQt7Otf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssYVQt7Otf .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssYVQt7Otf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssYVQt7Otf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssYVQt7Otf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssYVQt7Otf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssYVQt7Otf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssYVQt7Otf .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssYVQt7Otf .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssYVQt7Otf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssYVQt7Otf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssYVQt7Otf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssYVQt7Otf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssYVQt7Otf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssYVQt7Otf .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssYVQt7Otf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssYVQt7Otf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssYVQt7Otf .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssYVQt7Otf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssYVQt7Otf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssYVQt7Otf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssYVQt7Otf button.navbar-toggler:focus {
  outline: none;
}
.cid-ssYVQt7Otf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssYVQt7Otf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssYVQt7Otf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYVQt7Otf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssYVQt7Otf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssYVQt7Otf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssYVQt7Otf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssYVQt7Otf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssYVQt7Otf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssYVQt7Otf .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssYVQt7Otf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYVQt7Otf .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssYVQt7Otf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssYVQt7Otf .collapsed .navbar-collapse.collapsing,
.cid-ssYVQt7Otf .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssYVQt7Otf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssYVQt7Otf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssYVQt7Otf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssYVQt7Otf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssYVQt7Otf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssYVQt7Otf .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssYVQt7Otf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssYVQt7Otf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssYVQt7Otf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssYVQt7Otf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssYVQt7Otf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssYVQt7Otf .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssYVQt7Otf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssYVQt7Otf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssYVQt7Otf .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-ssYVQt7Otf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssYVQt7Otf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssYVQt7Otf .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;
}
@media (max-width: 991px) {
  .cid-ssYVQt7Otf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYVQt7Otf img {
    height: 3.8rem !important;
  }
  .cid-ssYVQt7Otf .btn {
    display: -webkit-flex;
  }
  .cid-ssYVQt7Otf button.navbar-toggler {
    display: block;
  }
  .cid-ssYVQt7Otf .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssYVQt7Otf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssYVQt7Otf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssYVQt7Otf .navbar-collapse.collapsing,
  .cid-ssYVQt7Otf .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssYVQt7Otf .navbar-collapse.collapsing .navbar-nav,
  .cid-ssYVQt7Otf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssYVQt7Otf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssYVQt7Otf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssYVQt7Otf .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssYVQt7Otf .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYVQt7Otf .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssYVQt7Otf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssYVQt7Otf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssYVQt7Otf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssYVQt7Otf .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-ssYVQt7Otf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssYVQt7Otf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssYVQt7Otf .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;
  }
}
@media (max-width: 767px) {
  .cid-ssYVQt7Otf .nav-link {
    justify-content: start !important;
  }
  .cid-ssYVQt7Otf .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssYVQt7Otf .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssYVQt7Otf .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssYVQt7Otf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssYVQt7Otf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssYVQt7Otf .nav-link:hover,
.cid-ssYVQt7Otf .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssYVQt7Otf .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssYVQt7Otf .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ssYVQtPcDT {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssYVQtPcDT h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssYVQtPcDT .container {
    position: relative;
  }
  .cid-ssYVQtPcDT .row {
    margin: 0;
  }
  .cid-ssYVQtPcDT h2 {
    margin: 0;
  }
}
.cid-ssYVQtPcDT .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssYVQtPcDT .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssYVQtPcDT h2 {
  color: #0a1c44;
}
.cid-staC8c7LmH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-tNL8ofn1aR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNL8ofn1aR .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNL8ofn1aR .mbr-section-title {
  color: #45494E;
}
.cid-tNL8ofn1aR .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNL8ofn1aR .mbr-text {
  color: #5c6064;
}
#custom-html-lz {
  /* Type valid CSS here */
}
#custom-html-lz div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-lz hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-tNL9u1EaN9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNL9u1EaN9 .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNL9u1EaN9 .mbr-section-title {
  color: #45494E;
}
.cid-tNL9u1EaN9 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNL9u1EaN9 .mbr-text {
  color: #5c6064;
}
#custom-html-m0 {
  /* Type valid CSS here */
}
#custom-html-m0 div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-m0 hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-tNL9uRtAGC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNL9uRtAGC .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNL9uRtAGC .mbr-section-title {
  color: #45494E;
}
.cid-tNL9uRtAGC .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNL9uRtAGC .mbr-text {
  color: #5c6064;
}
#custom-html-m5 {
  /* Type valid CSS here */
}
#custom-html-m5 div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-m5 hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-uMNqbLTDVS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNqbLTDVS .col-title {
    margin-bottom: 20px;
  }
}
.cid-uMNqbLTDVS .mbr-section-title {
  color: #45494E;
}
.cid-uMNqbLTDVS .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uMNqbLTDVS .mbr-text {
  color: #5c6064;
}
#custom-html-m2 {
  /* Type valid CSS here */
}
#custom-html-m2 div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-m2 hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-tNL9wyzGDH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNL9wyzGDH .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNL9wyzGDH .mbr-section-title {
  color: #45494E;
}
.cid-tNL9wyzGDH .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNL9wyzGDH .mbr-text {
  color: #5c6064;
}
#custom-html-pz {
  /* Type valid CSS here */
}
#custom-html-pz div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-pz hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-tNL9vDw47B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNL9vDw47B .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNL9vDw47B .mbr-section-title {
  color: #45494E;
}
.cid-tNL9vDw47B .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNL9vDw47B .mbr-text {
  color: #656565;
}
#custom-html-ly {
  /* Type valid CSS here */
}
#custom-html-ly div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-ly hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-tNLaB73T4c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNLaB73T4c .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNLaB73T4c .mbr-section-title {
  color: #45494E;
}
.cid-tNLaB73T4c .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNLaB73T4c .mbr-text {
  color: #5c6064;
}
#custom-html-m3 {
  /* Type valid CSS here */
}
#custom-html-m3 div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-m3 hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-tNLaLcMbsF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNLaLcMbsF .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNLaLcMbsF .mbr-section-title {
  color: #45494E;
}
.cid-tNLaLcMbsF .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNLaLcMbsF .mbr-text {
  color: #5c6064;
}
#custom-html-q0 {
  /* Type valid CSS here */
}
#custom-html-q0 div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-q0 hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-uMNK5eCher {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNK5eCher .col-title {
    margin-bottom: 20px;
  }
}
.cid-uMNK5eCher .mbr-section-title {
  color: #45494E;
}
.cid-uMNK5eCher .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uMNK5eCher .mbr-text {
  color: #5c6064;
}
#custom-html-m1 {
  /* Type valid CSS here */
}
#custom-html-m1 div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-m1 hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-tNLaAs4p2A {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNLaAs4p2A .col-title {
    margin-bottom: 20px;
  }
}
.cid-tNLaAs4p2A .mbr-section-title {
  color: #45494E;
}
.cid-tNLaAs4p2A .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tNLaAs4p2A .mbr-text {
  color: #5c6064;
}
.cid-uMNrT7Y2p0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uMNrT7Y2p0 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uMNrT7Y2p0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNrT7Y2p0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNrT7Y2p0 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uMNrT7Y2p0 .content-wrap .card {
  justify-content: space-between;
}
.cid-uMNrT7Y2p0 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uMNrT7Y2p0 .content-wrapper {
    padding: 0;
  }
}
.cid-uMNrT7Y2p0 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uMNrT7Y2p0 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uMNrT7Y2p0 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uMNrT7Y2p0 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uMNrT7Y2p0 .mbr-desc,
.cid-uMNrT7Y2p0 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uMNrT7Y2p0 .mbr-section-title,
.cid-uMNrT7Y2p0 .mbr-section-btn {
  color: #ff4a52;
}
.cid-uMNqYYhZcA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNqYYhZcA .col-title {
    margin-bottom: 20px;
  }
}
.cid-uMNqYYhZcA .mbr-section-title {
  color: #45494E;
}
.cid-uMNqYYhZcA .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uMNqYYhZcA .mbr-text {
  color: #5c6064;
}
#custom-html-m4 {
  /* Type valid CSS here */
}
#custom-html-m4 div {
  padding: 1px 0;
  text-align: center;
  background: white;
}
#custom-html-m4 hr {
  width: 100%;
  height: 3px;
  color: #40b0bf;
}
.cid-uMNqZuqCGF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNqZuqCGF .col-title {
    margin-bottom: 20px;
  }
}
.cid-uMNqZuqCGF .mbr-section-title {
  color: #45494E;
}
.cid-uMNqZuqCGF .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uMNqZuqCGF .mbr-text {
  color: #5c6064;
}
.cid-st3nPJ3ive {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3nPJ3ive .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3nPJ3ive .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3nPJ3ive .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3nPJ3ive .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3nPJ3ive .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3nPJ3ive .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3nPJ3ive .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3nPJ3ive .input-group-btn {
  padding-left: 0;
}
.cid-st3nPJ3ive .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3nPJ3ive .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3nPJ3ive .mbr-text {
  color: #444;
}
.cid-st3nPJ3ive h5 {
  margin-bottom: 0;
}
.cid-st3nPJ3ive .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3nPJ3ive .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3nPJ3ive .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3nPJ3ive .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3nPJ3ive .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3nPJ3ive .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3nPJ3ive .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3nPJ3ive .social-list a:hover {
  opacity: 0.4;
}
.cid-st3nPJ3ive .media-container-row > div {
  padding: 0px;
}
.cid-st3nPJ3ive .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3nPJ3ive .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3nPJ3ive .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3nPJ3ive .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3nPJ3ive .social-list,
  .cid-st3nPJ3ive .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3nPJ3ive h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3nPJ3ive .form-group {
    max-width: 180px;
  }
}
.cid-st3nPJ3ive .links span {
  color: #9e9e9e;
}
.cid-st3nPJ3ive .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3nPJ3ive .logo-title {
  text-align: center;
}
.cid-st3nPJ3ive .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3nPJ3ive .logo-title,
.cid-st3nPJ3ive .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3mGFc2ea .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3mGFc2ea .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3mGFc2ea a {
  font-style: normal;
}
.cid-st3mGFc2ea .show {
  overflow: visible;
}
.cid-st3mGFc2ea .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3mGFc2ea .dropdown-item:active {
  background-color: transparent;
}
.cid-st3mGFc2ea .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3mGFc2ea .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3mGFc2ea .nav-item:focus,
.cid-st3mGFc2ea .nav-link:focus {
  outline: none;
}
.cid-st3mGFc2ea .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3mGFc2ea .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3mGFc2ea .menu-logo {
  margin-right: auto;
}
.cid-st3mGFc2ea .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3mGFc2ea .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3mGFc2ea .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3mGFc2ea .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3mGFc2ea .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3mGFc2ea .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3mGFc2ea .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3mGFc2ea .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3mGFc2ea .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3mGFc2ea .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3mGFc2ea .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3mGFc2ea .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3mGFc2ea .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3mGFc2ea .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3mGFc2ea .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3mGFc2ea .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3mGFc2ea .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3mGFc2ea .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3mGFc2ea .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3mGFc2ea .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3mGFc2ea .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3mGFc2ea .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3mGFc2ea .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3mGFc2ea .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3mGFc2ea button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3mGFc2ea button.navbar-toggler:focus {
  outline: none;
}
.cid-st3mGFc2ea button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3mGFc2ea button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3mGFc2ea button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3mGFc2ea button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3mGFc2ea button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3mGFc2ea nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3mGFc2ea nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3mGFc2ea nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3mGFc2ea nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3mGFc2ea .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3mGFc2ea .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3mGFc2ea .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3mGFc2ea .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3mGFc2ea .collapsed .navbar-collapse.collapsing,
.cid-st3mGFc2ea .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3mGFc2ea .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3mGFc2ea .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3mGFc2ea .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3mGFc2ea .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3mGFc2ea .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3mGFc2ea .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3mGFc2ea .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3mGFc2ea .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3mGFc2ea .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3mGFc2ea .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3mGFc2ea .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3mGFc2ea .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3mGFc2ea .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3mGFc2ea .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3mGFc2ea .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-st3mGFc2ea .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3mGFc2ea .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3mGFc2ea .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;
}
@media (max-width: 991px) {
  .cid-st3mGFc2ea.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3mGFc2ea img {
    height: 3.8rem !important;
  }
  .cid-st3mGFc2ea .btn {
    display: -webkit-flex;
  }
  .cid-st3mGFc2ea button.navbar-toggler {
    display: block;
  }
  .cid-st3mGFc2ea .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3mGFc2ea .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3mGFc2ea .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3mGFc2ea .navbar-collapse.collapsing,
  .cid-st3mGFc2ea .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3mGFc2ea .navbar-collapse.collapsing .navbar-nav,
  .cid-st3mGFc2ea .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3mGFc2ea .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3mGFc2ea .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3mGFc2ea .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3mGFc2ea .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3mGFc2ea .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3mGFc2ea .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3mGFc2ea .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3mGFc2ea .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3mGFc2ea .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-st3mGFc2ea .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3mGFc2ea .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3mGFc2ea .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;
  }
}
@media (max-width: 767px) {
  .cid-st3mGFc2ea .nav-link {
    justify-content: start !important;
  }
  .cid-st3mGFc2ea .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3mGFc2ea .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3mGFc2ea .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3mGFc2ea .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3mGFc2ea .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3mGFc2ea .nav-link:hover,
.cid-st3mGFc2ea .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3mGFc2ea .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3mGFc2ea .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3mGFNWIp {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3mGFNWIp h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3mGFNWIp .container {
    position: relative;
  }
  .cid-st3mGFNWIp .row {
    margin: 0;
  }
  .cid-st3mGFNWIp h2 {
    margin: 0;
  }
}
.cid-st3mGFNWIp .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3mGFNWIp .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3mGFNWIp h2 {
  color: #0a1c44;
}
.cid-st5r2IFhWR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e9e9e9;
}
.cid-st5r2IFhWR H1 {
  color: #0a1c44;
}
.cid-st5r2IFhWR .mbr-text,
.cid-st5r2IFhWR .mbr-section-btn {
  color: #0a1c44;
}
.cid-st5r2IFhWR H3 {
  color: #716c80;
}
.cid-sYF1XmjoUD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sYF1XmjoUD .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYF1XmjoUD .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-sYF1XmjoUD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sYF1XmjoUD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sYF1XmjoUD .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-sYF1XmjoUD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sYF1XmjoUD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sYF1XmjoUD .mbr-card-text {
  margin: 0;
}
.cid-sYF1XmjoUD .mbr-card-text,
.cid-sYF1XmjoUD .mbr-section-btn {
  color: #0a1c44;
}
.cid-st3qoPzP3z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st3qoPzP3z .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3qoPzP3z .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-st3qoPzP3z .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-st3qoPzP3z .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-st3qoPzP3z .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-st3qoPzP3z .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-st3qoPzP3z .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-st3qoPzP3z .mbr-card-text {
  margin: 0;
}
.cid-st3qoPzP3z .mbr-card-text,
.cid-st3qoPzP3z .mbr-section-btn {
  color: #0a1c44;
}
.cid-st3pDyzOXs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st3pDyzOXs .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3pDyzOXs .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-st3pDyzOXs .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-st3pDyzOXs .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-st3pDyzOXs .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-st3pDyzOXs .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-st3pDyzOXs .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-st3pDyzOXs .mbr-card-text {
  margin: 0;
}
.cid-st3pDyzOXs .mbr-card-text,
.cid-st3pDyzOXs .mbr-section-btn {
  color: #0a1c44;
}
.cid-st3opGkPYn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st3opGkPYn .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3opGkPYn .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-st3opGkPYn .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-st3opGkPYn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-st3opGkPYn .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-st3opGkPYn .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-st3opGkPYn .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-st3opGkPYn .mbr-card-text {
  margin: 0;
}
.cid-st3opGkPYn .mbr-card-text,
.cid-st3opGkPYn .mbr-section-btn {
  color: #0a1c44;
}
.cid-st3nEueZVL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3nEueZVL .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3nEueZVL .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3nEueZVL .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3nEueZVL .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3nEueZVL .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3nEueZVL .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3nEueZVL .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3nEueZVL .input-group-btn {
  padding-left: 0;
}
.cid-st3nEueZVL .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3nEueZVL .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3nEueZVL .mbr-text {
  color: #444;
}
.cid-st3nEueZVL h5 {
  margin-bottom: 0;
}
.cid-st3nEueZVL .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3nEueZVL .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3nEueZVL .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3nEueZVL .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3nEueZVL .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3nEueZVL .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3nEueZVL .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3nEueZVL .social-list a:hover {
  opacity: 0.4;
}
.cid-st3nEueZVL .media-container-row > div {
  padding: 0px;
}
.cid-st3nEueZVL .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3nEueZVL .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3nEueZVL .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3nEueZVL .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3nEueZVL .social-list,
  .cid-st3nEueZVL .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3nEueZVL h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3nEueZVL .form-group {
    max-width: 180px;
  }
}
.cid-st3nEueZVL .links span {
  color: #9e9e9e;
}
.cid-st3nEueZVL .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3nEueZVL .logo-title {
  text-align: center;
}
.cid-st3nEueZVL .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3nEueZVL .logo-title,
.cid-st3nEueZVL .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3scwjgjR .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3scwjgjR .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3scwjgjR a {
  font-style: normal;
}
.cid-st3scwjgjR .show {
  overflow: visible;
}
.cid-st3scwjgjR .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3scwjgjR .dropdown-item:active {
  background-color: transparent;
}
.cid-st3scwjgjR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3scwjgjR .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3scwjgjR .nav-item:focus,
.cid-st3scwjgjR .nav-link:focus {
  outline: none;
}
.cid-st3scwjgjR .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3scwjgjR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3scwjgjR .menu-logo {
  margin-right: auto;
}
.cid-st3scwjgjR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3scwjgjR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3scwjgjR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3scwjgjR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3scwjgjR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3scwjgjR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3scwjgjR .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3scwjgjR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3scwjgjR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3scwjgjR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3scwjgjR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3scwjgjR .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3scwjgjR .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3scwjgjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3scwjgjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3scwjgjR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3scwjgjR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3scwjgjR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3scwjgjR .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3scwjgjR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3scwjgjR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3scwjgjR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3scwjgjR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3scwjgjR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3scwjgjR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3scwjgjR button.navbar-toggler:focus {
  outline: none;
}
.cid-st3scwjgjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3scwjgjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3scwjgjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3scwjgjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3scwjgjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3scwjgjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3scwjgjR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3scwjgjR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3scwjgjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3scwjgjR .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3scwjgjR .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3scwjgjR .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3scwjgjR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3scwjgjR .collapsed .navbar-collapse.collapsing,
.cid-st3scwjgjR .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3scwjgjR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3scwjgjR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3scwjgjR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3scwjgjR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3scwjgjR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3scwjgjR .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3scwjgjR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3scwjgjR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3scwjgjR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3scwjgjR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3scwjgjR .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3scwjgjR .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3scwjgjR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3scwjgjR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3scwjgjR .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-st3scwjgjR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3scwjgjR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3scwjgjR .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;
}
@media (max-width: 991px) {
  .cid-st3scwjgjR.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3scwjgjR img {
    height: 3.8rem !important;
  }
  .cid-st3scwjgjR .btn {
    display: -webkit-flex;
  }
  .cid-st3scwjgjR button.navbar-toggler {
    display: block;
  }
  .cid-st3scwjgjR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3scwjgjR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3scwjgjR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3scwjgjR .navbar-collapse.collapsing,
  .cid-st3scwjgjR .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3scwjgjR .navbar-collapse.collapsing .navbar-nav,
  .cid-st3scwjgjR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3scwjgjR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3scwjgjR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3scwjgjR .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3scwjgjR .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3scwjgjR .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3scwjgjR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3scwjgjR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3scwjgjR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3scwjgjR .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-st3scwjgjR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3scwjgjR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3scwjgjR .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;
  }
}
@media (max-width: 767px) {
  .cid-st3scwjgjR .nav-link {
    justify-content: start !important;
  }
  .cid-st3scwjgjR .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3scwjgjR .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3scwjgjR .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3scwjgjR .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3scwjgjR .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3scwjgjR .nav-link:hover,
.cid-st3scwjgjR .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3scwjgjR .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3scwjgjR .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3scwXu0i {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3scwXu0i h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3scwXu0i .container {
    position: relative;
  }
  .cid-st3scwXu0i .row {
    margin: 0;
  }
  .cid-st3scwXu0i h2 {
    margin: 0;
  }
}
.cid-st3scwXu0i .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3scwXu0i .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3scwXu0i h2 {
  color: #0a1c44;
}
.cid-st3sPSQ7DS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st3sPSQ7DS .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st3sPSQ7DS .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st3sPSQ7DS .btn {
  margin: 0px !important;
}
.cid-st3sPSQ7DS .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3sPSQ7DS .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3sPSQ7DS .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st3sPSQ7DS .carousel-item .wrap-img {
  text-align: center;
}
.cid-st3sPSQ7DS .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st3sPSQ7DS .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st3sPSQ7DS .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st3sPSQ7DS .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st3sPSQ7DS .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st3sPSQ7DS .second-col {
    padding-top: 2rem;
  }
}
.cid-st3wLECO2l {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st3wLECO2l H1 {
  color: #f5f7fa;
}
.cid-st3wLECO2l .mbr-text,
.cid-st3wLECO2l .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st3wLECO2l H3 {
  color: #716c80;
}
.cid-st3yvwtxNj {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st3yvwtxNj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st3yvwtxNj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st3yvwtxNj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st3yvwtxNj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st3yvwtxNj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3yvwtxNj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st3yvwtxNj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st3yvwtxNj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st3yvwtxNj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3yvwtxNj ul {
  font-size: 0;
}
.cid-st3yvwtxNj .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st3yvwtxNj .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st3yvwtxNj .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st3scxGB4p {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3scxGB4p .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3scxGB4p .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3scxGB4p .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3scxGB4p .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3scxGB4p .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3scxGB4p .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3scxGB4p .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3scxGB4p .input-group-btn {
  padding-left: 0;
}
.cid-st3scxGB4p .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3scxGB4p .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3scxGB4p .mbr-text {
  color: #444;
}
.cid-st3scxGB4p h5 {
  margin-bottom: 0;
}
.cid-st3scxGB4p .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3scxGB4p .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3scxGB4p .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3scxGB4p .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3scxGB4p .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3scxGB4p .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3scxGB4p .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3scxGB4p .social-list a:hover {
  opacity: 0.4;
}
.cid-st3scxGB4p .media-container-row > div {
  padding: 0px;
}
.cid-st3scxGB4p .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3scxGB4p .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3scxGB4p .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3scxGB4p .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3scxGB4p .social-list,
  .cid-st3scxGB4p .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3scxGB4p h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3scxGB4p .form-group {
    max-width: 180px;
  }
}
.cid-st3scxGB4p .links span {
  color: #9e9e9e;
}
.cid-st3scxGB4p .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3scxGB4p .logo-title {
  text-align: center;
}
.cid-st3scxGB4p .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3scxGB4p .logo-title,
.cid-st3scxGB4p .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3KRpqYjK .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3KRpqYjK .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3KRpqYjK a {
  font-style: normal;
}
.cid-st3KRpqYjK .show {
  overflow: visible;
}
.cid-st3KRpqYjK .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3KRpqYjK .dropdown-item:active {
  background-color: transparent;
}
.cid-st3KRpqYjK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3KRpqYjK .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3KRpqYjK .nav-item:focus,
.cid-st3KRpqYjK .nav-link:focus {
  outline: none;
}
.cid-st3KRpqYjK .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3KRpqYjK .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3KRpqYjK .menu-logo {
  margin-right: auto;
}
.cid-st3KRpqYjK .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3KRpqYjK .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3KRpqYjK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3KRpqYjK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3KRpqYjK .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3KRpqYjK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3KRpqYjK .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3KRpqYjK .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3KRpqYjK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3KRpqYjK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3KRpqYjK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3KRpqYjK .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3KRpqYjK .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3KRpqYjK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3KRpqYjK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3KRpqYjK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3KRpqYjK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3KRpqYjK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3KRpqYjK .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3KRpqYjK .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3KRpqYjK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3KRpqYjK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3KRpqYjK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3KRpqYjK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3KRpqYjK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3KRpqYjK button.navbar-toggler:focus {
  outline: none;
}
.cid-st3KRpqYjK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3KRpqYjK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3KRpqYjK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3KRpqYjK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3KRpqYjK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3KRpqYjK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3KRpqYjK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3KRpqYjK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3KRpqYjK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3KRpqYjK .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3KRpqYjK .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3KRpqYjK .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3KRpqYjK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3KRpqYjK .collapsed .navbar-collapse.collapsing,
.cid-st3KRpqYjK .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3KRpqYjK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3KRpqYjK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3KRpqYjK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3KRpqYjK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3KRpqYjK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3KRpqYjK .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3KRpqYjK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3KRpqYjK .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3KRpqYjK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3KRpqYjK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3KRpqYjK .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3KRpqYjK .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3KRpqYjK .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3KRpqYjK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3KRpqYjK .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-st3KRpqYjK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3KRpqYjK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3KRpqYjK .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;
}
@media (max-width: 991px) {
  .cid-st3KRpqYjK.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3KRpqYjK img {
    height: 3.8rem !important;
  }
  .cid-st3KRpqYjK .btn {
    display: -webkit-flex;
  }
  .cid-st3KRpqYjK button.navbar-toggler {
    display: block;
  }
  .cid-st3KRpqYjK .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3KRpqYjK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3KRpqYjK .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3KRpqYjK .navbar-collapse.collapsing,
  .cid-st3KRpqYjK .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3KRpqYjK .navbar-collapse.collapsing .navbar-nav,
  .cid-st3KRpqYjK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3KRpqYjK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3KRpqYjK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3KRpqYjK .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3KRpqYjK .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3KRpqYjK .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3KRpqYjK .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3KRpqYjK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3KRpqYjK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3KRpqYjK .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-st3KRpqYjK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3KRpqYjK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3KRpqYjK .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;
  }
}
@media (max-width: 767px) {
  .cid-st3KRpqYjK .nav-link {
    justify-content: start !important;
  }
  .cid-st3KRpqYjK .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3KRpqYjK .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3KRpqYjK .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3KRpqYjK .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3KRpqYjK .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3KRpqYjK .nav-link:hover,
.cid-st3KRpqYjK .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3KRpqYjK .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3KRpqYjK .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3KRq4ahq {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3KRq4ahq h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3KRq4ahq .container {
    position: relative;
  }
  .cid-st3KRq4ahq .row {
    margin: 0;
  }
  .cid-st3KRq4ahq h2 {
    margin: 0;
  }
}
.cid-st3KRq4ahq .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3KRq4ahq .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3KRq4ahq h2 {
  color: #0a1c44;
}
.cid-st3KRqtNKS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st3KRqtNKS .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st3KRqtNKS .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st3KRqtNKS .btn {
  margin: 0px !important;
}
.cid-st3KRqtNKS .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3KRqtNKS .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3KRqtNKS .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st3KRqtNKS .carousel-item .wrap-img {
  text-align: center;
}
.cid-st3KRqtNKS .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st3KRqtNKS .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st3KRqtNKS .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st3KRqtNKS .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st3KRqtNKS .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st3KRqtNKS .second-col {
    padding-top: 2rem;
  }
}
.cid-st3KRrcZy6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st3KRrcZy6 H1 {
  color: #f5f7fa;
}
.cid-st3KRrcZy6 .mbr-text,
.cid-st3KRrcZy6 .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st3KRrcZy6 H3 {
  color: #716c80;
}
.cid-st3LENQbNU {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st3LENQbNU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st3LENQbNU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st3LENQbNU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st3LENQbNU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st3LENQbNU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3LENQbNU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st3LENQbNU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st3LENQbNU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st3LENQbNU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3LENQbNU ul {
  font-size: 0;
}
.cid-st3LENQbNU .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st3LENQbNU .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st3LENQbNU .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st3KRxpwR8 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3KRxpwR8 .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3KRxpwR8 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3KRxpwR8 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3KRxpwR8 .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3KRxpwR8 .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3KRxpwR8 .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3KRxpwR8 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3KRxpwR8 .input-group-btn {
  padding-left: 0;
}
.cid-st3KRxpwR8 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3KRxpwR8 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3KRxpwR8 .mbr-text {
  color: #444;
}
.cid-st3KRxpwR8 h5 {
  margin-bottom: 0;
}
.cid-st3KRxpwR8 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3KRxpwR8 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3KRxpwR8 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3KRxpwR8 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3KRxpwR8 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3KRxpwR8 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3KRxpwR8 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3KRxpwR8 .social-list a:hover {
  opacity: 0.4;
}
.cid-st3KRxpwR8 .media-container-row > div {
  padding: 0px;
}
.cid-st3KRxpwR8 .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3KRxpwR8 .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3KRxpwR8 .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3KRxpwR8 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3KRxpwR8 .social-list,
  .cid-st3KRxpwR8 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3KRxpwR8 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3KRxpwR8 .form-group {
    max-width: 180px;
  }
}
.cid-st3KRxpwR8 .links span {
  color: #9e9e9e;
}
.cid-st3KRxpwR8 .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3KRxpwR8 .logo-title {
  text-align: center;
}
.cid-st3KRxpwR8 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3KRxpwR8 .logo-title,
.cid-st3KRxpwR8 .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3RIq8De2 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3RIq8De2 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3RIq8De2 a {
  font-style: normal;
}
.cid-st3RIq8De2 .show {
  overflow: visible;
}
.cid-st3RIq8De2 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3RIq8De2 .dropdown-item:active {
  background-color: transparent;
}
.cid-st3RIq8De2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3RIq8De2 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3RIq8De2 .nav-item:focus,
.cid-st3RIq8De2 .nav-link:focus {
  outline: none;
}
.cid-st3RIq8De2 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3RIq8De2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3RIq8De2 .menu-logo {
  margin-right: auto;
}
.cid-st3RIq8De2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3RIq8De2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3RIq8De2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3RIq8De2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3RIq8De2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3RIq8De2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3RIq8De2 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3RIq8De2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3RIq8De2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3RIq8De2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3RIq8De2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3RIq8De2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3RIq8De2 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3RIq8De2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3RIq8De2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3RIq8De2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3RIq8De2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3RIq8De2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3RIq8De2 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3RIq8De2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3RIq8De2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3RIq8De2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3RIq8De2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3RIq8De2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3RIq8De2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3RIq8De2 button.navbar-toggler:focus {
  outline: none;
}
.cid-st3RIq8De2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3RIq8De2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3RIq8De2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3RIq8De2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3RIq8De2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3RIq8De2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3RIq8De2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3RIq8De2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3RIq8De2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3RIq8De2 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3RIq8De2 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3RIq8De2 .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3RIq8De2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3RIq8De2 .collapsed .navbar-collapse.collapsing,
.cid-st3RIq8De2 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3RIq8De2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3RIq8De2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3RIq8De2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3RIq8De2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3RIq8De2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3RIq8De2 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3RIq8De2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3RIq8De2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3RIq8De2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3RIq8De2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3RIq8De2 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3RIq8De2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3RIq8De2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3RIq8De2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3RIq8De2 .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-st3RIq8De2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3RIq8De2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3RIq8De2 .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;
}
@media (max-width: 991px) {
  .cid-st3RIq8De2.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3RIq8De2 img {
    height: 3.8rem !important;
  }
  .cid-st3RIq8De2 .btn {
    display: -webkit-flex;
  }
  .cid-st3RIq8De2 button.navbar-toggler {
    display: block;
  }
  .cid-st3RIq8De2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3RIq8De2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3RIq8De2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3RIq8De2 .navbar-collapse.collapsing,
  .cid-st3RIq8De2 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3RIq8De2 .navbar-collapse.collapsing .navbar-nav,
  .cid-st3RIq8De2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3RIq8De2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3RIq8De2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3RIq8De2 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3RIq8De2 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3RIq8De2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3RIq8De2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3RIq8De2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3RIq8De2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3RIq8De2 .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-st3RIq8De2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3RIq8De2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3RIq8De2 .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;
  }
}
@media (max-width: 767px) {
  .cid-st3RIq8De2 .nav-link {
    justify-content: start !important;
  }
  .cid-st3RIq8De2 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3RIq8De2 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3RIq8De2 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3RIq8De2 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3RIq8De2 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3RIq8De2 .nav-link:hover,
.cid-st3RIq8De2 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3RIq8De2 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3RIq8De2 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3RIqUL68 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3RIqUL68 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3RIqUL68 .container {
    position: relative;
  }
  .cid-st3RIqUL68 .row {
    margin: 0;
  }
  .cid-st3RIqUL68 h2 {
    margin: 0;
  }
}
.cid-st3RIqUL68 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3RIqUL68 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3RIqUL68 h2 {
  color: #0a1c44;
}
.cid-st3RIri1jY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st3RIri1jY .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st3RIri1jY .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st3RIri1jY .btn {
  margin: 0px !important;
}
.cid-st3RIri1jY .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3RIri1jY .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3RIri1jY .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st3RIri1jY .carousel-item .wrap-img {
  text-align: center;
}
.cid-st3RIri1jY .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st3RIri1jY .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st3RIri1jY .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st3RIri1jY .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st3RIri1jY .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st3RIri1jY .second-col {
    padding-top: 2rem;
  }
}
.cid-st3RIs9SOt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st3RIs9SOt H1 {
  color: #f5f7fa;
}
.cid-st3RIs9SOt .mbr-text,
.cid-st3RIs9SOt .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st3RIs9SOt H3 {
  color: #716c80;
}
.cid-st3Sv6Bdqs {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st3Sv6Bdqs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st3Sv6Bdqs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st3Sv6Bdqs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st3Sv6Bdqs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st3Sv6Bdqs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3Sv6Bdqs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st3Sv6Bdqs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st3Sv6Bdqs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st3Sv6Bdqs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3Sv6Bdqs ul {
  font-size: 0;
}
.cid-st3Sv6Bdqs .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st3Sv6Bdqs .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st3Sv6Bdqs .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st3RIxjAl8 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3RIxjAl8 .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3RIxjAl8 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3RIxjAl8 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3RIxjAl8 .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3RIxjAl8 .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3RIxjAl8 .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3RIxjAl8 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3RIxjAl8 .input-group-btn {
  padding-left: 0;
}
.cid-st3RIxjAl8 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3RIxjAl8 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3RIxjAl8 .mbr-text {
  color: #444;
}
.cid-st3RIxjAl8 h5 {
  margin-bottom: 0;
}
.cid-st3RIxjAl8 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3RIxjAl8 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3RIxjAl8 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3RIxjAl8 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3RIxjAl8 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3RIxjAl8 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3RIxjAl8 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3RIxjAl8 .social-list a:hover {
  opacity: 0.4;
}
.cid-st3RIxjAl8 .media-container-row > div {
  padding: 0px;
}
.cid-st3RIxjAl8 .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3RIxjAl8 .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3RIxjAl8 .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3RIxjAl8 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3RIxjAl8 .social-list,
  .cid-st3RIxjAl8 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3RIxjAl8 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3RIxjAl8 .form-group {
    max-width: 180px;
  }
}
.cid-st3RIxjAl8 .links span {
  color: #9e9e9e;
}
.cid-st3RIxjAl8 .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3RIxjAl8 .logo-title {
  text-align: center;
}
.cid-st3RIxjAl8 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3RIxjAl8 .logo-title,
.cid-st3RIxjAl8 .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3SWKKP8f .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3SWKKP8f .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3SWKKP8f a {
  font-style: normal;
}
.cid-st3SWKKP8f .show {
  overflow: visible;
}
.cid-st3SWKKP8f .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3SWKKP8f .dropdown-item:active {
  background-color: transparent;
}
.cid-st3SWKKP8f .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3SWKKP8f .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3SWKKP8f .nav-item:focus,
.cid-st3SWKKP8f .nav-link:focus {
  outline: none;
}
.cid-st3SWKKP8f .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3SWKKP8f .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3SWKKP8f .menu-logo {
  margin-right: auto;
}
.cid-st3SWKKP8f .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3SWKKP8f .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3SWKKP8f .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3SWKKP8f .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3SWKKP8f .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3SWKKP8f .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3SWKKP8f .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3SWKKP8f .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3SWKKP8f .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3SWKKP8f .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3SWKKP8f .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3SWKKP8f .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3SWKKP8f .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3SWKKP8f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3SWKKP8f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3SWKKP8f .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3SWKKP8f .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3SWKKP8f .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3SWKKP8f .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3SWKKP8f .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3SWKKP8f .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3SWKKP8f .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3SWKKP8f .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3SWKKP8f .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3SWKKP8f button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3SWKKP8f button.navbar-toggler:focus {
  outline: none;
}
.cid-st3SWKKP8f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3SWKKP8f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3SWKKP8f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3SWKKP8f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3SWKKP8f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3SWKKP8f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3SWKKP8f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3SWKKP8f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3SWKKP8f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3SWKKP8f .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3SWKKP8f .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3SWKKP8f .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3SWKKP8f .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3SWKKP8f .collapsed .navbar-collapse.collapsing,
.cid-st3SWKKP8f .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3SWKKP8f .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3SWKKP8f .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3SWKKP8f .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3SWKKP8f .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3SWKKP8f .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3SWKKP8f .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3SWKKP8f .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3SWKKP8f .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3SWKKP8f .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3SWKKP8f .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3SWKKP8f .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3SWKKP8f .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3SWKKP8f .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3SWKKP8f .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3SWKKP8f .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-st3SWKKP8f .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3SWKKP8f .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3SWKKP8f .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;
}
@media (max-width: 991px) {
  .cid-st3SWKKP8f.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3SWKKP8f img {
    height: 3.8rem !important;
  }
  .cid-st3SWKKP8f .btn {
    display: -webkit-flex;
  }
  .cid-st3SWKKP8f button.navbar-toggler {
    display: block;
  }
  .cid-st3SWKKP8f .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3SWKKP8f .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3SWKKP8f .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3SWKKP8f .navbar-collapse.collapsing,
  .cid-st3SWKKP8f .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3SWKKP8f .navbar-collapse.collapsing .navbar-nav,
  .cid-st3SWKKP8f .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3SWKKP8f .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3SWKKP8f .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3SWKKP8f .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3SWKKP8f .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3SWKKP8f .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3SWKKP8f .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3SWKKP8f .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3SWKKP8f .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3SWKKP8f .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-st3SWKKP8f .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3SWKKP8f .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3SWKKP8f .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;
  }
}
@media (max-width: 767px) {
  .cid-st3SWKKP8f .nav-link {
    justify-content: start !important;
  }
  .cid-st3SWKKP8f .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3SWKKP8f .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3SWKKP8f .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3SWKKP8f .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3SWKKP8f .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3SWKKP8f .nav-link:hover,
.cid-st3SWKKP8f .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3SWKKP8f .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3SWKKP8f .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3SWLs43n {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3SWLs43n h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3SWLs43n .container {
    position: relative;
  }
  .cid-st3SWLs43n .row {
    margin: 0;
  }
  .cid-st3SWLs43n h2 {
    margin: 0;
  }
}
.cid-st3SWLs43n .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3SWLs43n .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3SWLs43n h2 {
  color: #0a1c44;
}
.cid-st3SWLZQfq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st3SWLZQfq .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st3SWLZQfq .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st3SWLZQfq .btn {
  margin: 0px !important;
}
.cid-st3SWLZQfq .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3SWLZQfq .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3SWLZQfq .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st3SWLZQfq .carousel-item .wrap-img {
  text-align: center;
}
.cid-st3SWLZQfq .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st3SWLZQfq .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st3SWLZQfq .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st3SWLZQfq .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st3SWLZQfq .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st3SWLZQfq .second-col {
    padding-top: 2rem;
  }
}
.cid-st3SWMOab8 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st3SWMOab8 H1 {
  color: #f5f7fa;
}
.cid-st3SWMOab8 .mbr-text,
.cid-st3SWMOab8 .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st3SWMOab8 H3 {
  color: #716c80;
}
.cid-st3TPecNS9 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st3TPecNS9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st3TPecNS9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st3TPecNS9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st3TPecNS9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st3TPecNS9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3TPecNS9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st3TPecNS9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st3TPecNS9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st3TPecNS9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3TPecNS9 ul {
  font-size: 0;
}
.cid-st3TPecNS9 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st3TPecNS9 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st3TPecNS9 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st3SWOJsO5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3SWOJsO5 .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3SWOJsO5 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3SWOJsO5 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3SWOJsO5 .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3SWOJsO5 .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3SWOJsO5 .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3SWOJsO5 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3SWOJsO5 .input-group-btn {
  padding-left: 0;
}
.cid-st3SWOJsO5 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3SWOJsO5 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3SWOJsO5 .mbr-text {
  color: #444;
}
.cid-st3SWOJsO5 h5 {
  margin-bottom: 0;
}
.cid-st3SWOJsO5 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3SWOJsO5 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3SWOJsO5 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3SWOJsO5 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3SWOJsO5 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3SWOJsO5 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3SWOJsO5 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3SWOJsO5 .social-list a:hover {
  opacity: 0.4;
}
.cid-st3SWOJsO5 .media-container-row > div {
  padding: 0px;
}
.cid-st3SWOJsO5 .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3SWOJsO5 .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3SWOJsO5 .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3SWOJsO5 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3SWOJsO5 .social-list,
  .cid-st3SWOJsO5 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3SWOJsO5 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3SWOJsO5 .form-group {
    max-width: 180px;
  }
}
.cid-st3SWOJsO5 .links span {
  color: #9e9e9e;
}
.cid-st3SWOJsO5 .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3SWOJsO5 .logo-title {
  text-align: center;
}
.cid-st3SWOJsO5 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3SWOJsO5 .logo-title,
.cid-st3SWOJsO5 .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3UTSiK27 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3UTSiK27 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3UTSiK27 a {
  font-style: normal;
}
.cid-st3UTSiK27 .show {
  overflow: visible;
}
.cid-st3UTSiK27 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3UTSiK27 .dropdown-item:active {
  background-color: transparent;
}
.cid-st3UTSiK27 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3UTSiK27 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3UTSiK27 .nav-item:focus,
.cid-st3UTSiK27 .nav-link:focus {
  outline: none;
}
.cid-st3UTSiK27 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3UTSiK27 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3UTSiK27 .menu-logo {
  margin-right: auto;
}
.cid-st3UTSiK27 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3UTSiK27 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3UTSiK27 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3UTSiK27 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3UTSiK27 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3UTSiK27 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3UTSiK27 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3UTSiK27 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3UTSiK27 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3UTSiK27 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3UTSiK27 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3UTSiK27 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3UTSiK27 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3UTSiK27 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3UTSiK27 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3UTSiK27 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3UTSiK27 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3UTSiK27 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3UTSiK27 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3UTSiK27 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3UTSiK27 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3UTSiK27 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3UTSiK27 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3UTSiK27 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3UTSiK27 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3UTSiK27 button.navbar-toggler:focus {
  outline: none;
}
.cid-st3UTSiK27 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3UTSiK27 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3UTSiK27 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3UTSiK27 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3UTSiK27 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3UTSiK27 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3UTSiK27 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3UTSiK27 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3UTSiK27 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3UTSiK27 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3UTSiK27 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3UTSiK27 .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3UTSiK27 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3UTSiK27 .collapsed .navbar-collapse.collapsing,
.cid-st3UTSiK27 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3UTSiK27 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3UTSiK27 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3UTSiK27 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3UTSiK27 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3UTSiK27 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3UTSiK27 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3UTSiK27 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3UTSiK27 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3UTSiK27 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3UTSiK27 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3UTSiK27 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3UTSiK27 .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3UTSiK27 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3UTSiK27 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3UTSiK27 .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-st3UTSiK27 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3UTSiK27 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3UTSiK27 .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;
}
@media (max-width: 991px) {
  .cid-st3UTSiK27.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3UTSiK27 img {
    height: 3.8rem !important;
  }
  .cid-st3UTSiK27 .btn {
    display: -webkit-flex;
  }
  .cid-st3UTSiK27 button.navbar-toggler {
    display: block;
  }
  .cid-st3UTSiK27 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3UTSiK27 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3UTSiK27 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3UTSiK27 .navbar-collapse.collapsing,
  .cid-st3UTSiK27 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3UTSiK27 .navbar-collapse.collapsing .navbar-nav,
  .cid-st3UTSiK27 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3UTSiK27 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3UTSiK27 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3UTSiK27 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3UTSiK27 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3UTSiK27 .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3UTSiK27 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3UTSiK27 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3UTSiK27 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3UTSiK27 .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-st3UTSiK27 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3UTSiK27 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3UTSiK27 .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;
  }
}
@media (max-width: 767px) {
  .cid-st3UTSiK27 .nav-link {
    justify-content: start !important;
  }
  .cid-st3UTSiK27 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3UTSiK27 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3UTSiK27 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3UTSiK27 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3UTSiK27 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3UTSiK27 .nav-link:hover,
.cid-st3UTSiK27 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3UTSiK27 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3UTSiK27 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3UTT2c8h {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3UTT2c8h h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3UTT2c8h .container {
    position: relative;
  }
  .cid-st3UTT2c8h .row {
    margin: 0;
  }
  .cid-st3UTT2c8h h2 {
    margin: 0;
  }
}
.cid-st3UTT2c8h .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3UTT2c8h .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3UTT2c8h h2 {
  color: #0a1c44;
}
.cid-st3UTTsivb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st3UTTsivb .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st3UTTsivb .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st3UTTsivb .btn {
  margin: 0px !important;
}
.cid-st3UTTsivb .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3UTTsivb .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3UTTsivb .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st3UTTsivb .carousel-item .wrap-img {
  text-align: center;
}
.cid-st3UTTsivb .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st3UTTsivb .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st3UTTsivb .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st3UTTsivb .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st3UTTsivb .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st3UTTsivb .second-col {
    padding-top: 2rem;
  }
}
.cid-st3UTUh5Jn {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st3UTUh5Jn H1 {
  color: #f5f7fa;
}
.cid-st3UTUh5Jn .mbr-text,
.cid-st3UTUh5Jn .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st3UTUh5Jn H3 {
  color: #716c80;
}
.cid-st3VO6wszp {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st3VO6wszp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st3VO6wszp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st3VO6wszp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st3VO6wszp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st3VO6wszp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3VO6wszp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st3VO6wszp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st3VO6wszp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st3VO6wszp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3VO6wszp ul {
  font-size: 0;
}
.cid-st3VO6wszp .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st3VO6wszp .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st3VO6wszp .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st3UTWC5Sr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3UTWC5Sr .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3UTWC5Sr .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3UTWC5Sr .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3UTWC5Sr .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3UTWC5Sr .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3UTWC5Sr .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3UTWC5Sr .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3UTWC5Sr .input-group-btn {
  padding-left: 0;
}
.cid-st3UTWC5Sr .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3UTWC5Sr .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3UTWC5Sr .mbr-text {
  color: #444;
}
.cid-st3UTWC5Sr h5 {
  margin-bottom: 0;
}
.cid-st3UTWC5Sr .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3UTWC5Sr .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3UTWC5Sr .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3UTWC5Sr .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3UTWC5Sr .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3UTWC5Sr .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3UTWC5Sr .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3UTWC5Sr .social-list a:hover {
  opacity: 0.4;
}
.cid-st3UTWC5Sr .media-container-row > div {
  padding: 0px;
}
.cid-st3UTWC5Sr .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3UTWC5Sr .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3UTWC5Sr .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3UTWC5Sr .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3UTWC5Sr .social-list,
  .cid-st3UTWC5Sr .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3UTWC5Sr h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3UTWC5Sr .form-group {
    max-width: 180px;
  }
}
.cid-st3UTWC5Sr .links span {
  color: #9e9e9e;
}
.cid-st3UTWC5Sr .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3UTWC5Sr .logo-title {
  text-align: center;
}
.cid-st3UTWC5Sr .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3UTWC5Sr .logo-title,
.cid-st3UTWC5Sr .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3WUQeJBa .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3WUQeJBa .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3WUQeJBa a {
  font-style: normal;
}
.cid-st3WUQeJBa .show {
  overflow: visible;
}
.cid-st3WUQeJBa .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3WUQeJBa .dropdown-item:active {
  background-color: transparent;
}
.cid-st3WUQeJBa .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3WUQeJBa .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3WUQeJBa .nav-item:focus,
.cid-st3WUQeJBa .nav-link:focus {
  outline: none;
}
.cid-st3WUQeJBa .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3WUQeJBa .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3WUQeJBa .menu-logo {
  margin-right: auto;
}
.cid-st3WUQeJBa .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3WUQeJBa .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3WUQeJBa .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3WUQeJBa .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3WUQeJBa .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3WUQeJBa .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3WUQeJBa .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3WUQeJBa .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3WUQeJBa .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3WUQeJBa .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3WUQeJBa .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3WUQeJBa .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3WUQeJBa .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3WUQeJBa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3WUQeJBa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3WUQeJBa .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3WUQeJBa .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3WUQeJBa .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3WUQeJBa .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3WUQeJBa .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3WUQeJBa .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3WUQeJBa .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3WUQeJBa .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3WUQeJBa .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3WUQeJBa button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3WUQeJBa button.navbar-toggler:focus {
  outline: none;
}
.cid-st3WUQeJBa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3WUQeJBa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3WUQeJBa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3WUQeJBa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3WUQeJBa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3WUQeJBa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3WUQeJBa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3WUQeJBa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3WUQeJBa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3WUQeJBa .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3WUQeJBa .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3WUQeJBa .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3WUQeJBa .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3WUQeJBa .collapsed .navbar-collapse.collapsing,
.cid-st3WUQeJBa .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3WUQeJBa .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3WUQeJBa .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3WUQeJBa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3WUQeJBa .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3WUQeJBa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3WUQeJBa .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3WUQeJBa .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3WUQeJBa .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3WUQeJBa .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3WUQeJBa .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3WUQeJBa .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3WUQeJBa .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3WUQeJBa .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3WUQeJBa .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3WUQeJBa .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-st3WUQeJBa .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3WUQeJBa .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3WUQeJBa .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;
}
@media (max-width: 991px) {
  .cid-st3WUQeJBa.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3WUQeJBa img {
    height: 3.8rem !important;
  }
  .cid-st3WUQeJBa .btn {
    display: -webkit-flex;
  }
  .cid-st3WUQeJBa button.navbar-toggler {
    display: block;
  }
  .cid-st3WUQeJBa .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3WUQeJBa .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3WUQeJBa .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3WUQeJBa .navbar-collapse.collapsing,
  .cid-st3WUQeJBa .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3WUQeJBa .navbar-collapse.collapsing .navbar-nav,
  .cid-st3WUQeJBa .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3WUQeJBa .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3WUQeJBa .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3WUQeJBa .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3WUQeJBa .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3WUQeJBa .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3WUQeJBa .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3WUQeJBa .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3WUQeJBa .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3WUQeJBa .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-st3WUQeJBa .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3WUQeJBa .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3WUQeJBa .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;
  }
}
@media (max-width: 767px) {
  .cid-st3WUQeJBa .nav-link {
    justify-content: start !important;
  }
  .cid-st3WUQeJBa .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3WUQeJBa .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3WUQeJBa .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3WUQeJBa .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3WUQeJBa .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3WUQeJBa .nav-link:hover,
.cid-st3WUQeJBa .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3WUQeJBa .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3WUQeJBa .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3WUQQxp4 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3WUQQxp4 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3WUQQxp4 .container {
    position: relative;
  }
  .cid-st3WUQQxp4 .row {
    margin: 0;
  }
  .cid-st3WUQQxp4 h2 {
    margin: 0;
  }
}
.cid-st3WUQQxp4 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3WUQQxp4 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3WUQQxp4 h2 {
  color: #0a1c44;
}
.cid-st3WURhCNo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st3WURhCNo .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st3WURhCNo .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st3WURhCNo .btn {
  margin: 0px !important;
}
.cid-st3WURhCNo .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3WURhCNo .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3WURhCNo .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st3WURhCNo .carousel-item .wrap-img {
  text-align: center;
}
.cid-st3WURhCNo .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st3WURhCNo .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st3WURhCNo .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st3WURhCNo .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st3WURhCNo .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st3WURhCNo .second-col {
    padding-top: 2rem;
  }
}
.cid-st40cLE2HI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st40cLE2HI .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st40cLE2HI .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st40cLE2HI .btn {
  margin: 0px !important;
}
.cid-st40cLE2HI .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st40cLE2HI .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st40cLE2HI .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st40cLE2HI .carousel-item .wrap-img {
  text-align: center;
}
.cid-st40cLE2HI .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st40cLE2HI .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st40cLE2HI .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st40cLE2HI .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #9e9e9e;
  display: inline-block;
  border: 4px solid #9e9e9e;
}
.cid-st40cLE2HI .carousel-indicators li.active {
  border-color: #626262;
}
@media (max-width: 768px) {
  .cid-st40cLE2HI .second-col {
    padding-top: 2rem;
  }
}
.cid-st40V2KaSJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st40V2KaSJ .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st40V2KaSJ .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st40V2KaSJ .btn {
  margin: 0px !important;
}
.cid-st40V2KaSJ .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st40V2KaSJ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st40V2KaSJ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st40V2KaSJ .carousel-item .wrap-img {
  text-align: center;
}
.cid-st40V2KaSJ .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st40V2KaSJ .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st40V2KaSJ .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st40V2KaSJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st40V2KaSJ .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st40V2KaSJ .second-col {
    padding-top: 2rem;
  }
}
.cid-st41D9OGH3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
.cid-st41D9OGH3 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st41D9OGH3 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st41D9OGH3 .btn {
  margin: 0px !important;
}
.cid-st41D9OGH3 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st41D9OGH3 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st41D9OGH3 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st41D9OGH3 .carousel-item .wrap-img {
  text-align: center;
}
.cid-st41D9OGH3 .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st41D9OGH3 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st41D9OGH3 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st41D9OGH3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st41D9OGH3 .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st41D9OGH3 .second-col {
    padding-top: 2rem;
  }
}
.cid-st4271QRTv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st4271QRTv .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st4271QRTv .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st4271QRTv .btn {
  margin: 0px !important;
}
.cid-st4271QRTv .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st4271QRTv .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st4271QRTv .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st4271QRTv .carousel-item .wrap-img {
  text-align: center;
}
.cid-st4271QRTv .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st4271QRTv .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st4271QRTv .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st4271QRTv .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st4271QRTv .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st4271QRTv .second-col {
    padding-top: 2rem;
  }
}
.cid-st3WUS4jbN {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st3WUS4jbN H1 {
  color: #f5f7fa;
}
.cid-st3WUS4jbN .mbr-text,
.cid-st3WUS4jbN .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st3WUS4jbN H3 {
  color: #716c80;
}
.cid-st3Y3MWc7W {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st3Y3MWc7W .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st3Y3MWc7W .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st3Y3MWc7W .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st3Y3MWc7W .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st3Y3MWc7W .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3Y3MWc7W .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st3Y3MWc7W .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st3Y3MWc7W .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st3Y3MWc7W .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3Y3MWc7W ul {
  font-size: 0;
}
.cid-st3Y3MWc7W .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st3Y3MWc7W .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st3Y3MWc7W .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st3WUU9HcU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3WUU9HcU .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3WUU9HcU .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3WUU9HcU .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3WUU9HcU .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3WUU9HcU .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3WUU9HcU .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3WUU9HcU .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3WUU9HcU .input-group-btn {
  padding-left: 0;
}
.cid-st3WUU9HcU .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3WUU9HcU .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3WUU9HcU .mbr-text {
  color: #444;
}
.cid-st3WUU9HcU h5 {
  margin-bottom: 0;
}
.cid-st3WUU9HcU .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3WUU9HcU .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3WUU9HcU .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3WUU9HcU .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3WUU9HcU .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3WUU9HcU .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3WUU9HcU .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3WUU9HcU .social-list a:hover {
  opacity: 0.4;
}
.cid-st3WUU9HcU .media-container-row > div {
  padding: 0px;
}
.cid-st3WUU9HcU .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3WUU9HcU .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3WUU9HcU .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3WUU9HcU .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3WUU9HcU .social-list,
  .cid-st3WUU9HcU .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3WUU9HcU h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3WUU9HcU .form-group {
    max-width: 180px;
  }
}
.cid-st3WUU9HcU .links span {
  color: #9e9e9e;
}
.cid-st3WUU9HcU .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3WUU9HcU .logo-title {
  text-align: center;
}
.cid-st3WUU9HcU .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3WUU9HcU .logo-title,
.cid-st3WUU9HcU .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st42Oa50nR .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st42Oa50nR .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st42Oa50nR a {
  font-style: normal;
}
.cid-st42Oa50nR .show {
  overflow: visible;
}
.cid-st42Oa50nR .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st42Oa50nR .dropdown-item:active {
  background-color: transparent;
}
.cid-st42Oa50nR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st42Oa50nR .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st42Oa50nR .nav-item:focus,
.cid-st42Oa50nR .nav-link:focus {
  outline: none;
}
.cid-st42Oa50nR .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st42Oa50nR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st42Oa50nR .menu-logo {
  margin-right: auto;
}
.cid-st42Oa50nR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st42Oa50nR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st42Oa50nR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st42Oa50nR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st42Oa50nR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st42Oa50nR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st42Oa50nR .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st42Oa50nR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st42Oa50nR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st42Oa50nR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st42Oa50nR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st42Oa50nR .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st42Oa50nR .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st42Oa50nR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st42Oa50nR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st42Oa50nR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st42Oa50nR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st42Oa50nR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st42Oa50nR .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st42Oa50nR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st42Oa50nR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st42Oa50nR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st42Oa50nR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st42Oa50nR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st42Oa50nR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st42Oa50nR button.navbar-toggler:focus {
  outline: none;
}
.cid-st42Oa50nR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st42Oa50nR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st42Oa50nR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st42Oa50nR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st42Oa50nR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st42Oa50nR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st42Oa50nR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st42Oa50nR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st42Oa50nR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st42Oa50nR .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st42Oa50nR .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st42Oa50nR .collapsed .btn {
  display: -webkit-flex;
}
.cid-st42Oa50nR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st42Oa50nR .collapsed .navbar-collapse.collapsing,
.cid-st42Oa50nR .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st42Oa50nR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st42Oa50nR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st42Oa50nR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st42Oa50nR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st42Oa50nR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st42Oa50nR .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st42Oa50nR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st42Oa50nR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st42Oa50nR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st42Oa50nR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st42Oa50nR .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st42Oa50nR .collapsed button.navbar-toggler {
  display: block;
}
.cid-st42Oa50nR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st42Oa50nR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st42Oa50nR .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-st42Oa50nR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st42Oa50nR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st42Oa50nR .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;
}
@media (max-width: 991px) {
  .cid-st42Oa50nR.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st42Oa50nR img {
    height: 3.8rem !important;
  }
  .cid-st42Oa50nR .btn {
    display: -webkit-flex;
  }
  .cid-st42Oa50nR button.navbar-toggler {
    display: block;
  }
  .cid-st42Oa50nR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st42Oa50nR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st42Oa50nR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st42Oa50nR .navbar-collapse.collapsing,
  .cid-st42Oa50nR .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st42Oa50nR .navbar-collapse.collapsing .navbar-nav,
  .cid-st42Oa50nR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st42Oa50nR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st42Oa50nR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st42Oa50nR .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st42Oa50nR .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st42Oa50nR .navbar-collapse.collapsing .navbar-buttons,
  .cid-st42Oa50nR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st42Oa50nR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st42Oa50nR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st42Oa50nR .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-st42Oa50nR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st42Oa50nR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st42Oa50nR .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;
  }
}
@media (max-width: 767px) {
  .cid-st42Oa50nR .nav-link {
    justify-content: start !important;
  }
  .cid-st42Oa50nR .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st42Oa50nR .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st42Oa50nR .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st42Oa50nR .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st42Oa50nR .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st42Oa50nR .nav-link:hover,
.cid-st42Oa50nR .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st42Oa50nR .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st42Oa50nR .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st42OaU6fN {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st42OaU6fN h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st42OaU6fN .container {
    position: relative;
  }
  .cid-st42OaU6fN .row {
    margin: 0;
  }
  .cid-st42OaU6fN h2 {
    margin: 0;
  }
}
.cid-st42OaU6fN .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st42OaU6fN .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st42OaU6fN h2 {
  color: #0a1c44;
}
.cid-st42ObhCur {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st42ObhCur .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st42ObhCur .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st42ObhCur .btn {
  margin: 0px !important;
}
.cid-st42ObhCur .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st42ObhCur .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st42ObhCur .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st42ObhCur .carousel-item .wrap-img {
  text-align: center;
}
.cid-st42ObhCur .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st42ObhCur .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st42ObhCur .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st42ObhCur .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st42ObhCur .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st42ObhCur .second-col {
    padding-top: 2rem;
  }
}
.cid-st42Oe1WbC {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st42Oe1WbC H1 {
  color: #f5f7fa;
}
.cid-st42Oe1WbC .mbr-text,
.cid-st42Oe1WbC .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st42Oe1WbC H3 {
  color: #716c80;
}
.cid-st43PTeTHs {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st43PTeTHs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st43PTeTHs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st43PTeTHs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st43PTeTHs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st43PTeTHs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st43PTeTHs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st43PTeTHs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st43PTeTHs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st43PTeTHs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st43PTeTHs ul {
  font-size: 0;
}
.cid-st43PTeTHs .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st43PTeTHs .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st43PTeTHs .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st42OgxOow {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st42OgxOow .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st42OgxOow .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st42OgxOow .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st42OgxOow .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st42OgxOow .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st42OgxOow .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st42OgxOow .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st42OgxOow .input-group-btn {
  padding-left: 0;
}
.cid-st42OgxOow .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st42OgxOow .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st42OgxOow .mbr-text {
  color: #444;
}
.cid-st42OgxOow h5 {
  margin-bottom: 0;
}
.cid-st42OgxOow .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st42OgxOow .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st42OgxOow .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st42OgxOow .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st42OgxOow .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st42OgxOow .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st42OgxOow .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st42OgxOow .social-list a:hover {
  opacity: 0.4;
}
.cid-st42OgxOow .media-container-row > div {
  padding: 0px;
}
.cid-st42OgxOow .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st42OgxOow .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st42OgxOow .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st42OgxOow .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st42OgxOow .social-list,
  .cid-st42OgxOow .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st42OgxOow h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st42OgxOow .form-group {
    max-width: 180px;
  }
}
.cid-st42OgxOow .links span {
  color: #9e9e9e;
}
.cid-st42OgxOow .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st42OgxOow .logo-title {
  text-align: center;
}
.cid-st42OgxOow .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st42OgxOow .logo-title,
.cid-st42OgxOow .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st449EwtuS .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st449EwtuS .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st449EwtuS a {
  font-style: normal;
}
.cid-st449EwtuS .show {
  overflow: visible;
}
.cid-st449EwtuS .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st449EwtuS .dropdown-item:active {
  background-color: transparent;
}
.cid-st449EwtuS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st449EwtuS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st449EwtuS .nav-item:focus,
.cid-st449EwtuS .nav-link:focus {
  outline: none;
}
.cid-st449EwtuS .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st449EwtuS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st449EwtuS .menu-logo {
  margin-right: auto;
}
.cid-st449EwtuS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st449EwtuS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st449EwtuS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st449EwtuS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st449EwtuS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st449EwtuS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st449EwtuS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st449EwtuS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st449EwtuS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st449EwtuS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st449EwtuS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st449EwtuS .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st449EwtuS .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st449EwtuS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st449EwtuS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st449EwtuS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st449EwtuS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st449EwtuS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st449EwtuS .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st449EwtuS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st449EwtuS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st449EwtuS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st449EwtuS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st449EwtuS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st449EwtuS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st449EwtuS button.navbar-toggler:focus {
  outline: none;
}
.cid-st449EwtuS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st449EwtuS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st449EwtuS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st449EwtuS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st449EwtuS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st449EwtuS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st449EwtuS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st449EwtuS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st449EwtuS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st449EwtuS .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st449EwtuS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st449EwtuS .collapsed .btn {
  display: -webkit-flex;
}
.cid-st449EwtuS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st449EwtuS .collapsed .navbar-collapse.collapsing,
.cid-st449EwtuS .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st449EwtuS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st449EwtuS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st449EwtuS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st449EwtuS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st449EwtuS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st449EwtuS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st449EwtuS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st449EwtuS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st449EwtuS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st449EwtuS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st449EwtuS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st449EwtuS .collapsed button.navbar-toggler {
  display: block;
}
.cid-st449EwtuS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st449EwtuS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st449EwtuS .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-st449EwtuS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st449EwtuS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st449EwtuS .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;
}
@media (max-width: 991px) {
  .cid-st449EwtuS.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st449EwtuS img {
    height: 3.8rem !important;
  }
  .cid-st449EwtuS .btn {
    display: -webkit-flex;
  }
  .cid-st449EwtuS button.navbar-toggler {
    display: block;
  }
  .cid-st449EwtuS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st449EwtuS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st449EwtuS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st449EwtuS .navbar-collapse.collapsing,
  .cid-st449EwtuS .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st449EwtuS .navbar-collapse.collapsing .navbar-nav,
  .cid-st449EwtuS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st449EwtuS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st449EwtuS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st449EwtuS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st449EwtuS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st449EwtuS .navbar-collapse.collapsing .navbar-buttons,
  .cid-st449EwtuS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st449EwtuS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st449EwtuS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st449EwtuS .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-st449EwtuS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st449EwtuS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st449EwtuS .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;
  }
}
@media (max-width: 767px) {
  .cid-st449EwtuS .nav-link {
    justify-content: start !important;
  }
  .cid-st449EwtuS .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st449EwtuS .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st449EwtuS .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st449EwtuS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st449EwtuS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st449EwtuS .nav-link:hover,
.cid-st449EwtuS .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st449EwtuS .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st449EwtuS .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st449FcGAB {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st449FcGAB h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st449FcGAB .container {
    position: relative;
  }
  .cid-st449FcGAB .row {
    margin: 0;
  }
  .cid-st449FcGAB h2 {
    margin: 0;
  }
}
.cid-st449FcGAB .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st449FcGAB .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st449FcGAB h2 {
  color: #0a1c44;
}
.cid-st449FvOZj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st449FvOZj .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st449FvOZj .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st449FvOZj .btn {
  margin: 0px !important;
}
.cid-st449FvOZj .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st449FvOZj .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st449FvOZj .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st449FvOZj .carousel-item .wrap-img {
  text-align: center;
}
.cid-st449FvOZj .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st449FvOZj .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st449FvOZj .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st449FvOZj .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st449FvOZj .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st449FvOZj .second-col {
    padding-top: 2rem;
  }
}
.cid-st45FUdJoN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-st45FUdJoN .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st45FUdJoN .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st45FUdJoN .btn {
  margin: 0px !important;
}
.cid-st45FUdJoN .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st45FUdJoN .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st45FUdJoN .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st45FUdJoN .carousel-item .wrap-img {
  text-align: center;
}
.cid-st45FUdJoN .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st45FUdJoN .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st45FUdJoN .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st45FUdJoN .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st45FUdJoN .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st45FUdJoN .second-col {
    padding-top: 2rem;
  }
}
.cid-st449GmZ10 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st449GmZ10 H1 {
  color: #f5f7fa;
}
.cid-st449GmZ10 .mbr-text,
.cid-st449GmZ10 .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st449GmZ10 H3 {
  color: #716c80;
}
.cid-st46gyraxC {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st46gyraxC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st46gyraxC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st46gyraxC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st46gyraxC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st46gyraxC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st46gyraxC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st46gyraxC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st46gyraxC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st46gyraxC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st46gyraxC ul {
  font-size: 0;
}
.cid-st46gyraxC .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st46gyraxC .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st46gyraxC .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st449HJFBR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st449HJFBR .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st449HJFBR .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st449HJFBR .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st449HJFBR .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st449HJFBR .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st449HJFBR .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st449HJFBR .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st449HJFBR .input-group-btn {
  padding-left: 0;
}
.cid-st449HJFBR .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st449HJFBR .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st449HJFBR .mbr-text {
  color: #444;
}
.cid-st449HJFBR h5 {
  margin-bottom: 0;
}
.cid-st449HJFBR .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st449HJFBR .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st449HJFBR .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st449HJFBR .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st449HJFBR .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st449HJFBR .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st449HJFBR .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st449HJFBR .social-list a:hover {
  opacity: 0.4;
}
.cid-st449HJFBR .media-container-row > div {
  padding: 0px;
}
.cid-st449HJFBR .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st449HJFBR .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st449HJFBR .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st449HJFBR .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st449HJFBR .social-list,
  .cid-st449HJFBR .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st449HJFBR h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st449HJFBR .form-group {
    max-width: 180px;
  }
}
.cid-st449HJFBR .links span {
  color: #9e9e9e;
}
.cid-st449HJFBR .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st449HJFBR .logo-title {
  text-align: center;
}
.cid-st449HJFBR .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st449HJFBR .logo-title,
.cid-st449HJFBR .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st4b2mr7la .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st4b2mr7la .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st4b2mr7la a {
  font-style: normal;
}
.cid-st4b2mr7la .show {
  overflow: visible;
}
.cid-st4b2mr7la .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st4b2mr7la .dropdown-item:active {
  background-color: transparent;
}
.cid-st4b2mr7la .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st4b2mr7la .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st4b2mr7la .nav-item:focus,
.cid-st4b2mr7la .nav-link:focus {
  outline: none;
}
.cid-st4b2mr7la .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st4b2mr7la .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st4b2mr7la .menu-logo {
  margin-right: auto;
}
.cid-st4b2mr7la .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st4b2mr7la .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st4b2mr7la .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st4b2mr7la .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st4b2mr7la .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st4b2mr7la .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st4b2mr7la .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st4b2mr7la .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st4b2mr7la .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st4b2mr7la .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st4b2mr7la .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st4b2mr7la .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st4b2mr7la .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st4b2mr7la .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st4b2mr7la .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st4b2mr7la .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st4b2mr7la .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st4b2mr7la .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st4b2mr7la .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st4b2mr7la .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st4b2mr7la .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st4b2mr7la .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st4b2mr7la .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st4b2mr7la .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st4b2mr7la button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st4b2mr7la button.navbar-toggler:focus {
  outline: none;
}
.cid-st4b2mr7la button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st4b2mr7la button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st4b2mr7la button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st4b2mr7la button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st4b2mr7la button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st4b2mr7la nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st4b2mr7la nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st4b2mr7la nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st4b2mr7la nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st4b2mr7la .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st4b2mr7la .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st4b2mr7la .collapsed .btn {
  display: -webkit-flex;
}
.cid-st4b2mr7la .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st4b2mr7la .collapsed .navbar-collapse.collapsing,
.cid-st4b2mr7la .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st4b2mr7la .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st4b2mr7la .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st4b2mr7la .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st4b2mr7la .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st4b2mr7la .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st4b2mr7la .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st4b2mr7la .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st4b2mr7la .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st4b2mr7la .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st4b2mr7la .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st4b2mr7la .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st4b2mr7la .collapsed button.navbar-toggler {
  display: block;
}
.cid-st4b2mr7la .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st4b2mr7la .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st4b2mr7la .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-st4b2mr7la .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st4b2mr7la .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st4b2mr7la .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;
}
@media (max-width: 991px) {
  .cid-st4b2mr7la.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st4b2mr7la img {
    height: 3.8rem !important;
  }
  .cid-st4b2mr7la .btn {
    display: -webkit-flex;
  }
  .cid-st4b2mr7la button.navbar-toggler {
    display: block;
  }
  .cid-st4b2mr7la .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st4b2mr7la .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st4b2mr7la .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st4b2mr7la .navbar-collapse.collapsing,
  .cid-st4b2mr7la .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st4b2mr7la .navbar-collapse.collapsing .navbar-nav,
  .cid-st4b2mr7la .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st4b2mr7la .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st4b2mr7la .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st4b2mr7la .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st4b2mr7la .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st4b2mr7la .navbar-collapse.collapsing .navbar-buttons,
  .cid-st4b2mr7la .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st4b2mr7la .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st4b2mr7la .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st4b2mr7la .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-st4b2mr7la .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st4b2mr7la .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st4b2mr7la .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;
  }
}
@media (max-width: 767px) {
  .cid-st4b2mr7la .nav-link {
    justify-content: start !important;
  }
  .cid-st4b2mr7la .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st4b2mr7la .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st4b2mr7la .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st4b2mr7la .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st4b2mr7la .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st4b2mr7la .nav-link:hover,
.cid-st4b2mr7la .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st4b2mr7la .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st4b2mr7la .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st4b2nfCiI {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st4b2nfCiI h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st4b2nfCiI .container {
    position: relative;
  }
  .cid-st4b2nfCiI .row {
    margin: 0;
  }
  .cid-st4b2nfCiI h2 {
    margin: 0;
  }
}
.cid-st4b2nfCiI .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st4b2nfCiI .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st4b2nfCiI h2 {
  color: #0a1c44;
}
.cid-st4lnhJupg {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ff4a52;
}
.cid-st4lnhJupg h4 {
  color: #ffffff;
}
.cid-st4b2nFfcY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st4b2nFfcY .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st4b2nFfcY .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st4b2nFfcY .btn {
  margin: 0px !important;
}
.cid-st4b2nFfcY .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st4b2nFfcY .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st4b2nFfcY .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st4b2nFfcY .carousel-item .wrap-img {
  text-align: center;
}
.cid-st4b2nFfcY .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st4b2nFfcY .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st4b2nFfcY .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st4b2nFfcY .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st4b2nFfcY .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st4b2nFfcY .second-col {
    padding-top: 2rem;
  }
}
.cid-st4n78UdjJ {
  background: #ffffff;
}
.cid-st4n78UdjJ .container-fluid {
  padding: 0 3rem;
}
.cid-st4n78UdjJ .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-st4n78UdjJ .image-block img {
  width: 100%;
}
.cid-st4n78UdjJ .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-st4n78UdjJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-st4n78UdjJ .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-st4n78UdjJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-st4n78UdjJ P {
  text-align: center;
}
.cid-st4b2uuLmy {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st4b2uuLmy .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st4b2uuLmy .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st4b2uuLmy .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st4b2uuLmy .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st4b2uuLmy .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st4b2uuLmy .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st4b2uuLmy .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st4b2uuLmy .input-group-btn {
  padding-left: 0;
}
.cid-st4b2uuLmy .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st4b2uuLmy .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st4b2uuLmy .mbr-text {
  color: #444;
}
.cid-st4b2uuLmy h5 {
  margin-bottom: 0;
}
.cid-st4b2uuLmy .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st4b2uuLmy .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st4b2uuLmy .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st4b2uuLmy .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st4b2uuLmy .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st4b2uuLmy .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st4b2uuLmy .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st4b2uuLmy .social-list a:hover {
  opacity: 0.4;
}
.cid-st4b2uuLmy .media-container-row > div {
  padding: 0px;
}
.cid-st4b2uuLmy .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st4b2uuLmy .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st4b2uuLmy .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st4b2uuLmy .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st4b2uuLmy .social-list,
  .cid-st4b2uuLmy .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st4b2uuLmy h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st4b2uuLmy .form-group {
    max-width: 180px;
  }
}
.cid-st4b2uuLmy .links span {
  color: #9e9e9e;
}
.cid-st4b2uuLmy .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st4b2uuLmy .logo-title {
  text-align: center;
}
.cid-st4b2uuLmy .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st4b2uuLmy .logo-title,
.cid-st4b2uuLmy .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st4sSpMa0r .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st4sSpMa0r .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st4sSpMa0r a {
  font-style: normal;
}
.cid-st4sSpMa0r .show {
  overflow: visible;
}
.cid-st4sSpMa0r .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st4sSpMa0r .dropdown-item:active {
  background-color: transparent;
}
.cid-st4sSpMa0r .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st4sSpMa0r .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st4sSpMa0r .nav-item:focus,
.cid-st4sSpMa0r .nav-link:focus {
  outline: none;
}
.cid-st4sSpMa0r .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st4sSpMa0r .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st4sSpMa0r .menu-logo {
  margin-right: auto;
}
.cid-st4sSpMa0r .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st4sSpMa0r .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st4sSpMa0r .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st4sSpMa0r .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st4sSpMa0r .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st4sSpMa0r .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st4sSpMa0r .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st4sSpMa0r .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st4sSpMa0r .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st4sSpMa0r .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st4sSpMa0r .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st4sSpMa0r .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st4sSpMa0r .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st4sSpMa0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st4sSpMa0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st4sSpMa0r .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st4sSpMa0r .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st4sSpMa0r .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st4sSpMa0r .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st4sSpMa0r .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st4sSpMa0r .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st4sSpMa0r .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st4sSpMa0r .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st4sSpMa0r .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st4sSpMa0r button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st4sSpMa0r button.navbar-toggler:focus {
  outline: none;
}
.cid-st4sSpMa0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st4sSpMa0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st4sSpMa0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st4sSpMa0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st4sSpMa0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st4sSpMa0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st4sSpMa0r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st4sSpMa0r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st4sSpMa0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st4sSpMa0r .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st4sSpMa0r .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st4sSpMa0r .collapsed .btn {
  display: -webkit-flex;
}
.cid-st4sSpMa0r .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st4sSpMa0r .collapsed .navbar-collapse.collapsing,
.cid-st4sSpMa0r .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st4sSpMa0r .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st4sSpMa0r .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st4sSpMa0r .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st4sSpMa0r .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st4sSpMa0r .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st4sSpMa0r .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st4sSpMa0r .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st4sSpMa0r .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st4sSpMa0r .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st4sSpMa0r .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st4sSpMa0r .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st4sSpMa0r .collapsed button.navbar-toggler {
  display: block;
}
.cid-st4sSpMa0r .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st4sSpMa0r .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st4sSpMa0r .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-st4sSpMa0r .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st4sSpMa0r .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st4sSpMa0r .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;
}
@media (max-width: 991px) {
  .cid-st4sSpMa0r.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st4sSpMa0r img {
    height: 3.8rem !important;
  }
  .cid-st4sSpMa0r .btn {
    display: -webkit-flex;
  }
  .cid-st4sSpMa0r button.navbar-toggler {
    display: block;
  }
  .cid-st4sSpMa0r .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st4sSpMa0r .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st4sSpMa0r .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st4sSpMa0r .navbar-collapse.collapsing,
  .cid-st4sSpMa0r .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st4sSpMa0r .navbar-collapse.collapsing .navbar-nav,
  .cid-st4sSpMa0r .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st4sSpMa0r .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st4sSpMa0r .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st4sSpMa0r .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st4sSpMa0r .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st4sSpMa0r .navbar-collapse.collapsing .navbar-buttons,
  .cid-st4sSpMa0r .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st4sSpMa0r .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st4sSpMa0r .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st4sSpMa0r .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-st4sSpMa0r .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st4sSpMa0r .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st4sSpMa0r .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;
  }
}
@media (max-width: 767px) {
  .cid-st4sSpMa0r .nav-link {
    justify-content: start !important;
  }
  .cid-st4sSpMa0r .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st4sSpMa0r .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st4sSpMa0r .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st4sSpMa0r .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st4sSpMa0r .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st4sSpMa0r .nav-link:hover,
.cid-st4sSpMa0r .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st4sSpMa0r .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st4sSpMa0r .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st4sSqlKuI {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st4sSqlKuI h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st4sSqlKuI .container {
    position: relative;
  }
  .cid-st4sSqlKuI .row {
    margin: 0;
  }
  .cid-st4sSqlKuI h2 {
    margin: 0;
  }
}
.cid-st4sSqlKuI .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st4sSqlKuI .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st4sSqlKuI h2 {
  color: #0a1c44;
}
.cid-sA0Src0SHK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #bae7e7;
}
@media (min-width: 992px) {
  .cid-sA0Src0SHK .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sA0Src0SHK .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sA0Src0SHK .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-sA0AL3UIXg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sA0AL3UIXg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sA0AL3UIXg .card-title {
  margin-bottom: 26px;
  color: #0a1c44;
}
.cid-sA0AL3UIXg .mbr-text {
  margin-bottom: 30px;
}
.cid-sA0AL3UIXg .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sA0AL3UIXg .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(65, 84, 241, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sA0AL3UIXg .iconfont-wrapper .mbr-iconfont {
  color: #4154f1;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sA0AL3UIXg .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sA0AL3UIXg .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sA0AL3UIXg .btn_link:hover {
  cursor: pointer;
}
.cid-sA0AL3UIXg .btn_link:hover a {
  color: #008b8b !important;
}
.cid-sA0AL3UIXg .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sA0AL3UIXg .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sA0AL3UIXg .text-wrapper {
    text-align: center;
  }
  .cid-sA0AL3UIXg .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sA0AL3UIXg .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sA0AL3UIXg .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sA0AL3UIXg .card-title,
.cid-sA0AL3UIXg .icon_block {
  color: #0a1c44;
}
.cid-sIaUP053CZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sIaUP053CZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sIaUP053CZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIaUP053CZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sIaUP053CZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sIaUP053CZ .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-sIaUP053CZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sIaUP053CZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sIaUP053CZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sIaUP053CZ .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-sA0Hh1lMhk {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-st9KAQvFgB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9KAQvFgB H1 {
  color: #0a1c44;
}
.cid-st9KAQvFgB .mbr-text,
.cid-st9KAQvFgB .mbr-section-btn {
  color: #0a1c44;
}
.cid-st9KAQvFgB H3 {
  color: #716c80;
}
.cid-st9KENI0mF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9KENI0mF .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-st9KENI0mF .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-st9KENI0mF .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-st9KENI0mF .price-tage > p {
  letter-spacing: 2px;
}
.cid-st9KENI0mF .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-st9KENI0mF .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-st9KENI0mF .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-st9KENI0mF .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-st9KENI0mF .costs {
  color: #ffffff;
}
.cid-st9KENI0mF .costs-title {
  color: #ffffff;
}
.cid-st9KENI0mF .table-content,
.cid-st9KENI0mF .mbr-section-btn {
  color: #0a1c44;
}
.cid-st9KFDv3ls {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9KFDv3ls .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-st9KFDv3ls .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-st9KFDv3ls .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-st9KFDv3ls .price-tage > p {
  letter-spacing: 2px;
}
.cid-st9KFDv3ls .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-st9KFDv3ls .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-st9KFDv3ls .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-st9KFDv3ls .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-st9KFDv3ls .costs {
  color: #ffffff;
}
.cid-st9KFDv3ls .costs-title {
  color: #ffffff;
}
.cid-st9KFDv3ls .price-item {
  padding-bottom: 0;
}
.cid-st9KFDv3ls .table-content {
  margin-bottom: 0;
}
.cid-st9KFDv3ls .table-content > li:last-child {
  border-bottom: none;
}
.cid-st9KFDv3ls .table-content,
.cid-st9KFDv3ls .mbr-section-btn {
  color: #ff4a52;
}
.cid-st5fI4OmM3 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #e9e9e9;
}
.cid-st5fI4OmM3 .mail-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.cid-st5fI4OmM3 .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  color: #000000;
}
.cid-st5fI4OmM3 .mail:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-st5fI4OmM3 .mail:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-st5fI4OmM3 .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-st5fI4OmM3 H4 {
  color: #999999;
}
.cid-st5fI4OmM3 .mbr-text,
.cid-st5fI4OmM3 .mbr-section-btn {
  color: #0a1c44;
}
@media (max-width: 767px) {
  .cid-st5fI4OmM3 .mail-col {
    justify-content: center;
    padding-top: 1rem;
  }
}
.cid-st5fI4OmM3 H3 {
  color: #0a1c44;
}
.cid-st5dqafEpO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st5dqafEpO H1 {
  color: #0a1c44;
}
.cid-st5dqafEpO .mbr-text,
.cid-st5dqafEpO .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st5dqafEpO H3 {
  color: #716c80;
}
#custom-html-73 {
  /* info (hed, dek, source, credit) */
  /* table */
  /* media queries */
}
#custom-html-73 .rg-container {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 1em 0.5em;
  color: #222;
}
#custom-html-73 .rg-header {
  margin-bottom: 1em;
  text-align: left;
}
#custom-html-73 .rg-header > * {
  display: block;
}
#custom-html-73 .rg-hed {
  font-weight: bold;
  font-size: 1.4em;
}
#custom-html-73 .rg-dek {
  font-size: 1em;
}
#custom-html-73 .rg-source {
  margin: 0;
  font-size: 0.75em;
  text-align: right;
}
#custom-html-73 .rg-source .pre-colon {
  text-transform: uppercase;
}
#custom-html-73 .rg-source .post-colon {
  font-weight: bold;
}
#custom-html-73 table.rg-table {
  width: 100%;
  margin-bottom: 0.5em;
  font-size: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
#custom-html-73 table.rg-table tr {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-align: left;
  color: #333;
}
#custom-html-73 table.rg-table thead {
  border-bottom: 3px solid #ddd;
}
#custom-html-73 table.rg-table tr {
  border-bottom: 1px solid #ddd;
  color: #222;
}
#custom-html-73 table.rg-table tr.highlight {
  background-color: #dcf1f0 !important;
}
#custom-html-73 table.rg-table.zebra tr:nth-child(even) {
  background-color: #f6f6f6;
}
#custom-html-73 table.rg-table th {
  font-weight: bold;
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-73 table.rg-table td {
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-73 table.rg-table .highlight td {
  font-weight: bold;
}
#custom-html-73 table.rg-table th.number,
#custom-html-73 td.number {
  text-align: right;
}
@media screen and (max-width: 600px) {
  #custom-html-73 .rg-container {
    max-width: 600px;
    margin: 0 auto;
  }
  #custom-html-73 table.rg-table {
    width: 100%;
  }
  #custom-html-73 table.rg-table tr.hide-mobile,
  #custom-html-73 table.rg-table th.hide-mobile,
  #custom-html-73 table.rg-table td.hide-mobile {
    display: none;
  }
  #custom-html-73 table.rg-table thead {
    display: none;
  }
  #custom-html-73 table.rg-table tbody {
    width: 100%;
  }
  #custom-html-73 table.rg-table tr,
  #custom-html-73 table.rg-table th,
  #custom-html-73 table.rg-table td {
    display: block;
    padding: 0;
  }
  #custom-html-73 table.rg-table tr {
    border-bottom: none;
    margin: 0 0 1em 0;
    padding: 0.5em;
  }
  #custom-html-73 table.rg-table tr.highlight {
    background-color: inherit !important;
  }
  #custom-html-73 table.rg-table.zebra tr:nth-child(even) {
    background-color: transparent;
  }
  #custom-html-73 table.rg-table.zebra td:nth-child(even) {
    background-color: #f6f6f6;
  }
  #custom-html-73 table.rg-table tr:nth-child(even) {
    background-color: transparent;
  }
  #custom-html-73 table.rg-table td {
    padding: 0.5em 0 0.25em 0;
    border-bottom: 1px dotted #ccc;
    text-align: right;
  }
  #custom-html-73 table.rg-table td[data-title]:before {
    font-weight: bold;
    display: inline-block;
    content: attr(data-title);
    float: left;
    margin-right: 0.5em;
    font-size: 0.95em;
  }
  #custom-html-73 table.rg-table td:last-child {
    padding-right: 0;
    border-bottom: 2px solid #ccc;
  }
  #custom-html-73 table.rg-table td:empty {
    display: none;
  }
  #custom-html-73 table.rg-table .highlight td {
    background-color: inherit;
    font-weight: normal;
  }
}
.cid-st5gF8jFfb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #e9e9e9;
}
.cid-st5gF8jFfb H1 {
  color: #0a1c44;
}
.cid-st5gF8jFfb .mbr-text,
.cid-st5gF8jFfb .mbr-section-btn {
  color: #0a1c44;
}
.cid-st5gF8jFfb H3 {
  color: #716c80;
}
.cid-st9KTgh8KX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9KTgh8KX .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-st9KTgh8KX .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-st9KTgh8KX .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-st9KTgh8KX .card-title {
  color: #0a1c44;
  margin: 0;
  text-align: left;
}
.cid-st9KTgh8KX .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-st9KTgh8KX .card-box {
  padding: 1rem;
}
.cid-st9KTgh8KX .mbr-section-title,
.cid-st9KTgh8KX .line-wrap {
  text-align: center;
}
.cid-st9KTgh8KX .card-box > p,
.cid-st9KTgh8KX .mbr-section-btn {
  text-align: left;
  color: #0a1c44;
}
.cid-st4sSwRAMF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st4sSwRAMF .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st4sSwRAMF .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st4sSwRAMF .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st4sSwRAMF .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st4sSwRAMF .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st4sSwRAMF .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st4sSwRAMF .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st4sSwRAMF .input-group-btn {
  padding-left: 0;
}
.cid-st4sSwRAMF .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st4sSwRAMF .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st4sSwRAMF .mbr-text {
  color: #444;
}
.cid-st4sSwRAMF h5 {
  margin-bottom: 0;
}
.cid-st4sSwRAMF .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st4sSwRAMF .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st4sSwRAMF .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st4sSwRAMF .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st4sSwRAMF .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st4sSwRAMF .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st4sSwRAMF .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st4sSwRAMF .social-list a:hover {
  opacity: 0.4;
}
.cid-st4sSwRAMF .media-container-row > div {
  padding: 0px;
}
.cid-st4sSwRAMF .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st4sSwRAMF .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st4sSwRAMF .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st4sSwRAMF .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st4sSwRAMF .social-list,
  .cid-st4sSwRAMF .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st4sSwRAMF h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st4sSwRAMF .form-group {
    max-width: 180px;
  }
}
.cid-st4sSwRAMF .links span {
  color: #9e9e9e;
}
.cid-st4sSwRAMF .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st4sSwRAMF .logo-title {
  text-align: center;
}
.cid-st4sSwRAMF .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st4sSwRAMF .logo-title,
.cid-st4sSwRAMF .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-statyAjIXK .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-statyAjIXK .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-statyAjIXK a {
  font-style: normal;
}
.cid-statyAjIXK .show {
  overflow: visible;
}
.cid-statyAjIXK .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-statyAjIXK .dropdown-item:active {
  background-color: transparent;
}
.cid-statyAjIXK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-statyAjIXK .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-statyAjIXK .nav-item:focus,
.cid-statyAjIXK .nav-link:focus {
  outline: none;
}
.cid-statyAjIXK .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-statyAjIXK .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-statyAjIXK .menu-logo {
  margin-right: auto;
}
.cid-statyAjIXK .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-statyAjIXK .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-statyAjIXK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-statyAjIXK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-statyAjIXK .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-statyAjIXK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-statyAjIXK .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-statyAjIXK .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-statyAjIXK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-statyAjIXK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-statyAjIXK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-statyAjIXK .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-statyAjIXK .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-statyAjIXK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-statyAjIXK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-statyAjIXK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-statyAjIXK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-statyAjIXK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-statyAjIXK .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-statyAjIXK .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-statyAjIXK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-statyAjIXK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-statyAjIXK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-statyAjIXK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-statyAjIXK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-statyAjIXK button.navbar-toggler:focus {
  outline: none;
}
.cid-statyAjIXK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-statyAjIXK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-statyAjIXK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-statyAjIXK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-statyAjIXK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-statyAjIXK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-statyAjIXK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-statyAjIXK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-statyAjIXK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-statyAjIXK .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-statyAjIXK .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-statyAjIXK .collapsed .btn {
  display: -webkit-flex;
}
.cid-statyAjIXK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-statyAjIXK .collapsed .navbar-collapse.collapsing,
.cid-statyAjIXK .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-statyAjIXK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-statyAjIXK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-statyAjIXK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-statyAjIXK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-statyAjIXK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-statyAjIXK .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-statyAjIXK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-statyAjIXK .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-statyAjIXK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-statyAjIXK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-statyAjIXK .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-statyAjIXK .collapsed button.navbar-toggler {
  display: block;
}
.cid-statyAjIXK .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-statyAjIXK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-statyAjIXK .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-statyAjIXK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-statyAjIXK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-statyAjIXK .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;
}
@media (max-width: 991px) {
  .cid-statyAjIXK.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-statyAjIXK img {
    height: 3.8rem !important;
  }
  .cid-statyAjIXK .btn {
    display: -webkit-flex;
  }
  .cid-statyAjIXK button.navbar-toggler {
    display: block;
  }
  .cid-statyAjIXK .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-statyAjIXK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-statyAjIXK .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-statyAjIXK .navbar-collapse.collapsing,
  .cid-statyAjIXK .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-statyAjIXK .navbar-collapse.collapsing .navbar-nav,
  .cid-statyAjIXK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-statyAjIXK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-statyAjIXK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-statyAjIXK .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-statyAjIXK .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-statyAjIXK .navbar-collapse.collapsing .navbar-buttons,
  .cid-statyAjIXK .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-statyAjIXK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-statyAjIXK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-statyAjIXK .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-statyAjIXK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-statyAjIXK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-statyAjIXK .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;
  }
}
@media (max-width: 767px) {
  .cid-statyAjIXK .nav-link {
    justify-content: start !important;
  }
  .cid-statyAjIXK .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-statyAjIXK .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-statyAjIXK .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-statyAjIXK .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-statyAjIXK .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-statyAjIXK .nav-link:hover,
.cid-statyAjIXK .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-statyAjIXK .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-statyAjIXK .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-statyAIid0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-statyAIid0 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-statyAIid0 .container {
    position: relative;
  }
  .cid-statyAIid0 .row {
    margin: 0;
  }
  .cid-statyAIid0 h2 {
    margin: 0;
  }
}
.cid-statyAIid0 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-statyAIid0 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-statyAIid0 h2 {
  color: #008b8b;
}
.cid-stayAV6HRB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
.cid-sGsQoxHAeE {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #7eb9b9;
}
.cid-sGsQoxHAeE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGsQoxHAeE H5 {
  color: #0a1c44;
  text-align: center;
}
.cid-uPuJT3Z5XX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-uPuJT3Z5XX H1 {
  color: #f5f7fa;
}
.cid-uPuJT3Z5XX .mbr-text,
.cid-uPuJT3Z5XX .mbr-section-btn {
  color: #f5f7fa;
  text-align: center;
}
.cid-uPuJT3Z5XX H3 {
  color: #716c80;
}
.cid-statyBgGPz {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-statyBgGPz .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-statyBgGPz .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-statyBgGPz .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-statyBgGPz .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-statyBgGPz .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-statyBgGPz .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-statyBgGPz .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-statyBgGPz .input-group-btn {
  padding-left: 0;
}
.cid-statyBgGPz .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-statyBgGPz .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-statyBgGPz .mbr-text {
  color: #444;
}
.cid-statyBgGPz h5 {
  margin-bottom: 0;
}
.cid-statyBgGPz .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-statyBgGPz .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-statyBgGPz .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-statyBgGPz .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-statyBgGPz .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-statyBgGPz .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-statyBgGPz .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-statyBgGPz .social-list a:hover {
  opacity: 0.4;
}
.cid-statyBgGPz .media-container-row > div {
  padding: 0px;
}
.cid-statyBgGPz .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-statyBgGPz .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-statyBgGPz .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-statyBgGPz .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-statyBgGPz .social-list,
  .cid-statyBgGPz .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-statyBgGPz h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-statyBgGPz .form-group {
    max-width: 180px;
  }
}
.cid-statyBgGPz .links span {
  color: #9e9e9e;
}
.cid-statyBgGPz .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-statyBgGPz .logo-title {
  text-align: center;
}
.cid-statyBgGPz .logo-sub-title i {
  color: #9e9e9e;
}
.cid-statyBgGPz .logo-title,
.cid-statyBgGPz .logo {
  color: #f5f7fa;
}
.cid-statyBYAzo {
  background-color: #669b9b;
}
.cid-statyBYAzo svg {
  position: absolute;
  top: 0;
}
.cid-statyBYAzo .svg-1 {
  fill: #008b8b;
}
.cid-statyBYAzo .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-statyBYAzo {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-statyBYAzo {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-statyBYAzo .mbr-text {
  color: #b1bee0;
}
.cid-statyBYAzo a {
  text-decoration: underline;
}
.cid-statyBYAzo a,
.cid-statyBYAzo a:hover {
  font-weight: 400 !important;
}
.cid-statyBYAzo .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-staNcvd67Q .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-staNcvd67Q .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-staNcvd67Q a {
  font-style: normal;
}
.cid-staNcvd67Q .show {
  overflow: visible;
}
.cid-staNcvd67Q .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-staNcvd67Q .dropdown-item:active {
  background-color: transparent;
}
.cid-staNcvd67Q .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-staNcvd67Q .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-staNcvd67Q .nav-item:focus,
.cid-staNcvd67Q .nav-link:focus {
  outline: none;
}
.cid-staNcvd67Q .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-staNcvd67Q .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-staNcvd67Q .menu-logo {
  margin-right: auto;
}
.cid-staNcvd67Q .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-staNcvd67Q .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-staNcvd67Q .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-staNcvd67Q .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-staNcvd67Q .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-staNcvd67Q .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-staNcvd67Q .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-staNcvd67Q .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-staNcvd67Q .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-staNcvd67Q .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-staNcvd67Q .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-staNcvd67Q .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-staNcvd67Q .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-staNcvd67Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-staNcvd67Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-staNcvd67Q .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-staNcvd67Q .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-staNcvd67Q .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-staNcvd67Q .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-staNcvd67Q .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-staNcvd67Q .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-staNcvd67Q .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-staNcvd67Q .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-staNcvd67Q .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-staNcvd67Q button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-staNcvd67Q button.navbar-toggler:focus {
  outline: none;
}
.cid-staNcvd67Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-staNcvd67Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-staNcvd67Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-staNcvd67Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-staNcvd67Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-staNcvd67Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-staNcvd67Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-staNcvd67Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-staNcvd67Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-staNcvd67Q .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-staNcvd67Q .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-staNcvd67Q .collapsed .btn {
  display: -webkit-flex;
}
.cid-staNcvd67Q .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-staNcvd67Q .collapsed .navbar-collapse.collapsing,
.cid-staNcvd67Q .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-staNcvd67Q .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-staNcvd67Q .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-staNcvd67Q .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-staNcvd67Q .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-staNcvd67Q .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-staNcvd67Q .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-staNcvd67Q .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-staNcvd67Q .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-staNcvd67Q .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-staNcvd67Q .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-staNcvd67Q .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-staNcvd67Q .collapsed button.navbar-toggler {
  display: block;
}
.cid-staNcvd67Q .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-staNcvd67Q .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-staNcvd67Q .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-staNcvd67Q .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-staNcvd67Q .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-staNcvd67Q .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;
}
@media (max-width: 991px) {
  .cid-staNcvd67Q.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-staNcvd67Q img {
    height: 3.8rem !important;
  }
  .cid-staNcvd67Q .btn {
    display: -webkit-flex;
  }
  .cid-staNcvd67Q button.navbar-toggler {
    display: block;
  }
  .cid-staNcvd67Q .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-staNcvd67Q .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-staNcvd67Q .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-staNcvd67Q .navbar-collapse.collapsing,
  .cid-staNcvd67Q .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-staNcvd67Q .navbar-collapse.collapsing .navbar-nav,
  .cid-staNcvd67Q .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-staNcvd67Q .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-staNcvd67Q .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-staNcvd67Q .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-staNcvd67Q .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-staNcvd67Q .navbar-collapse.collapsing .navbar-buttons,
  .cid-staNcvd67Q .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-staNcvd67Q .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-staNcvd67Q .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-staNcvd67Q .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-staNcvd67Q .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-staNcvd67Q .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-staNcvd67Q .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;
  }
}
@media (max-width: 767px) {
  .cid-staNcvd67Q .nav-link {
    justify-content: start !important;
  }
  .cid-staNcvd67Q .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-staNcvd67Q .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-staNcvd67Q .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-staNcvd67Q .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-staNcvd67Q .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-staNcvd67Q .nav-link:hover,
.cid-staNcvd67Q .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-staNcvd67Q .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-staNcvd67Q .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-staNcw5WbY {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-staNcw5WbY h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-staNcw5WbY .container {
    position: relative;
  }
  .cid-staNcw5WbY .row {
    margin: 0;
  }
  .cid-staNcw5WbY h2 {
    margin: 0;
  }
}
.cid-staNcw5WbY .mbr-section-subtitle {
  color: #e9204f;
}
.cid-staNcw5WbY .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-staNcw5WbY h2 {
  color: #0a1c44;
}
.cid-staNcwLt76 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #a5d8d8;
}
.cid-staNcwLt76 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-staNcwLt76 H5 {
  color: #0a1c44;
}
.cid-staNcxAjn7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-staNcxAjn7 .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-staNcxAjn7 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-staNcxAjn7 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-staNcxAjn7 .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-staNcxAjn7 .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-staNcxAjn7 .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-staNcxAjn7 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-staNcxAjn7 .input-group-btn {
  padding-left: 0;
}
.cid-staNcxAjn7 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-staNcxAjn7 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-staNcxAjn7 .mbr-text {
  color: #444;
}
.cid-staNcxAjn7 h5 {
  margin-bottom: 0;
}
.cid-staNcxAjn7 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-staNcxAjn7 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-staNcxAjn7 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-staNcxAjn7 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-staNcxAjn7 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-staNcxAjn7 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-staNcxAjn7 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-staNcxAjn7 .social-list a:hover {
  opacity: 0.4;
}
.cid-staNcxAjn7 .media-container-row > div {
  padding: 0px;
}
.cid-staNcxAjn7 .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-staNcxAjn7 .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-staNcxAjn7 .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-staNcxAjn7 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-staNcxAjn7 .social-list,
  .cid-staNcxAjn7 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-staNcxAjn7 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-staNcxAjn7 .form-group {
    max-width: 180px;
  }
}
.cid-staNcxAjn7 .links span {
  color: #9e9e9e;
}
.cid-staNcxAjn7 .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-staNcxAjn7 .logo-title {
  text-align: center;
}
.cid-staNcxAjn7 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-staNcxAjn7 .logo-title,
.cid-staNcxAjn7 .logo {
  color: #f5f7fa;
}
.cid-staNcyodKz {
  background-color: #669b9b;
}
.cid-staNcyodKz svg {
  position: absolute;
  top: 0;
}
.cid-staNcyodKz .svg-1 {
  fill: #008b8b;
}
.cid-staNcyodKz .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-staNcyodKz {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-staNcyodKz {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-staNcyodKz .mbr-text {
  color: #b1bee0;
}
.cid-staNcyodKz a {
  text-decoration: underline;
}
.cid-staNcyodKz a,
.cid-staNcyodKz a:hover {
  font-weight: 400 !important;
}
.cid-staNcyodKz .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-stDCUqvDHv .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-stDCUqvDHv .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-stDCUqvDHv a {
  font-style: normal;
}
.cid-stDCUqvDHv .show {
  overflow: visible;
}
.cid-stDCUqvDHv .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-stDCUqvDHv .dropdown-item:active {
  background-color: transparent;
}
.cid-stDCUqvDHv .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-stDCUqvDHv .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-stDCUqvDHv .nav-item:focus,
.cid-stDCUqvDHv .nav-link:focus {
  outline: none;
}
.cid-stDCUqvDHv .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stDCUqvDHv .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-stDCUqvDHv .menu-logo {
  margin-right: auto;
}
.cid-stDCUqvDHv .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stDCUqvDHv .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stDCUqvDHv .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stDCUqvDHv .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stDCUqvDHv .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-stDCUqvDHv .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stDCUqvDHv .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-stDCUqvDHv .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-stDCUqvDHv .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-stDCUqvDHv .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stDCUqvDHv .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stDCUqvDHv .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-stDCUqvDHv .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-stDCUqvDHv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-stDCUqvDHv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stDCUqvDHv .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stDCUqvDHv .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stDCUqvDHv .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-stDCUqvDHv .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-stDCUqvDHv .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-stDCUqvDHv .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stDCUqvDHv .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stDCUqvDHv .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-stDCUqvDHv .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stDCUqvDHv button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-stDCUqvDHv button.navbar-toggler:focus {
  outline: none;
}
.cid-stDCUqvDHv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stDCUqvDHv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stDCUqvDHv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stDCUqvDHv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stDCUqvDHv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stDCUqvDHv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stDCUqvDHv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stDCUqvDHv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stDCUqvDHv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-stDCUqvDHv .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-stDCUqvDHv .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-stDCUqvDHv .collapsed .btn {
  display: -webkit-flex;
}
.cid-stDCUqvDHv .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stDCUqvDHv .collapsed .navbar-collapse.collapsing,
.cid-stDCUqvDHv .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-stDCUqvDHv .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stDCUqvDHv .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stDCUqvDHv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stDCUqvDHv .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stDCUqvDHv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-stDCUqvDHv .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-stDCUqvDHv .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stDCUqvDHv .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-stDCUqvDHv .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stDCUqvDHv .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stDCUqvDHv .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-stDCUqvDHv .collapsed button.navbar-toggler {
  display: block;
}
.cid-stDCUqvDHv .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-stDCUqvDHv .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-stDCUqvDHv .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-stDCUqvDHv .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stDCUqvDHv .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stDCUqvDHv .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;
}
@media (max-width: 991px) {
  .cid-stDCUqvDHv.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-stDCUqvDHv img {
    height: 3.8rem !important;
  }
  .cid-stDCUqvDHv .btn {
    display: -webkit-flex;
  }
  .cid-stDCUqvDHv button.navbar-toggler {
    display: block;
  }
  .cid-stDCUqvDHv .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-stDCUqvDHv .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-stDCUqvDHv .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stDCUqvDHv .navbar-collapse.collapsing,
  .cid-stDCUqvDHv .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-stDCUqvDHv .navbar-collapse.collapsing .navbar-nav,
  .cid-stDCUqvDHv .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stDCUqvDHv .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stDCUqvDHv .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stDCUqvDHv .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-stDCUqvDHv .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-stDCUqvDHv .navbar-collapse.collapsing .navbar-buttons,
  .cid-stDCUqvDHv .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-stDCUqvDHv .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stDCUqvDHv .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stDCUqvDHv .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-stDCUqvDHv .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stDCUqvDHv .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stDCUqvDHv .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;
  }
}
@media (max-width: 767px) {
  .cid-stDCUqvDHv .nav-link {
    justify-content: start !important;
  }
  .cid-stDCUqvDHv .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-stDCUqvDHv .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-stDCUqvDHv .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-stDCUqvDHv .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-stDCUqvDHv .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-stDCUqvDHv .nav-link:hover,
.cid-stDCUqvDHv .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-stDCUqvDHv .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-stDCUqvDHv .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-stDCUr2njC {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-stDCUr2njC h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-stDCUr2njC .container {
    position: relative;
  }
  .cid-stDCUr2njC .row {
    margin: 0;
  }
  .cid-stDCUr2njC h2 {
    margin: 0;
  }
}
.cid-stDCUr2njC .mbr-section-subtitle {
  color: #e9204f;
}
.cid-stDCUr2njC .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-stDCUr2njC h2 {
  color: #0a1c44;
}
.cid-stEmiLyJNj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-uVIBH9f4wd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-uVIBH9f4wd h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uVIBH9f4wd .container {
    position: relative;
  }
  .cid-uVIBH9f4wd .row {
    margin: 0;
  }
  .cid-uVIBH9f4wd h2 {
    margin: 0;
  }
}
.cid-uVIBH9f4wd .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uVIBH9f4wd .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uVIBH9f4wd h2 {
  color: #f5f7fa;
}
.cid-uVIBVjgMcA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVIBVjgMcA img,
.cid-uVIBVjgMcA .item-img {
  width: 100%;
}
.cid-uVIBVjgMcA .item:focus,
.cid-uVIBVjgMcA span:focus {
  outline: none;
}
.cid-uVIBVjgMcA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVIBVjgMcA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVIBVjgMcA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uVIBVjgMcA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVIBVjgMcA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uVIBVjgMcA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uVIBVjgMcA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVIBVjgMcA .mbr-section-title {
  color: #232323;
}
.cid-uVIBVjgMcA .mbr-text,
.cid-uVIBVjgMcA .mbr-section-btn {
  text-align: left;
}
.cid-uVIBVjgMcA .item-title {
  text-align: left;
}
.cid-uVIBVjgMcA .item-subtitle {
  text-align: left;
}
.cid-u6EojgfLNL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-u6EojgfLNL h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u6EojgfLNL .container {
    position: relative;
  }
  .cid-u6EojgfLNL .row {
    margin: 0;
  }
  .cid-u6EojgfLNL h2 {
    margin: 0;
  }
}
.cid-u6EojgfLNL .mbr-section-subtitle {
  color: #e9204f;
}
.cid-u6EojgfLNL .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-u6EojgfLNL h2 {
  color: #f5f7fa;
}
.cid-u6EoJexRay {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6EoJexRay img,
.cid-u6EoJexRay .item-img {
  width: 100%;
}
.cid-u6EoJexRay .item:focus,
.cid-u6EoJexRay span:focus {
  outline: none;
}
.cid-u6EoJexRay .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6EoJexRay .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6EoJexRay .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6EoJexRay .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6EoJexRay .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6EoJexRay .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6EoJexRay .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6EoJexRay .mbr-section-title {
  color: #232323;
}
.cid-u6EoJexRay .mbr-text,
.cid-u6EoJexRay .mbr-section-btn {
  text-align: left;
}
.cid-u6EoJexRay .item-title {
  text-align: left;
}
.cid-u6EoJexRay .item-subtitle {
  text-align: left;
}
.cid-tAcvSa2Dq4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-tAcvSa2Dq4 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tAcvSa2Dq4 .container {
    position: relative;
  }
  .cid-tAcvSa2Dq4 .row {
    margin: 0;
  }
  .cid-tAcvSa2Dq4 h2 {
    margin: 0;
  }
}
.cid-tAcvSa2Dq4 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tAcvSa2Dq4 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-tAcvSa2Dq4 h2 {
  color: #f5f7fa;
}
.cid-tAcw1SphzZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAcw1SphzZ img,
.cid-tAcw1SphzZ .item-img {
  width: 100%;
}
.cid-tAcw1SphzZ .item:focus,
.cid-tAcw1SphzZ span:focus {
  outline: none;
}
.cid-tAcw1SphzZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tAcw1SphzZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAcw1SphzZ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tAcw1SphzZ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAcw1SphzZ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tAcw1SphzZ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tAcw1SphzZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAcw1SphzZ .mbr-section-title {
  color: #232323;
}
.cid-tAcw1SphzZ .mbr-text,
.cid-tAcw1SphzZ .mbr-section-btn {
  text-align: left;
}
.cid-tAcw1SphzZ .item-title {
  text-align: left;
}
.cid-tAcw1SphzZ .item-subtitle {
  text-align: left;
}
.cid-t1hfpwSSWD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-t1hfpwSSWD h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-t1hfpwSSWD .container {
    position: relative;
  }
  .cid-t1hfpwSSWD .row {
    margin: 0;
  }
  .cid-t1hfpwSSWD h2 {
    margin: 0;
  }
}
.cid-t1hfpwSSWD .mbr-section-subtitle {
  color: #e9204f;
}
.cid-t1hfpwSSWD .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-t1hfpwSSWD h2 {
  color: #f5f7fa;
}
.cid-t1hga1j07l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1hga1j07l img,
.cid-t1hga1j07l .item-img {
  width: 100%;
}
.cid-t1hga1j07l .item:focus,
.cid-t1hga1j07l span:focus {
  outline: none;
}
.cid-t1hga1j07l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t1hga1j07l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1hga1j07l .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t1hga1j07l .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1hga1j07l .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1hga1j07l .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t1hga1j07l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1hga1j07l .mbr-section-title {
  color: #232323;
}
.cid-t1hga1j07l .mbr-text,
.cid-t1hga1j07l .mbr-section-btn {
  text-align: left;
}
.cid-t1hga1j07l .item-title {
  text-align: left;
}
.cid-t1hga1j07l .item-subtitle {
  text-align: left;
}
.cid-stEeoJHVsN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-stEeoJHVsN h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-stEeoJHVsN .container {
    position: relative;
  }
  .cid-stEeoJHVsN .row {
    margin: 0;
  }
  .cid-stEeoJHVsN h2 {
    margin: 0;
  }
}
.cid-stEeoJHVsN .mbr-section-subtitle {
  color: #e9204f;
}
.cid-stEeoJHVsN .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-stEeoJHVsN h2 {
  color: #f5f7fa;
}
.cid-sTbhWhwjfw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTbhWhwjfw img,
.cid-sTbhWhwjfw .item-img {
  width: 100%;
}
.cid-sTbhWhwjfw .item:focus,
.cid-sTbhWhwjfw span:focus {
  outline: none;
}
.cid-sTbhWhwjfw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sTbhWhwjfw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sTbhWhwjfw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sTbhWhwjfw .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sTbhWhwjfw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sTbhWhwjfw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sTbhWhwjfw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sTbhWhwjfw .mbr-section-title {
  color: #232323;
}
.cid-sTbhWhwjfw .mbr-text,
.cid-sTbhWhwjfw .mbr-section-btn {
  text-align: left;
}
.cid-sTbhWhwjfw .item-title {
  text-align: left;
}
.cid-sTbhWhwjfw .item-subtitle {
  text-align: left;
}
.cid-sIa3gFouw3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #bae7e7;
}
@media (min-width: 992px) {
  .cid-sIa3gFouw3 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sIa3gFouw3 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sIa3gFouw3 .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-sHRcALrdW6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHRcALrdW6 img,
.cid-sHRcALrdW6 .item-img {
  width: 100%;
}
.cid-sHRcALrdW6 .item:focus,
.cid-sHRcALrdW6 span:focus {
  outline: none;
}
.cid-sHRcALrdW6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sHRcALrdW6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sHRcALrdW6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sHRcALrdW6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHRcALrdW6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sHRcALrdW6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sHRcALrdW6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sHRcALrdW6 .mbr-section-title {
  color: #232323;
}
.cid-sHRcALrdW6 .mbr-text,
.cid-sHRcALrdW6 .mbr-section-btn {
  text-align: left;
}
.cid-sHRcALrdW6 .item-title {
  text-align: left;
}
.cid-sHRcALrdW6 .item-subtitle {
  text-align: left;
}
.cid-stDY4vwJqf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stDY4vwJqf .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stDY4vwJqf .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stDY4vwJqf .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stDY4vwJqf .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stDY4vwJqf .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stDY4vwJqf .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stDY4vwJqf .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stDY4vwJqf .mbr-card-text {
  margin: 0;
}
.cid-stDY4vwJqf .mbr-card-text,
.cid-stDY4vwJqf .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEfxG7RUO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-stEfxG7RUO h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-stEfxG7RUO .container {
    position: relative;
  }
  .cid-stEfxG7RUO .row {
    margin: 0;
  }
  .cid-stEfxG7RUO h2 {
    margin: 0;
  }
}
.cid-stEfxG7RUO .mbr-section-subtitle {
  color: #e9204f;
}
.cid-stEfxG7RUO .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-stEfxG7RUO h2 {
  color: #f5f7fa;
}
.cid-stEfQjiam2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEfQjiam2 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEfQjiam2 .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEfQjiam2 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEfQjiam2 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEfQjiam2 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEfQjiam2 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEfQjiam2 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEfQjiam2 .mbr-card-text {
  margin: 0;
}
.cid-stEfQjiam2 .mbr-card-text,
.cid-stEfQjiam2 .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEg9vSsNe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEg9vSsNe .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEg9vSsNe .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEg9vSsNe .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEg9vSsNe .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEg9vSsNe .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEg9vSsNe .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEg9vSsNe .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEg9vSsNe .mbr-card-text {
  margin: 0;
}
.cid-stEg9vSsNe .mbr-card-text,
.cid-stEg9vSsNe .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEgp2Ncd0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-stEgp2Ncd0 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-stEgp2Ncd0 .container {
    position: relative;
  }
  .cid-stEgp2Ncd0 .row {
    margin: 0;
  }
  .cid-stEgp2Ncd0 h2 {
    margin: 0;
  }
}
.cid-stEgp2Ncd0 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-stEgp2Ncd0 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-stEgp2Ncd0 h2 {
  color: #f5f7fa;
}
.cid-stEgpMkDWs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEgpMkDWs .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEgpMkDWs .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEgpMkDWs .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEgpMkDWs .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEgpMkDWs .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEgpMkDWs .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEgpMkDWs .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEgpMkDWs .mbr-card-text {
  margin: 0;
}
.cid-stEgpMkDWs .mbr-card-text,
.cid-stEgpMkDWs .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEgEUxGKT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEgEUxGKT .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEgEUxGKT .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEgEUxGKT .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEgEUxGKT .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEgEUxGKT .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEgEUxGKT .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEgEUxGKT .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEgEUxGKT .mbr-card-text {
  margin: 0;
}
.cid-stEgEUxGKT .mbr-card-text,
.cid-stEgEUxGKT .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEgRwVKVb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEgRwVKVb .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEgRwVKVb .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEgRwVKVb .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEgRwVKVb .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEgRwVKVb .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEgRwVKVb .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEgRwVKVb .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEgRwVKVb .mbr-card-text {
  margin: 0;
}
.cid-stEgRwVKVb .mbr-card-text,
.cid-stEgRwVKVb .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEh4AGhxn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEh4AGhxn .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEh4AGhxn .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEh4AGhxn .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEh4AGhxn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEh4AGhxn .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEh4AGhxn .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEh4AGhxn .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEh4AGhxn .mbr-card-text {
  margin: 0;
}
.cid-stEh4AGhxn .mbr-card-text,
.cid-stEh4AGhxn .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEhgP0gne {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEhgP0gne .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEhgP0gne .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEhgP0gne .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEhgP0gne .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEhgP0gne .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEhgP0gne .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEhgP0gne .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEhgP0gne .mbr-card-text {
  margin: 0;
}
.cid-stEhgP0gne .mbr-card-text,
.cid-stEhgP0gne .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEhu9DB3x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEhu9DB3x .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEhu9DB3x .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEhu9DB3x .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEhu9DB3x .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEhu9DB3x .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEhu9DB3x .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEhu9DB3x .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEhu9DB3x .mbr-card-text {
  margin: 0;
}
.cid-stEhu9DB3x .mbr-card-text,
.cid-stEhu9DB3x .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEhFY0BKR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEhFY0BKR .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEhFY0BKR .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEhFY0BKR .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEhFY0BKR .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEhFY0BKR .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEhFY0BKR .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEhFY0BKR .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEhFY0BKR .mbr-card-text {
  margin: 0;
}
.cid-stEhFY0BKR .mbr-card-text,
.cid-stEhFY0BKR .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEhSed6Jo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stEhSed6Jo .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stEhSed6Jo .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-stEhSed6Jo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stEhSed6Jo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stEhSed6Jo .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-stEhSed6Jo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stEhSed6Jo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stEhSed6Jo .mbr-card-text {
  margin: 0;
}
.cid-stEhSed6Jo .mbr-card-text,
.cid-stEhSed6Jo .mbr-section-btn {
  color: #0a1c44;
}
.cid-stEkEFmHrs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-stEkEFmHrs h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-stEkEFmHrs .container {
    position: relative;
  }
  .cid-stEkEFmHrs .row {
    margin: 0;
  }
  .cid-stEkEFmHrs h2 {
    margin: 0;
  }
}
.cid-stEkEFmHrs .mbr-section-subtitle {
  color: #e9204f;
}
.cid-stEkEFmHrs .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-stEkEFmHrs h2 {
  color: #f5f7fa;
}
.cid-stGRE8j8O4 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGRE8j8O4 svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGRE8j8O4 #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGRE8j8O4 img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGRE8j8O4 img {
    width: 100%;
    left: 0;
  }
}
.cid-stGRE8j8O4 H1 {
  color: #0a1c44;
}
.cid-stGRE8j8O4 .mbr-text,
.cid-stGRE8j8O4 .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGSAo65dU {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGSAo65dU svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGSAo65dU #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGSAo65dU img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGSAo65dU img {
    width: 100%;
    left: 0;
  }
}
.cid-stGSAo65dU H1 {
  color: #0a1c44;
}
.cid-stGSAo65dU .mbr-text,
.cid-stGSAo65dU .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGSXWnAQC {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGSXWnAQC svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGSXWnAQC #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGSXWnAQC img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGSXWnAQC img {
    width: 100%;
    left: 0;
  }
}
.cid-stGSXWnAQC H1 {
  color: #0a1c44;
}
.cid-stGSXWnAQC .mbr-text,
.cid-stGSXWnAQC .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGToj0ozV {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGToj0ozV svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGToj0ozV #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGToj0ozV img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGToj0ozV img {
    width: 100%;
    left: 0;
  }
}
.cid-stGToj0ozV H1 {
  color: #0a1c44;
}
.cid-stGToj0ozV .mbr-text,
.cid-stGToj0ozV .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGTRP1qUb {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGTRP1qUb svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGTRP1qUb #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGTRP1qUb img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGTRP1qUb img {
    width: 100%;
    left: 0;
  }
}
.cid-stGTRP1qUb H1 {
  color: #0a1c44;
}
.cid-stGTRP1qUb .mbr-text,
.cid-stGTRP1qUb .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGVWXwlYG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGVWXwlYG svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGVWXwlYG #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGVWXwlYG img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGVWXwlYG img {
    width: 100%;
    left: 0;
  }
}
.cid-stGVWXwlYG H1 {
  color: #0a1c44;
}
.cid-stGVWXwlYG .mbr-text,
.cid-stGVWXwlYG .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGWIkBLu4 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGWIkBLu4 svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGWIkBLu4 #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGWIkBLu4 img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGWIkBLu4 img {
    width: 100%;
    left: 0;
  }
}
.cid-stGWIkBLu4 H1 {
  color: #0a1c44;
}
.cid-stGWIkBLu4 .mbr-text,
.cid-stGWIkBLu4 .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGXoTbmv0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-stGXoTbmv0 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-stGXoTbmv0 .container {
    position: relative;
  }
  .cid-stGXoTbmv0 .row {
    margin: 0;
  }
  .cid-stGXoTbmv0 h2 {
    margin: 0;
  }
}
.cid-stGXoTbmv0 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-stGXoTbmv0 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-stGXoTbmv0 h2 {
  color: #f5f7fa;
}
.cid-stGXufoLIJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGXufoLIJ svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGXufoLIJ #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGXufoLIJ img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGXufoLIJ img {
    width: 100%;
    left: 0;
  }
}
.cid-stGXufoLIJ H1 {
  color: #0a1c44;
}
.cid-stGXufoLIJ .mbr-text,
.cid-stGXufoLIJ .mbr-section-btn {
  color: #0a1c44;
}
.cid-stGY1qhcuJ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stGY1qhcuJ svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stGY1qhcuJ #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stGY1qhcuJ img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stGY1qhcuJ img {
    width: 100%;
    left: 0;
  }
}
.cid-stGY1qhcuJ H1 {
  color: #0a1c44;
}
.cid-stGY1qhcuJ .mbr-text,
.cid-stGY1qhcuJ .mbr-section-btn {
  color: #0a1c44;
}
.cid-stDCUrO6Ua {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-stDCUrO6Ua .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-stDCUrO6Ua .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-stDCUrO6Ua .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-stDCUrO6Ua .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-stDCUrO6Ua .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-stDCUrO6Ua .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-stDCUrO6Ua .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-stDCUrO6Ua .input-group-btn {
  padding-left: 0;
}
.cid-stDCUrO6Ua .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-stDCUrO6Ua .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-stDCUrO6Ua .mbr-text {
  color: #444;
}
.cid-stDCUrO6Ua h5 {
  margin-bottom: 0;
}
.cid-stDCUrO6Ua .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-stDCUrO6Ua .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stDCUrO6Ua .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-stDCUrO6Ua .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stDCUrO6Ua .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-stDCUrO6Ua .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-stDCUrO6Ua .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stDCUrO6Ua .social-list a:hover {
  opacity: 0.4;
}
.cid-stDCUrO6Ua .media-container-row > div {
  padding: 0px;
}
.cid-stDCUrO6Ua .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-stDCUrO6Ua .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-stDCUrO6Ua .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stDCUrO6Ua .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stDCUrO6Ua .social-list,
  .cid-stDCUrO6Ua .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-stDCUrO6Ua h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-stDCUrO6Ua .form-group {
    max-width: 180px;
  }
}
.cid-stDCUrO6Ua .links span {
  color: #9e9e9e;
}
.cid-stDCUrO6Ua .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-stDCUrO6Ua .logo-title {
  text-align: center;
}
.cid-stDCUrO6Ua .logo-sub-title i {
  color: #9e9e9e;
}
.cid-stDCUrO6Ua .logo-title,
.cid-stDCUrO6Ua .logo {
  color: #f5f7fa;
}
.cid-stDCUsG9lS {
  background-color: #669b9b;
}
.cid-stDCUsG9lS svg {
  position: absolute;
  top: 0;
}
.cid-stDCUsG9lS .svg-1 {
  fill: #008b8b;
}
.cid-stDCUsG9lS .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-stDCUsG9lS {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-stDCUsG9lS {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-stDCUsG9lS .mbr-text {
  color: #b1bee0;
}
.cid-stDCUsG9lS a {
  text-decoration: underline;
}
.cid-stDCUsG9lS a,
.cid-stDCUsG9lS a:hover {
  font-weight: 400 !important;
}
.cid-stDCUsG9lS .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-stH1XvnS3R .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-stH1XvnS3R .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-stH1XvnS3R a {
  font-style: normal;
}
.cid-stH1XvnS3R .show {
  overflow: visible;
}
.cid-stH1XvnS3R .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-stH1XvnS3R .dropdown-item:active {
  background-color: transparent;
}
.cid-stH1XvnS3R .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-stH1XvnS3R .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-stH1XvnS3R .nav-item:focus,
.cid-stH1XvnS3R .nav-link:focus {
  outline: none;
}
.cid-stH1XvnS3R .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stH1XvnS3R .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-stH1XvnS3R .menu-logo {
  margin-right: auto;
}
.cid-stH1XvnS3R .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stH1XvnS3R .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stH1XvnS3R .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stH1XvnS3R .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stH1XvnS3R .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-stH1XvnS3R .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stH1XvnS3R .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-stH1XvnS3R .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-stH1XvnS3R .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-stH1XvnS3R .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stH1XvnS3R .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stH1XvnS3R .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-stH1XvnS3R .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-stH1XvnS3R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-stH1XvnS3R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stH1XvnS3R .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stH1XvnS3R .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stH1XvnS3R .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-stH1XvnS3R .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-stH1XvnS3R .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-stH1XvnS3R .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stH1XvnS3R .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stH1XvnS3R .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-stH1XvnS3R .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stH1XvnS3R button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-stH1XvnS3R button.navbar-toggler:focus {
  outline: none;
}
.cid-stH1XvnS3R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stH1XvnS3R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stH1XvnS3R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stH1XvnS3R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stH1XvnS3R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stH1XvnS3R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stH1XvnS3R nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stH1XvnS3R nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stH1XvnS3R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-stH1XvnS3R .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-stH1XvnS3R .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-stH1XvnS3R .collapsed .btn {
  display: -webkit-flex;
}
.cid-stH1XvnS3R .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stH1XvnS3R .collapsed .navbar-collapse.collapsing,
.cid-stH1XvnS3R .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-stH1XvnS3R .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stH1XvnS3R .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stH1XvnS3R .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stH1XvnS3R .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stH1XvnS3R .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-stH1XvnS3R .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-stH1XvnS3R .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stH1XvnS3R .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-stH1XvnS3R .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stH1XvnS3R .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stH1XvnS3R .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-stH1XvnS3R .collapsed button.navbar-toggler {
  display: block;
}
.cid-stH1XvnS3R .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-stH1XvnS3R .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-stH1XvnS3R .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-stH1XvnS3R .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stH1XvnS3R .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stH1XvnS3R .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;
}
@media (max-width: 991px) {
  .cid-stH1XvnS3R.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-stH1XvnS3R img {
    height: 3.8rem !important;
  }
  .cid-stH1XvnS3R .btn {
    display: -webkit-flex;
  }
  .cid-stH1XvnS3R button.navbar-toggler {
    display: block;
  }
  .cid-stH1XvnS3R .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-stH1XvnS3R .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-stH1XvnS3R .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stH1XvnS3R .navbar-collapse.collapsing,
  .cid-stH1XvnS3R .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-stH1XvnS3R .navbar-collapse.collapsing .navbar-nav,
  .cid-stH1XvnS3R .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stH1XvnS3R .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stH1XvnS3R .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stH1XvnS3R .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-stH1XvnS3R .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-stH1XvnS3R .navbar-collapse.collapsing .navbar-buttons,
  .cid-stH1XvnS3R .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-stH1XvnS3R .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stH1XvnS3R .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stH1XvnS3R .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-stH1XvnS3R .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stH1XvnS3R .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stH1XvnS3R .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;
  }
}
@media (max-width: 767px) {
  .cid-stH1XvnS3R .nav-link {
    justify-content: start !important;
  }
  .cid-stH1XvnS3R .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-stH1XvnS3R .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-stH1XvnS3R .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-stH1XvnS3R .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-stH1XvnS3R .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-stH1XvnS3R .nav-link:hover,
.cid-stH1XvnS3R .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-stH1XvnS3R .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-stH1XvnS3R .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-stH1XwledK {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-stH1XwledK h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-stH1XwledK .container {
    position: relative;
  }
  .cid-stH1XwledK .row {
    margin: 0;
  }
  .cid-stH1XwledK h2 {
    margin: 0;
  }
}
.cid-stH1XwledK .mbr-section-subtitle {
  color: #e9204f;
}
.cid-stH1XwledK .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-stH1XwledK h2 {
  color: #0a1c44;
}
.cid-stH1XwledK H3 {
  color: #0a1c44;
}
.cid-stJXF9ap1B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
.cid-stNTf0nv7U {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stNTf0nv7U svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stNTf0nv7U #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stNTf0nv7U img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stNTf0nv7U img {
    width: 100%;
    left: 0;
  }
}
.cid-stNTf0nv7U H1 {
  color: #0a1c44;
}
.cid-stNTf0nv7U .mbr-text,
.cid-stNTf0nv7U .mbr-section-btn {
  color: #0a1c44;
}
.cid-stNTfIFinQ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stNTfIFinQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stNTfIFinQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stNTfIFinQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stNTfIFinQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stNTfIFinQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNTfIFinQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stNTfIFinQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stNTfIFinQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stNTfIFinQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNTfIFinQ ul {
  font-size: 0;
}
.cid-stNTfIFinQ .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stNTfIFinQ .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stNTfIFinQ .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stNTJUHgBp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stNTJUHgBp svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stNTJUHgBp #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stNTJUHgBp img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stNTJUHgBp img {
    width: 100%;
    left: 0;
  }
}
.cid-stNTJUHgBp H1 {
  color: #0a1c44;
}
.cid-stNTJUHgBp .mbr-text,
.cid-stNTJUHgBp .mbr-section-btn {
  color: #0a1c44;
}
.cid-stNTKC3Fav {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stNTKC3Fav .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stNTKC3Fav .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stNTKC3Fav .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stNTKC3Fav .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stNTKC3Fav .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNTKC3Fav .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stNTKC3Fav .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stNTKC3Fav .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stNTKC3Fav .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNTKC3Fav ul {
  font-size: 0;
}
.cid-stNTKC3Fav .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stNTKC3Fav .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stNTKC3Fav .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJV6x2rKI {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJV6x2rKI svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJV6x2rKI #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJV6x2rKI img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJV6x2rKI img {
    width: 100%;
    left: 0;
  }
}
.cid-stJV6x2rKI H1 {
  color: #0a1c44;
}
.cid-stJV6x2rKI .mbr-text,
.cid-stJV6x2rKI .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJV7zdQQD {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJV7zdQQD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJV7zdQQD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJV7zdQQD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJV7zdQQD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJV7zdQQD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJV7zdQQD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJV7zdQQD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJV7zdQQD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJV7zdQQD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJV7zdQQD ul {
  font-size: 0;
}
.cid-stJV7zdQQD .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJV7zdQQD .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJV7zdQQD .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJTBaCnVF {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJTBaCnVF svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJTBaCnVF #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJTBaCnVF img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJTBaCnVF img {
    width: 100%;
    left: 0;
  }
}
.cid-stJTBaCnVF H1 {
  color: #0a1c44;
}
.cid-stJTBaCnVF .mbr-text,
.cid-stJTBaCnVF .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJTBSXPgU {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJTBSXPgU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJTBSXPgU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJTBSXPgU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJTBSXPgU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJTBSXPgU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJTBSXPgU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJTBSXPgU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJTBSXPgU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJTBSXPgU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJTBSXPgU ul {
  font-size: 0;
}
.cid-stJTBSXPgU .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJTBSXPgU .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJTBSXPgU .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stOn13enlv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
.cid-stNVwYxKWI {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stNVwYxKWI svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stNVwYxKWI #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stNVwYxKWI img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stNVwYxKWI img {
    width: 100%;
    left: 0;
  }
}
.cid-stNVwYxKWI H1 {
  color: #0a1c44;
}
.cid-stNVwYxKWI .mbr-text,
.cid-stNVwYxKWI .mbr-section-btn {
  color: #0a1c44;
}
.cid-stNVxJ1XbG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stNVxJ1XbG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stNVxJ1XbG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stNVxJ1XbG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stNVxJ1XbG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stNVxJ1XbG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNVxJ1XbG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stNVxJ1XbG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stNVxJ1XbG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stNVxJ1XbG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNVxJ1XbG ul {
  font-size: 0;
}
.cid-stNVxJ1XbG .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stNVxJ1XbG .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stNVxJ1XbG .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJShqy63Q {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJShqy63Q svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJShqy63Q #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJShqy63Q img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJShqy63Q img {
    width: 100%;
    left: 0;
  }
}
.cid-stJShqy63Q H1 {
  color: #0a1c44;
}
.cid-stJShqy63Q .mbr-text,
.cid-stJShqy63Q .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJSBuEnHO {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJSBuEnHO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJSBuEnHO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJSBuEnHO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJSBuEnHO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJSBuEnHO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJSBuEnHO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJSBuEnHO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJSBuEnHO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJSBuEnHO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJSBuEnHO ul {
  font-size: 0;
}
.cid-stJSBuEnHO .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJSBuEnHO .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJSBuEnHO .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stOnicl9uC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
.cid-stNYy0rfwR {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stNYy0rfwR svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stNYy0rfwR #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stNYy0rfwR img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stNYy0rfwR img {
    width: 100%;
    left: 0;
  }
}
.cid-stNYy0rfwR H1 {
  color: #0a1c44;
}
.cid-stNYy0rfwR .mbr-text,
.cid-stNYy0rfwR .mbr-section-btn {
  color: #0a1c44;
}
.cid-stNYyNk4Cr {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stNYyNk4Cr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stNYyNk4Cr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stNYyNk4Cr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stNYyNk4Cr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stNYyNk4Cr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNYyNk4Cr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stNYyNk4Cr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stNYyNk4Cr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stNYyNk4Cr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNYyNk4Cr ul {
  font-size: 0;
}
.cid-stNYyNk4Cr .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stNYyNk4Cr .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stNYyNk4Cr .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJKUFf946 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJKUFf946 svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJKUFf946 #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJKUFf946 img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJKUFf946 img {
    width: 100%;
    left: 0;
  }
}
.cid-stJKUFf946 H1 {
  color: #0a1c44;
}
.cid-stJKUFf946 .mbr-text,
.cid-stJKUFf946 .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJKWcDhRI {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJKWcDhRI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJKWcDhRI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJKWcDhRI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJKWcDhRI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJKWcDhRI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJKWcDhRI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJKWcDhRI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJKWcDhRI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJKWcDhRI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJKWcDhRI ul {
  font-size: 0;
}
.cid-stJKWcDhRI .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJKWcDhRI .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJKWcDhRI .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJMBHdhCU {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJMBHdhCU svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJMBHdhCU #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJMBHdhCU img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJMBHdhCU img {
    width: 100%;
    left: 0;
  }
}
.cid-stJMBHdhCU H1 {
  color: #0a1c44;
}
.cid-stJMBHdhCU .mbr-text,
.cid-stJMBHdhCU .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJN1L4UZM {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJN1L4UZM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJN1L4UZM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJN1L4UZM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJN1L4UZM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJN1L4UZM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJN1L4UZM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJN1L4UZM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJN1L4UZM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJN1L4UZM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJN1L4UZM ul {
  font-size: 0;
}
.cid-stJN1L4UZM .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJN1L4UZM .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJN1L4UZM .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJPsJY6Da {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJPsJY6Da svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJPsJY6Da #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJPsJY6Da img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJPsJY6Da img {
    width: 100%;
    left: 0;
  }
}
.cid-stJPsJY6Da H1 {
  color: #0a1c44;
}
.cid-stJPsJY6Da .mbr-text,
.cid-stJPsJY6Da .mbr-section-btn {
  color: #0a1c44;
}
.cid-stOnqtd7PL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
.cid-stH1XKbSar {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stH1XKbSar svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stH1XKbSar #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stH1XKbSar img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stH1XKbSar img {
    width: 100%;
    left: 0;
  }
}
.cid-stH1XKbSar H1 {
  color: #0a1c44;
}
.cid-stH1XKbSar .mbr-text,
.cid-stH1XKbSar .mbr-section-btn {
  color: #0a1c44;
}
.cid-stHaNYkQsB {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stHaNYkQsB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stHaNYkQsB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stHaNYkQsB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stHaNYkQsB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stHaNYkQsB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stHaNYkQsB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stHaNYkQsB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stHaNYkQsB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stHaNYkQsB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stHaNYkQsB ul {
  font-size: 0;
}
.cid-stHaNYkQsB .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stHaNYkQsB .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stHaNYkQsB .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stHBKcZvGv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stHBKcZvGv svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stHBKcZvGv #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stHBKcZvGv img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stHBKcZvGv img {
    width: 100%;
    left: 0;
  }
}
.cid-stHBKcZvGv H1 {
  color: #0a1c44;
}
.cid-stHBKcZvGv .mbr-text,
.cid-stHBKcZvGv .mbr-section-btn {
  color: #0a1c44;
}
.cid-stHPwhkOfE {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stHPwhkOfE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stHPwhkOfE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stHPwhkOfE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stHPwhkOfE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stHPwhkOfE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stHPwhkOfE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stHPwhkOfE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stHPwhkOfE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stHPwhkOfE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stHPwhkOfE ul {
  font-size: 0;
}
.cid-stHPwhkOfE .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stHPwhkOfE .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stHPwhkOfE .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stNZVSknVW {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stNZVSknVW svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stNZVSknVW #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stNZVSknVW img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stNZVSknVW img {
    width: 100%;
    left: 0;
  }
}
.cid-stNZVSknVW H1 {
  color: #0a1c44;
}
.cid-stNZVSknVW .mbr-text,
.cid-stNZVSknVW .mbr-section-btn {
  color: #0a1c44;
}
.cid-stNZWzbg4j {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stNZWzbg4j .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stNZWzbg4j .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stNZWzbg4j .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stNZWzbg4j .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stNZWzbg4j .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNZWzbg4j .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stNZWzbg4j .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stNZWzbg4j .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stNZWzbg4j .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stNZWzbg4j ul {
  font-size: 0;
}
.cid-stNZWzbg4j .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stNZWzbg4j .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stNZWzbg4j .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stOnxxde4Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
.cid-stIxw243Ck {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stIxw243Ck svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stIxw243Ck #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stIxw243Ck img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stIxw243Ck img {
    width: 100%;
    left: 0;
  }
}
.cid-stIxw243Ck H1 {
  color: #0a1c44;
}
.cid-stIxw243Ck .mbr-text,
.cid-stIxw243Ck .mbr-section-btn {
  color: #0a1c44;
}
.cid-stIyj8mVEe {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stIyj8mVEe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stIyj8mVEe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stIyj8mVEe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stIyj8mVEe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stIyj8mVEe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stIyj8mVEe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stIyj8mVEe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stIyj8mVEe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stIyj8mVEe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stIyj8mVEe ul {
  font-size: 0;
}
.cid-stIyj8mVEe .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stIyj8mVEe .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stIyj8mVEe .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stICXxbX0L {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stICXxbX0L svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stICXxbX0L #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stICXxbX0L img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stICXxbX0L img {
    width: 100%;
    left: 0;
  }
}
.cid-stICXxbX0L H1 {
  color: #0a1c44;
}
.cid-stICXxbX0L .mbr-text,
.cid-stICXxbX0L .mbr-section-btn {
  color: #0a1c44;
}
.cid-stIDO0ryof {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stIDO0ryof .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stIDO0ryof .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stIDO0ryof .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stIDO0ryof .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stIDO0ryof .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stIDO0ryof .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stIDO0ryof .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stIDO0ryof .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stIDO0ryof .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stIDO0ryof ul {
  font-size: 0;
}
.cid-stIDO0ryof .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stIDO0ryof .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stIDO0ryof .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJATgU4Dq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJATgU4Dq svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJATgU4Dq #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJATgU4Dq img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJATgU4Dq img {
    width: 100%;
    left: 0;
  }
}
.cid-stJATgU4Dq H1 {
  color: #0a1c44;
}
.cid-stJATgU4Dq .mbr-text,
.cid-stJATgU4Dq .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJBODP29S {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJBODP29S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJBODP29S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJBODP29S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJBODP29S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJBODP29S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJBODP29S .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJBODP29S .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJBODP29S .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJBODP29S .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJBODP29S ul {
  font-size: 0;
}
.cid-stJBODP29S .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJBODP29S .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJBODP29S .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJCI1b6vt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJCI1b6vt svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJCI1b6vt #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJCI1b6vt img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJCI1b6vt img {
    width: 100%;
    left: 0;
  }
}
.cid-stJCI1b6vt H1 {
  color: #0a1c44;
}
.cid-stJCI1b6vt .mbr-text,
.cid-stJCI1b6vt .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJDIeaPqc {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJDIeaPqc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJDIeaPqc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJDIeaPqc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJDIeaPqc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJDIeaPqc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJDIeaPqc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJDIeaPqc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJDIeaPqc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJDIeaPqc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJDIeaPqc ul {
  font-size: 0;
}
.cid-stJDIeaPqc .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJDIeaPqc .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJDIeaPqc .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stOnF5vGko {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
.cid-stJEG6y9Fd {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJEG6y9Fd svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJEG6y9Fd #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJEG6y9Fd img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJEG6y9Fd img {
    width: 100%;
    left: 0;
  }
}
.cid-stJEG6y9Fd H1 {
  color: #0a1c44;
}
.cid-stJEG6y9Fd .mbr-text,
.cid-stJEG6y9Fd .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJFloeJWk {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJFloeJWk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJFloeJWk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJFloeJWk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJFloeJWk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJFloeJWk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJFloeJWk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJFloeJWk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJFloeJWk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJFloeJWk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJFloeJWk ul {
  font-size: 0;
}
.cid-stJFloeJWk .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJFloeJWk .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJFloeJWk .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stJFERsfkm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-stJFERsfkm svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-stJFERsfkm #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-stJFERsfkm img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-stJFERsfkm img {
    width: 100%;
    left: 0;
  }
}
.cid-stJFERsfkm H1 {
  color: #0a1c44;
}
.cid-stJFERsfkm .mbr-text,
.cid-stJFERsfkm .mbr-section-btn {
  color: #0a1c44;
}
.cid-stJGmc5gt5 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stJGmc5gt5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stJGmc5gt5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stJGmc5gt5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stJGmc5gt5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stJGmc5gt5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJGmc5gt5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-stJGmc5gt5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-stJGmc5gt5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-stJGmc5gt5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-stJGmc5gt5 ul {
  font-size: 0;
}
.cid-stJGmc5gt5 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-stJGmc5gt5 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-stJGmc5gt5 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-stH1XKHzdU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-stH1XKHzdU .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-stH1XKHzdU .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-stH1XKHzdU .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-stH1XKHzdU .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-stH1XKHzdU .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-stH1XKHzdU .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-stH1XKHzdU .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-stH1XKHzdU .input-group-btn {
  padding-left: 0;
}
.cid-stH1XKHzdU .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-stH1XKHzdU .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-stH1XKHzdU .mbr-text {
  color: #444;
}
.cid-stH1XKHzdU h5 {
  margin-bottom: 0;
}
.cid-stH1XKHzdU .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-stH1XKHzdU .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stH1XKHzdU .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-stH1XKHzdU .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stH1XKHzdU .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-stH1XKHzdU .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-stH1XKHzdU .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stH1XKHzdU .social-list a:hover {
  opacity: 0.4;
}
.cid-stH1XKHzdU .media-container-row > div {
  padding: 0px;
}
.cid-stH1XKHzdU .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-stH1XKHzdU .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-stH1XKHzdU .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stH1XKHzdU .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stH1XKHzdU .social-list,
  .cid-stH1XKHzdU .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-stH1XKHzdU h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-stH1XKHzdU .form-group {
    max-width: 180px;
  }
}
.cid-stH1XKHzdU .links span {
  color: #9e9e9e;
}
.cid-stH1XKHzdU .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-stH1XKHzdU .logo-title {
  text-align: center;
}
.cid-stH1XKHzdU .logo-sub-title i {
  color: #9e9e9e;
}
.cid-stH1XKHzdU .logo-title,
.cid-stH1XKHzdU .logo {
  color: #f5f7fa;
}
.cid-stH1XLCdKf {
  background-color: #669b9b;
}
.cid-stH1XLCdKf svg {
  position: absolute;
  top: 0;
}
.cid-stH1XLCdKf .svg-1 {
  fill: #008b8b;
}
.cid-stH1XLCdKf .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-stH1XLCdKf {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-stH1XLCdKf {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-stH1XLCdKf .mbr-text {
  color: #b1bee0;
}
.cid-stH1XLCdKf a {
  text-decoration: underline;
}
.cid-stH1XLCdKf a,
.cid-stH1XLCdKf a:hover {
  font-weight: 400 !important;
}
.cid-stH1XLCdKf .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sw8Hq0XVDa .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sw8Hq0XVDa .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-sw8Hq0XVDa a {
  font-style: normal;
}
.cid-sw8Hq0XVDa .show {
  overflow: visible;
}
.cid-sw8Hq0XVDa .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sw8Hq0XVDa .dropdown-item:active {
  background-color: transparent;
}
.cid-sw8Hq0XVDa .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sw8Hq0XVDa .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sw8Hq0XVDa .nav-item:focus,
.cid-sw8Hq0XVDa .nav-link:focus {
  outline: none;
}
.cid-sw8Hq0XVDa .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sw8Hq0XVDa .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sw8Hq0XVDa .menu-logo {
  margin-right: auto;
}
.cid-sw8Hq0XVDa .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sw8Hq0XVDa .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sw8Hq0XVDa .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sw8Hq0XVDa .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sw8Hq0XVDa .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sw8Hq0XVDa .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sw8Hq0XVDa .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sw8Hq0XVDa .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sw8Hq0XVDa .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sw8Hq0XVDa .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sw8Hq0XVDa .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sw8Hq0XVDa .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sw8Hq0XVDa .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sw8Hq0XVDa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sw8Hq0XVDa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sw8Hq0XVDa .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sw8Hq0XVDa .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sw8Hq0XVDa .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sw8Hq0XVDa .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sw8Hq0XVDa .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sw8Hq0XVDa .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sw8Hq0XVDa .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sw8Hq0XVDa .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sw8Hq0XVDa .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sw8Hq0XVDa button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sw8Hq0XVDa button.navbar-toggler:focus {
  outline: none;
}
.cid-sw8Hq0XVDa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sw8Hq0XVDa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sw8Hq0XVDa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sw8Hq0XVDa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sw8Hq0XVDa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sw8Hq0XVDa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sw8Hq0XVDa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sw8Hq0XVDa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sw8Hq0XVDa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sw8Hq0XVDa .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sw8Hq0XVDa .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sw8Hq0XVDa .collapsed .btn {
  display: -webkit-flex;
}
.cid-sw8Hq0XVDa .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.collapsing,
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sw8Hq0XVDa .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sw8Hq0XVDa .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sw8Hq0XVDa .collapsed button.navbar-toggler {
  display: block;
}
.cid-sw8Hq0XVDa .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sw8Hq0XVDa .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sw8Hq0XVDa .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-sw8Hq0XVDa .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sw8Hq0XVDa .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sw8Hq0XVDa .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;
}
@media (max-width: 991px) {
  .cid-sw8Hq0XVDa.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sw8Hq0XVDa img {
    height: 3.8rem !important;
  }
  .cid-sw8Hq0XVDa .btn {
    display: -webkit-flex;
  }
  .cid-sw8Hq0XVDa button.navbar-toggler {
    display: block;
  }
  .cid-sw8Hq0XVDa .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sw8Hq0XVDa .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sw8Hq0XVDa .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sw8Hq0XVDa .navbar-collapse.collapsing,
  .cid-sw8Hq0XVDa .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sw8Hq0XVDa .navbar-collapse.collapsing .navbar-nav,
  .cid-sw8Hq0XVDa .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sw8Hq0XVDa .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sw8Hq0XVDa .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sw8Hq0XVDa .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sw8Hq0XVDa .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sw8Hq0XVDa .navbar-collapse.collapsing .navbar-buttons,
  .cid-sw8Hq0XVDa .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sw8Hq0XVDa .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sw8Hq0XVDa .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sw8Hq0XVDa .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-sw8Hq0XVDa .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sw8Hq0XVDa .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sw8Hq0XVDa .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;
  }
}
@media (max-width: 767px) {
  .cid-sw8Hq0XVDa .nav-link {
    justify-content: start !important;
  }
  .cid-sw8Hq0XVDa .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sw8Hq0XVDa .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sw8Hq0XVDa .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sw8Hq0XVDa .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sw8Hq0XVDa .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sw8Hq0XVDa .nav-link:hover,
.cid-sw8Hq0XVDa .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-sw8Hq0XVDa .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sw8Hq0XVDa .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sw8Hq1ZPbO {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-sw8Hq1ZPbO h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sw8Hq1ZPbO .container {
    position: relative;
  }
  .cid-sw8Hq1ZPbO .row {
    margin: 0;
  }
  .cid-sw8Hq1ZPbO h2 {
    margin: 0;
  }
}
.cid-sw8Hq1ZPbO .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sw8Hq1ZPbO .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-sw8Hq1ZPbO h2 {
  color: #0a1c44;
}
.cid-sw8Hq2xMcw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sw8Hq2xMcw .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sw8Hq2xMcw .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-sw8Hq2xMcw .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sw8Hq2xMcw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sw8Hq2xMcw .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-sw8Hq2xMcw .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sw8Hq2xMcw .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sw8Hq2xMcw .mbr-card-text {
  margin: 0;
}
.cid-sw8Hq2xMcw .mbr-card-text,
.cid-sw8Hq2xMcw .mbr-section-btn {
  color: #0a1c44;
}
.cid-sGsU2w7ux3 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #7eb9b9;
}
.cid-sGsU2w7ux3 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGsU2w7ux3 .card .card-wrapper {
  background: #008b8b;
  height: 1%;
}
.cid-sGsU2w7ux3 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sGsU2w7ux3 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sGsU2w7ux3 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-sGsU2w7ux3 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sGsU2w7ux3 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sGsU2w7ux3 .mbr-card-text {
  margin: 0;
}
.cid-sw8Hq3qxsd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-sw8Hq3qxsd .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sw8Hq3qxsd .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sw8Hq3qxsd .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sw8Hq3qxsd .card-title,
.cid-sw8Hq3qxsd .card-img {
  color: #f5f7fa;
}
.cid-sw8Hq3qxsd .mbr-text,
.cid-sw8Hq3qxsd .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sw8Hq3Lflc {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-sw8Hq3Lflc .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sw8Hq3Lflc .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sw8Hq3Lflc .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sw8Hq3Lflc .price-tage > p {
  letter-spacing: 2px;
}
.cid-sw8Hq3Lflc .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sw8Hq3Lflc .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sw8Hq3Lflc .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sw8Hq3Lflc .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sw8Hq3Lflc .costs {
  color: #ffffff;
}
.cid-sw8Hq3Lflc .costs-title {
  color: #ffffff;
}
.cid-sw8Hq3Lflc .table-content,
.cid-sw8Hq3Lflc .mbr-section-btn {
  color: #0a1c44;
}
.cid-sw8Hq4hoAb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #79afe1;
}
.cid-sw8Hq4hoAb .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sw8Hq4hoAb .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sw8Hq4hoAb .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sw8Hq4hoAb .price-tage > p {
  letter-spacing: 2px;
}
.cid-sw8Hq4hoAb .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sw8Hq4hoAb .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sw8Hq4hoAb .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sw8Hq4hoAb .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sw8Hq4hoAb .costs {
  color: #ffffff;
}
.cid-sw8Hq4hoAb .costs-title {
  color: #ffffff;
}
.cid-sw8Hq4hoAb .table-content,
.cid-sw8Hq4hoAb .mbr-section-btn {
  color: #0a1c44;
}
.cid-sw8Hq4OQJb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2973b8;
}
.cid-sw8Hq4OQJb .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sw8Hq4OQJb .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sw8Hq4OQJb .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sw8Hq4OQJb .card-title,
.cid-sw8Hq4OQJb .card-img {
  color: #f5f7fa;
}
.cid-sw8Hq4OQJb .mbr-text,
.cid-sw8Hq4OQJb .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sw8Hq58kTp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-sw8Hq58kTp .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sw8Hq58kTp .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sw8Hq58kTp .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sw8Hq58kTp .price-tage > p {
  letter-spacing: 2px;
}
.cid-sw8Hq58kTp .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sw8Hq58kTp .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sw8Hq58kTp .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sw8Hq58kTp .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sw8Hq58kTp .costs {
  color: #ffffff;
}
.cid-sw8Hq58kTp .costs-title {
  color: #ffffff;
}
.cid-sw8Hq58kTp .table-content,
.cid-sw8Hq58kTp .mbr-section-btn {
  color: #0a1c44;
}
.cid-sw8Hq5Ktgc {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-sw8Hq5Ktgc .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-sw8Hq5Ktgc .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sw8Hq5Ktgc .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sw8Hq5Ktgc .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-sw8Hq5Ktgc .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-sw8Hq5Ktgc .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sw8Hq5Ktgc .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-sw8Hq5Ktgc .input-group-btn {
  padding-left: 0;
}
.cid-sw8Hq5Ktgc .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sw8Hq5Ktgc .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sw8Hq5Ktgc .mbr-text {
  color: #444;
}
.cid-sw8Hq5Ktgc h5 {
  margin-bottom: 0;
}
.cid-sw8Hq5Ktgc .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sw8Hq5Ktgc .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sw8Hq5Ktgc .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sw8Hq5Ktgc .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sw8Hq5Ktgc .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sw8Hq5Ktgc .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sw8Hq5Ktgc .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sw8Hq5Ktgc .social-list a:hover {
  opacity: 0.4;
}
.cid-sw8Hq5Ktgc .media-container-row > div {
  padding: 0px;
}
.cid-sw8Hq5Ktgc .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-sw8Hq5Ktgc .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-sw8Hq5Ktgc .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sw8Hq5Ktgc .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sw8Hq5Ktgc .social-list,
  .cid-sw8Hq5Ktgc .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sw8Hq5Ktgc h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sw8Hq5Ktgc .form-group {
    max-width: 180px;
  }
}
.cid-sw8Hq5Ktgc .links span {
  color: #9e9e9e;
}
.cid-sw8Hq5Ktgc .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-sw8Hq5Ktgc .logo-title {
  text-align: center;
}
.cid-sw8Hq5Ktgc .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sw8Hq5Ktgc .logo-title,
.cid-sw8Hq5Ktgc .logo {
  color: #f5f7fa;
}
.cid-sw8Hq6AjJc {
  background-color: #669b9b;
}
.cid-sw8Hq6AjJc svg {
  position: absolute;
  top: 0;
}
.cid-sw8Hq6AjJc .svg-1 {
  fill: #008b8b;
}
.cid-sw8Hq6AjJc .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-sw8Hq6AjJc {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-sw8Hq6AjJc {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-sw8Hq6AjJc .mbr-text {
  color: #b1bee0;
}
.cid-sw8Hq6AjJc a {
  text-decoration: underline;
}
.cid-sw8Hq6AjJc a,
.cid-sw8Hq6AjJc a:hover {
  font-weight: 400 !important;
}
.cid-sw8Hq6AjJc .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sw8KftO1pn .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sw8KftO1pn .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-sw8KftO1pn a {
  font-style: normal;
}
.cid-sw8KftO1pn .show {
  overflow: visible;
}
.cid-sw8KftO1pn .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sw8KftO1pn .dropdown-item:active {
  background-color: transparent;
}
.cid-sw8KftO1pn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sw8KftO1pn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sw8KftO1pn .nav-item:focus,
.cid-sw8KftO1pn .nav-link:focus {
  outline: none;
}
.cid-sw8KftO1pn .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sw8KftO1pn .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sw8KftO1pn .menu-logo {
  margin-right: auto;
}
.cid-sw8KftO1pn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sw8KftO1pn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sw8KftO1pn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sw8KftO1pn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sw8KftO1pn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sw8KftO1pn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sw8KftO1pn .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sw8KftO1pn .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sw8KftO1pn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sw8KftO1pn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sw8KftO1pn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sw8KftO1pn .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sw8KftO1pn .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sw8KftO1pn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sw8KftO1pn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sw8KftO1pn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sw8KftO1pn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sw8KftO1pn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sw8KftO1pn .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sw8KftO1pn .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sw8KftO1pn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sw8KftO1pn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sw8KftO1pn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sw8KftO1pn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sw8KftO1pn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sw8KftO1pn button.navbar-toggler:focus {
  outline: none;
}
.cid-sw8KftO1pn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sw8KftO1pn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sw8KftO1pn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sw8KftO1pn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sw8KftO1pn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sw8KftO1pn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sw8KftO1pn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sw8KftO1pn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sw8KftO1pn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sw8KftO1pn .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sw8KftO1pn .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sw8KftO1pn .collapsed .btn {
  display: -webkit-flex;
}
.cid-sw8KftO1pn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sw8KftO1pn .collapsed .navbar-collapse.collapsing,
.cid-sw8KftO1pn .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sw8KftO1pn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sw8KftO1pn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sw8KftO1pn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sw8KftO1pn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sw8KftO1pn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sw8KftO1pn .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sw8KftO1pn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sw8KftO1pn .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sw8KftO1pn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sw8KftO1pn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sw8KftO1pn .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sw8KftO1pn .collapsed button.navbar-toggler {
  display: block;
}
.cid-sw8KftO1pn .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sw8KftO1pn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sw8KftO1pn .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-sw8KftO1pn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sw8KftO1pn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sw8KftO1pn .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;
}
@media (max-width: 991px) {
  .cid-sw8KftO1pn.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sw8KftO1pn img {
    height: 3.8rem !important;
  }
  .cid-sw8KftO1pn .btn {
    display: -webkit-flex;
  }
  .cid-sw8KftO1pn button.navbar-toggler {
    display: block;
  }
  .cid-sw8KftO1pn .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sw8KftO1pn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sw8KftO1pn .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sw8KftO1pn .navbar-collapse.collapsing,
  .cid-sw8KftO1pn .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sw8KftO1pn .navbar-collapse.collapsing .navbar-nav,
  .cid-sw8KftO1pn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sw8KftO1pn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sw8KftO1pn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sw8KftO1pn .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sw8KftO1pn .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sw8KftO1pn .navbar-collapse.collapsing .navbar-buttons,
  .cid-sw8KftO1pn .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sw8KftO1pn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sw8KftO1pn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sw8KftO1pn .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-sw8KftO1pn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sw8KftO1pn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sw8KftO1pn .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;
  }
}
@media (max-width: 767px) {
  .cid-sw8KftO1pn .nav-link {
    justify-content: start !important;
  }
  .cid-sw8KftO1pn .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sw8KftO1pn .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sw8KftO1pn .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sw8KftO1pn .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sw8KftO1pn .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sw8KftO1pn .nav-link:hover,
.cid-sw8KftO1pn .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-sw8KftO1pn .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sw8KftO1pn .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sw8Kfum23w {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-sw8Kfum23w h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sw8Kfum23w .container {
    position: relative;
  }
  .cid-sw8Kfum23w .row {
    margin: 0;
  }
  .cid-sw8Kfum23w h2 {
    margin: 0;
  }
}
.cid-sw8Kfum23w .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sw8Kfum23w .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-sw8Kfum23w h2 {
  color: #0a1c44;
}
.cid-sw8KfuE2qs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
.cid-sw8KfuO0GY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #e9e9e9;
}
.cid-sw8KfuO0GY H1 {
  color: #ff4a52;
}
.cid-sw8KfuO0GY .mbr-text,
.cid-sw8KfuO0GY .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sw8KfuO0GY H3 {
  color: #716c80;
}
.cid-sw8Kfv96be {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #7eb9b9;
}
.cid-sw8Kfv96be .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sw8Kfv96be H5 {
  color: #0a1c44;
}
.cid-sw8Kfw1oNy {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-sw8Kfw1oNy .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-sw8Kfw1oNy .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sw8Kfw1oNy .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sw8Kfw1oNy .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-sw8Kfw1oNy .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-sw8Kfw1oNy .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sw8Kfw1oNy .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-sw8Kfw1oNy .input-group-btn {
  padding-left: 0;
}
.cid-sw8Kfw1oNy .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sw8Kfw1oNy .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sw8Kfw1oNy .mbr-text {
  color: #444;
}
.cid-sw8Kfw1oNy h5 {
  margin-bottom: 0;
}
.cid-sw8Kfw1oNy .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sw8Kfw1oNy .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sw8Kfw1oNy .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sw8Kfw1oNy .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sw8Kfw1oNy .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sw8Kfw1oNy .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sw8Kfw1oNy .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sw8Kfw1oNy .social-list a:hover {
  opacity: 0.4;
}
.cid-sw8Kfw1oNy .media-container-row > div {
  padding: 0px;
}
.cid-sw8Kfw1oNy .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-sw8Kfw1oNy .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-sw8Kfw1oNy .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sw8Kfw1oNy .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sw8Kfw1oNy .social-list,
  .cid-sw8Kfw1oNy .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sw8Kfw1oNy h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sw8Kfw1oNy .form-group {
    max-width: 180px;
  }
}
.cid-sw8Kfw1oNy .links span {
  color: #9e9e9e;
}
.cid-sw8Kfw1oNy .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-sw8Kfw1oNy .logo-title {
  text-align: center;
}
.cid-sw8Kfw1oNy .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sw8Kfw1oNy .logo-title,
.cid-sw8Kfw1oNy .logo {
  color: #f5f7fa;
}
.cid-sw8KfwKUW2 {
  background-color: #669b9b;
}
.cid-sw8KfwKUW2 svg {
  position: absolute;
  top: 0;
}
.cid-sw8KfwKUW2 .svg-1 {
  fill: #008b8b;
}
.cid-sw8KfwKUW2 .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-sw8KfwKUW2 {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-sw8KfwKUW2 {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-sw8KfwKUW2 .mbr-text {
  color: #b1bee0;
}
.cid-sw8KfwKUW2 a {
  text-decoration: underline;
}
.cid-sw8KfwKUW2 a,
.cid-sw8KfwKUW2 a:hover {
  font-weight: 400 !important;
}
.cid-sw8KfwKUW2 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sATQKZPZB3 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sATQKZPZB3 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-sATQKZPZB3 a {
  font-style: normal;
}
.cid-sATQKZPZB3 .show {
  overflow: visible;
}
.cid-sATQKZPZB3 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sATQKZPZB3 .dropdown-item:active {
  background-color: transparent;
}
.cid-sATQKZPZB3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sATQKZPZB3 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sATQKZPZB3 .nav-item:focus,
.cid-sATQKZPZB3 .nav-link:focus {
  outline: none;
}
.cid-sATQKZPZB3 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sATQKZPZB3 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sATQKZPZB3 .menu-logo {
  margin-right: auto;
}
.cid-sATQKZPZB3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sATQKZPZB3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sATQKZPZB3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sATQKZPZB3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sATQKZPZB3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sATQKZPZB3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sATQKZPZB3 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sATQKZPZB3 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sATQKZPZB3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sATQKZPZB3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sATQKZPZB3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sATQKZPZB3 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sATQKZPZB3 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sATQKZPZB3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sATQKZPZB3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sATQKZPZB3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sATQKZPZB3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sATQKZPZB3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sATQKZPZB3 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sATQKZPZB3 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sATQKZPZB3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sATQKZPZB3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sATQKZPZB3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sATQKZPZB3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sATQKZPZB3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sATQKZPZB3 button.navbar-toggler:focus {
  outline: none;
}
.cid-sATQKZPZB3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sATQKZPZB3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sATQKZPZB3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sATQKZPZB3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sATQKZPZB3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sATQKZPZB3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sATQKZPZB3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sATQKZPZB3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sATQKZPZB3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sATQKZPZB3 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sATQKZPZB3 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sATQKZPZB3 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sATQKZPZB3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sATQKZPZB3 .collapsed .navbar-collapse.collapsing,
.cid-sATQKZPZB3 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sATQKZPZB3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sATQKZPZB3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sATQKZPZB3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sATQKZPZB3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sATQKZPZB3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sATQKZPZB3 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sATQKZPZB3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sATQKZPZB3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sATQKZPZB3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sATQKZPZB3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sATQKZPZB3 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sATQKZPZB3 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sATQKZPZB3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sATQKZPZB3 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sATQKZPZB3 .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-sATQKZPZB3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sATQKZPZB3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sATQKZPZB3 .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;
}
@media (max-width: 991px) {
  .cid-sATQKZPZB3.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sATQKZPZB3 img {
    height: 3.8rem !important;
  }
  .cid-sATQKZPZB3 .btn {
    display: -webkit-flex;
  }
  .cid-sATQKZPZB3 button.navbar-toggler {
    display: block;
  }
  .cid-sATQKZPZB3 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sATQKZPZB3 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sATQKZPZB3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sATQKZPZB3 .navbar-collapse.collapsing,
  .cid-sATQKZPZB3 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sATQKZPZB3 .navbar-collapse.collapsing .navbar-nav,
  .cid-sATQKZPZB3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sATQKZPZB3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sATQKZPZB3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sATQKZPZB3 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sATQKZPZB3 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sATQKZPZB3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sATQKZPZB3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sATQKZPZB3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sATQKZPZB3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sATQKZPZB3 .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-sATQKZPZB3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sATQKZPZB3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sATQKZPZB3 .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;
  }
}
@media (max-width: 767px) {
  .cid-sATQKZPZB3 .nav-link {
    justify-content: start !important;
  }
  .cid-sATQKZPZB3 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sATQKZPZB3 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sATQKZPZB3 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sATQKZPZB3 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sATQKZPZB3 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sATQKZPZB3 .nav-link:hover,
.cid-sATQKZPZB3 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-sATQKZPZB3 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sATQKZPZB3 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sATQL0nkM1 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-sATQL0nkM1 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sATQL0nkM1 .container {
    position: relative;
  }
  .cid-sATQL0nkM1 .row {
    margin: 0;
  }
  .cid-sATQL0nkM1 h2 {
    margin: 0;
  }
}
.cid-sATQL0nkM1 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sATQL0nkM1 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-sATQL0nkM1 h2 {
  color: #0a1c44;
}
.cid-sAUlltSIYk {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sAUlltSIYk .row {
  flex-direction: row-reverse;
}
.cid-sAUlltSIYk .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sAUlltSIYk .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sAUlltSIYk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sAUlltSIYk .mbr-section-title {
  color: #103178;
}
.cid-sAUlltSIYk .mbr-text,
.cid-sAUlltSIYk .mbr-section-btn {
  color: #103178;
}
.cid-sATRFuIx9Q {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sATRFuIx9Q .container-fluid {
  padding: 0 3rem;
}
.cid-sATRFuIx9Q .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #008b8b, #0a1c44);
  display: inline-block;
}
.cid-sATRFuIx9Q .card {
  display: block;
}
.cid-sATRFuIx9Q .card .card-wrapper {
  height: 1%;
  overflow: visible;
}
.cid-sATRFuIx9Q .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-sATRFuIx9Q .card .card-wrapper .card-img img {
  transition: all 0.5s;
}
.cid-sATRFuIx9Q .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all 0.5s;
}
.cid-sATRFuIx9Q .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sATRFuIx9Q .prices {
  color: #ffffff;
}
.cid-sATRFuIx9Q .oldPrice {
  text-decoration: line-through;
}
.cid-sATRFuIx9Q .oldPrice,
.cid-sATRFuIx9Q .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-sATRFuIx9Q .container-fluid {
    padding: 0 1rem;
  }
  .cid-sATRFuIx9Q .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sATQL0Rp7b {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-sATQL0Rp7b .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-sATQL0Rp7b .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sATQL0Rp7b .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sATQL0Rp7b .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-sATQL0Rp7b .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-sATQL0Rp7b .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sATQL0Rp7b .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-sATQL0Rp7b .input-group-btn {
  padding-left: 0;
}
.cid-sATQL0Rp7b .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sATQL0Rp7b .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sATQL0Rp7b .mbr-text {
  color: #444;
}
.cid-sATQL0Rp7b h5 {
  margin-bottom: 0;
}
.cid-sATQL0Rp7b .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sATQL0Rp7b .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sATQL0Rp7b .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sATQL0Rp7b .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sATQL0Rp7b .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sATQL0Rp7b .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sATQL0Rp7b .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sATQL0Rp7b .social-list a:hover {
  opacity: 0.4;
}
.cid-sATQL0Rp7b .media-container-row > div {
  padding: 0px;
}
.cid-sATQL0Rp7b .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-sATQL0Rp7b .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-sATQL0Rp7b .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sATQL0Rp7b .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sATQL0Rp7b .social-list,
  .cid-sATQL0Rp7b .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sATQL0Rp7b h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sATQL0Rp7b .form-group {
    max-width: 180px;
  }
}
.cid-sATQL0Rp7b .links span {
  color: #9e9e9e;
}
.cid-sATQL0Rp7b .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-sATQL0Rp7b .logo-title {
  text-align: center;
}
.cid-sATQL0Rp7b .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sATQL0Rp7b .logo-title,
.cid-sATQL0Rp7b .logo {
  color: #f5f7fa;
}
.cid-sATQL1s44Q {
  background-color: #669b9b;
}
.cid-sATQL1s44Q svg {
  position: absolute;
  top: 0;
}
.cid-sATQL1s44Q .svg-1 {
  fill: #008b8b;
}
.cid-sATQL1s44Q .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-sATQL1s44Q {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-sATQL1s44Q {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-sATQL1s44Q .mbr-text {
  color: #b1bee0;
}
.cid-sATQL1s44Q a {
  text-decoration: underline;
}
.cid-sATQL1s44Q a,
.cid-sATQL1s44Q a:hover {
  font-weight: 400 !important;
}
.cid-sATQL1s44Q .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sHQSYQgVDu .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHQSYQgVDu .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-sHQSYQgVDu a {
  font-style: normal;
}
.cid-sHQSYQgVDu .show {
  overflow: visible;
}
.cid-sHQSYQgVDu .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sHQSYQgVDu .dropdown-item:active {
  background-color: transparent;
}
.cid-sHQSYQgVDu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sHQSYQgVDu .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sHQSYQgVDu .nav-item:focus,
.cid-sHQSYQgVDu .nav-link:focus {
  outline: none;
}
.cid-sHQSYQgVDu .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sHQSYQgVDu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sHQSYQgVDu .menu-logo {
  margin-right: auto;
}
.cid-sHQSYQgVDu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sHQSYQgVDu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sHQSYQgVDu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sHQSYQgVDu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sHQSYQgVDu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sHQSYQgVDu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sHQSYQgVDu .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sHQSYQgVDu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sHQSYQgVDu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sHQSYQgVDu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sHQSYQgVDu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sHQSYQgVDu .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sHQSYQgVDu .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sHQSYQgVDu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sHQSYQgVDu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHQSYQgVDu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sHQSYQgVDu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHQSYQgVDu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sHQSYQgVDu .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sHQSYQgVDu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sHQSYQgVDu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sHQSYQgVDu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sHQSYQgVDu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sHQSYQgVDu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sHQSYQgVDu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sHQSYQgVDu button.navbar-toggler:focus {
  outline: none;
}
.cid-sHQSYQgVDu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sHQSYQgVDu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHQSYQgVDu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHQSYQgVDu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHQSYQgVDu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHQSYQgVDu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHQSYQgVDu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHQSYQgVDu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHQSYQgVDu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sHQSYQgVDu .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sHQSYQgVDu .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sHQSYQgVDu .collapsed .btn {
  display: -webkit-flex;
}
.cid-sHQSYQgVDu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sHQSYQgVDu .collapsed .navbar-collapse.collapsing,
.cid-sHQSYQgVDu .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sHQSYQgVDu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sHQSYQgVDu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sHQSYQgVDu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sHQSYQgVDu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sHQSYQgVDu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sHQSYQgVDu .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sHQSYQgVDu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sHQSYQgVDu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sHQSYQgVDu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sHQSYQgVDu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sHQSYQgVDu .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sHQSYQgVDu .collapsed button.navbar-toggler {
  display: block;
}
.cid-sHQSYQgVDu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sHQSYQgVDu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sHQSYQgVDu .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-sHQSYQgVDu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sHQSYQgVDu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sHQSYQgVDu .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;
}
@media (max-width: 991px) {
  .cid-sHQSYQgVDu.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sHQSYQgVDu img {
    height: 3.8rem !important;
  }
  .cid-sHQSYQgVDu .btn {
    display: -webkit-flex;
  }
  .cid-sHQSYQgVDu button.navbar-toggler {
    display: block;
  }
  .cid-sHQSYQgVDu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sHQSYQgVDu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sHQSYQgVDu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sHQSYQgVDu .navbar-collapse.collapsing,
  .cid-sHQSYQgVDu .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sHQSYQgVDu .navbar-collapse.collapsing .navbar-nav,
  .cid-sHQSYQgVDu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sHQSYQgVDu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sHQSYQgVDu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sHQSYQgVDu .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sHQSYQgVDu .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sHQSYQgVDu .navbar-collapse.collapsing .navbar-buttons,
  .cid-sHQSYQgVDu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sHQSYQgVDu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sHQSYQgVDu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sHQSYQgVDu .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-sHQSYQgVDu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sHQSYQgVDu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sHQSYQgVDu .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;
  }
}
@media (max-width: 767px) {
  .cid-sHQSYQgVDu .nav-link {
    justify-content: start !important;
  }
  .cid-sHQSYQgVDu .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sHQSYQgVDu .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sHQSYQgVDu .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sHQSYQgVDu .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sHQSYQgVDu .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sHQSYQgVDu .nav-link:hover,
.cid-sHQSYQgVDu .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-sHQSYQgVDu .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sHQSYQgVDu .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sHQSYR8Kd6 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-sHQSYR8Kd6 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sHQSYR8Kd6 .container {
    position: relative;
  }
  .cid-sHQSYR8Kd6 .row {
    margin: 0;
  }
  .cid-sHQSYR8Kd6 h2 {
    margin: 0;
  }
}
.cid-sHQSYR8Kd6 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sHQSYR8Kd6 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-sHQSYR8Kd6 h2 {
  color: #0a1c44;
  text-align: center;
}
.cid-sHQSYRy6Ad {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
.cid-sHQSYRy6Ad svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-sHQSYRy6Ad #e1_ellipse {
  fill: #f5f7fa !important;
}
.cid-sHQSYRy6Ad img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-sHQSYRy6Ad img {
    width: 100%;
    left: 0;
  }
}
.cid-sHQSYRy6Ad H1 {
  color: #ff4a52;
}
.cid-sHQSYRy6Ad .mbr-text,
.cid-sHQSYRy6Ad .mbr-section-btn {
  color: #0a1c44;
}
.cid-sHQSYRTg2q {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #e9e9e9;
  position: relative;
  overflow: hidden;
}
.cid-sHQSYRTg2q svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-sHQSYRTg2q #e1_ellipse {
  fill: #e9e9e9 !important;
}
.cid-sHQSYRTg2q img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-sHQSYRTg2q img {
    width: 100%;
    left: 0;
  }
}
.cid-sHQSYRTg2q H1 {
  color: #0a1c44;
}
.cid-sHQSYRTg2q .mbr-text,
.cid-sHQSYRTg2q .mbr-section-btn {
  color: #0a1c44;
}
.cid-sHQSYRTg2q H3 {
  color: #333333;
}
.cid-sHQSYScr1X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #008b8b;
}
@media (max-width: 767px) {
  .cid-sHQSYScr1X h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sHQSYScr1X .container {
    position: relative;
  }
  .cid-sHQSYScr1X .row {
    margin: 0;
  }
  .cid-sHQSYScr1X h2 {
    margin: 0;
  }
}
.cid-sHQSYScr1X .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sHQSYScr1X .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-sHQSYScr1X h2 {
  color: #f5f7fa;
}
.cid-sHQSYSskia {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sHQSYSskia .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHQSYSskia .card .card-wrapper {
  background: #f5f7fa;
  height: 1%;
}
.cid-sHQSYSskia .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sHQSYSskia .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sHQSYSskia .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-sHQSYSskia .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sHQSYSskia .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sHQSYSskia .mbr-card-text {
  margin: 0;
}
.cid-sHQSYSskia .mbr-card-text,
.cid-sHQSYSskia .mbr-section-btn {
  color: #0a1c44;
}
.cid-sHQSYSVvv2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #97e0b0;
}
.cid-sHQSYSVvv2 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #0a1c44;
  margin-bottom: 2rem;
}
.cid-sHQSYSVvv2 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sHQSYSVvv2 .btn {
  margin: 0px !important;
}
.cid-sHQSYSVvv2 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHQSYSVvv2 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHQSYSVvv2 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sHQSYSVvv2 .carousel-item .wrap-img {
  text-align: center;
}
.cid-sHQSYSVvv2 .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-sHQSYSVvv2 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sHQSYSVvv2 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-sHQSYSVvv2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  border: 4px solid #ffffff;
}
.cid-sHQSYSVvv2 .carousel-indicators li.active {
  border-color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sHQSYSVvv2 .second-col {
    padding-top: 2rem;
  }
}
.cid-sHQSYSVvv2 .mbr-section-subtitle,
.cid-sHQSYSVvv2 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sHQSYTntQ1 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #97e0b0;
}
.cid-sHQSYTntQ1 .counter-container ol {
  margin-bottom: 0;
}
.cid-sHQSYTntQ1 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sHQSYTntQ1 .mbr-text {
  color: #0a1c44;
}
.cid-sHQSYTAjrD {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2973b8;
}
.cid-sHQSYTAjrD .signature {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.cid-sHQSYTAjrD .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sHQSYTAjrD .card-img {
  margin-bottom: 1rem;
}
.cid-sHQSYTAjrD .card-img span {
  font-size: 60px;
}
.cid-sHQSYTAjrD .mbr-text,
.cid-sHQSYTAjrD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sHQSYTRfjW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-sHQSYTRfjW .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-sHQSYTRfjW .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sHQSYTRfjW .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sHQSYTRfjW .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-sHQSYTRfjW .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-sHQSYTRfjW .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sHQSYTRfjW .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-sHQSYTRfjW .input-group-btn {
  padding-left: 0;
}
.cid-sHQSYTRfjW .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sHQSYTRfjW .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sHQSYTRfjW .mbr-text {
  color: #444;
}
.cid-sHQSYTRfjW h5 {
  margin-bottom: 0;
}
.cid-sHQSYTRfjW .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sHQSYTRfjW .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sHQSYTRfjW .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sHQSYTRfjW .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHQSYTRfjW .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sHQSYTRfjW .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sHQSYTRfjW .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sHQSYTRfjW .social-list a:hover {
  opacity: 0.4;
}
.cid-sHQSYTRfjW .media-container-row > div {
  padding: 0px;
}
.cid-sHQSYTRfjW .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-sHQSYTRfjW .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-sHQSYTRfjW .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sHQSYTRfjW .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sHQSYTRfjW .social-list,
  .cid-sHQSYTRfjW .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sHQSYTRfjW h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sHQSYTRfjW .form-group {
    max-width: 180px;
  }
}
.cid-sHQSYTRfjW .links span {
  color: #9e9e9e;
}
.cid-sHQSYTRfjW .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-sHQSYTRfjW .logo-title {
  text-align: center;
}
.cid-sHQSYTRfjW .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sHQSYTRfjW .logo-title,
.cid-sHQSYTRfjW .logo {
  color: #f5f7fa;
}
.cid-sHQSYUvbV9 {
  background-color: #669b9b;
}
.cid-sHQSYUvbV9 svg {
  position: absolute;
  top: 0;
}
.cid-sHQSYUvbV9 .svg-1 {
  fill: #008b8b;
}
.cid-sHQSYUvbV9 .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-sHQSYUvbV9 {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-sHQSYUvbV9 {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-sHQSYUvbV9 .mbr-text {
  color: #b1bee0;
}
.cid-sHQSYUvbV9 a {
  text-decoration: underline;
}
.cid-sHQSYUvbV9 a,
.cid-sHQSYUvbV9 a:hover {
  font-weight: 400 !important;
}
.cid-sHQSYUvbV9 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssY4gFLQAh .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssY4gFLQAh .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssY4gFLQAh a {
  font-style: normal;
}
.cid-ssY4gFLQAh .show {
  overflow: visible;
}
.cid-ssY4gFLQAh .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssY4gFLQAh .dropdown-item:active {
  background-color: transparent;
}
.cid-ssY4gFLQAh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssY4gFLQAh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .nav-item:focus,
.cid-ssY4gFLQAh .nav-link:focus {
  outline: none;
}
.cid-ssY4gFLQAh .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssY4gFLQAh .menu-logo {
  margin-right: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssY4gFLQAh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssY4gFLQAh .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssY4gFLQAh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssY4gFLQAh button.navbar-toggler:focus {
  outline: none;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssY4gFLQAh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssY4gFLQAh .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssY4gFLQAh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .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-ssY4gFLQAh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssY4gFLQAh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssY4gFLQAh .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;
}
@media (max-width: 991px) {
  .cid-ssY4gFLQAh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh img {
    height: 3.8rem !important;
  }
  .cid-ssY4gFLQAh .btn {
    display: -webkit-flex;
  }
  .cid-ssY4gFLQAh button.navbar-toggler {
    display: block;
  }
  .cid-ssY4gFLQAh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing,
  .cid-ssY4gFLQAh .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .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-ssY4gFLQAh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssY4gFLQAh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssY4gFLQAh .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;
  }
}
@media (max-width: 767px) {
  .cid-ssY4gFLQAh .nav-link {
    justify-content: start !important;
  }
  .cid-ssY4gFLQAh .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssY4gFLQAh .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssY4gFLQAh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssY4gFLQAh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssY4gFLQAh .nav-link:hover,
.cid-ssY4gFLQAh .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssY4gFLQAh .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sRpKs5CsmD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-sRpKtif0ey {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #e9e9e9;
  position: relative;
  overflow: hidden;
}
.cid-sRpKtif0ey svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-sRpKtif0ey #e1_ellipse {
  fill: #e9e9e9 !important;
}
.cid-sRpKtif0ey img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-sRpKtif0ey img {
    width: 100%;
    left: 0;
  }
}
.cid-sRpKtif0ey H1 {
  color: #0a1c44;
}
.cid-sRpKtif0ey .mbr-text,
.cid-sRpKtif0ey .mbr-section-btn {
  color: #0a1c44;
}
.cid-sRpKtif0ey H3 {
  color: #333333;
}
.cid-sVa2Z61hDz .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVa2Z61hDz .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-sVa2Z61hDz a {
  font-style: normal;
}
.cid-sVa2Z61hDz .show {
  overflow: visible;
}
.cid-sVa2Z61hDz .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sVa2Z61hDz .dropdown-item:active {
  background-color: transparent;
}
.cid-sVa2Z61hDz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sVa2Z61hDz .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sVa2Z61hDz .nav-item:focus,
.cid-sVa2Z61hDz .nav-link:focus {
  outline: none;
}
.cid-sVa2Z61hDz .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sVa2Z61hDz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sVa2Z61hDz .menu-logo {
  margin-right: auto;
}
.cid-sVa2Z61hDz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sVa2Z61hDz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sVa2Z61hDz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sVa2Z61hDz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sVa2Z61hDz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sVa2Z61hDz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sVa2Z61hDz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sVa2Z61hDz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sVa2Z61hDz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sVa2Z61hDz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sVa2Z61hDz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sVa2Z61hDz .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sVa2Z61hDz .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sVa2Z61hDz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sVa2Z61hDz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVa2Z61hDz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sVa2Z61hDz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVa2Z61hDz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sVa2Z61hDz .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sVa2Z61hDz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sVa2Z61hDz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sVa2Z61hDz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sVa2Z61hDz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sVa2Z61hDz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sVa2Z61hDz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sVa2Z61hDz button.navbar-toggler:focus {
  outline: none;
}
.cid-sVa2Z61hDz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sVa2Z61hDz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVa2Z61hDz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVa2Z61hDz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVa2Z61hDz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVa2Z61hDz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVa2Z61hDz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVa2Z61hDz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVa2Z61hDz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sVa2Z61hDz .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sVa2Z61hDz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sVa2Z61hDz .collapsed .btn {
  display: -webkit-flex;
}
.cid-sVa2Z61hDz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sVa2Z61hDz .collapsed .navbar-collapse.collapsing,
.cid-sVa2Z61hDz .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sVa2Z61hDz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sVa2Z61hDz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sVa2Z61hDz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sVa2Z61hDz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sVa2Z61hDz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sVa2Z61hDz .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sVa2Z61hDz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sVa2Z61hDz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sVa2Z61hDz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sVa2Z61hDz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sVa2Z61hDz .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sVa2Z61hDz .collapsed button.navbar-toggler {
  display: block;
}
.cid-sVa2Z61hDz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sVa2Z61hDz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sVa2Z61hDz .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-sVa2Z61hDz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sVa2Z61hDz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sVa2Z61hDz .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;
}
@media (max-width: 991px) {
  .cid-sVa2Z61hDz.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sVa2Z61hDz img {
    height: 3.8rem !important;
  }
  .cid-sVa2Z61hDz .btn {
    display: -webkit-flex;
  }
  .cid-sVa2Z61hDz button.navbar-toggler {
    display: block;
  }
  .cid-sVa2Z61hDz .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sVa2Z61hDz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sVa2Z61hDz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sVa2Z61hDz .navbar-collapse.collapsing,
  .cid-sVa2Z61hDz .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sVa2Z61hDz .navbar-collapse.collapsing .navbar-nav,
  .cid-sVa2Z61hDz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sVa2Z61hDz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sVa2Z61hDz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sVa2Z61hDz .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sVa2Z61hDz .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sVa2Z61hDz .navbar-collapse.collapsing .navbar-buttons,
  .cid-sVa2Z61hDz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sVa2Z61hDz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sVa2Z61hDz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sVa2Z61hDz .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-sVa2Z61hDz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sVa2Z61hDz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sVa2Z61hDz .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;
  }
}
@media (max-width: 767px) {
  .cid-sVa2Z61hDz .nav-link {
    justify-content: start !important;
  }
  .cid-sVa2Z61hDz .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sVa2Z61hDz .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sVa2Z61hDz .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sVa2Z61hDz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sVa2Z61hDz .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sVa2Z61hDz .nav-link:hover,
.cid-sVa2Z61hDz .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-sVa2Z61hDz .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sVa2Z61hDz .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sVa2Z6xGnm {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-sVa2Z6xGnm h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sVa2Z6xGnm .container {
    position: relative;
  }
  .cid-sVa2Z6xGnm .row {
    margin: 0;
  }
  .cid-sVa2Z6xGnm h2 {
    margin: 0;
  }
}
.cid-sVa2Z6xGnm .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sVa2Z6xGnm .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-sVa2Z6xGnm h2 {
  color: #0a1c44;
}
.cid-sVa6lcqo8q {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #7eb9b9;
  position: relative;
  overflow: hidden;
}
.cid-sVa6lcqo8q svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-sVa6lcqo8q #e1_ellipse {
  fill: #ffffff !important;
}
.cid-sVa6lcqo8q img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-sVa6lcqo8q img {
    width: 100%;
    left: 0;
  }
}
.cid-sVa6lcqo8q H1 {
  color: #008b8b;
}
.cid-sVa6lcqo8q .mbr-text,
.cid-sVa6lcqo8q .mbr-section-btn {
  color: #000000;
}
.cid-sVa6lcqo8q H3 {
  color: #333333;
}
.cid-taKaZdSFhS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-taKaZdSFhS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-taKaZdSFhS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taKaZdSFhS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taKaZdSFhS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-taKaZdSFhS .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-taKaZdSFhS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-taKaZdSFhS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-taKaZdSFhS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-taKaZdSFhS .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-sVa2Z7S7DI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-sVa2Z7S7DI .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-sVa2Z7S7DI .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sVa2Z7S7DI .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sVa2Z7S7DI .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-sVa2Z7S7DI .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-sVa2Z7S7DI .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sVa2Z7S7DI .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-sVa2Z7S7DI .input-group-btn {
  padding-left: 0;
}
.cid-sVa2Z7S7DI .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sVa2Z7S7DI .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sVa2Z7S7DI .mbr-text {
  color: #444;
}
.cid-sVa2Z7S7DI h5 {
  margin-bottom: 0;
}
.cid-sVa2Z7S7DI .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sVa2Z7S7DI .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sVa2Z7S7DI .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sVa2Z7S7DI .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sVa2Z7S7DI .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sVa2Z7S7DI .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sVa2Z7S7DI .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sVa2Z7S7DI .social-list a:hover {
  opacity: 0.4;
}
.cid-sVa2Z7S7DI .media-container-row > div {
  padding: 0px;
}
.cid-sVa2Z7S7DI .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-sVa2Z7S7DI .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-sVa2Z7S7DI .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sVa2Z7S7DI .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sVa2Z7S7DI .social-list,
  .cid-sVa2Z7S7DI .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sVa2Z7S7DI h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sVa2Z7S7DI .form-group {
    max-width: 180px;
  }
}
.cid-sVa2Z7S7DI .links span {
  color: #9e9e9e;
}
.cid-sVa2Z7S7DI .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-sVa2Z7S7DI .logo-title {
  text-align: center;
}
.cid-sVa2Z7S7DI .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sVa2Z7S7DI .logo-title,
.cid-sVa2Z7S7DI .logo {
  color: #f5f7fa;
}
.cid-sVa2Z8AvCi {
  background-color: #669b9b;
}
.cid-sVa2Z8AvCi svg {
  position: absolute;
  top: 0;
}
.cid-sVa2Z8AvCi .svg-1 {
  fill: #008b8b;
}
.cid-sVa2Z8AvCi .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-sVa2Z8AvCi {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-sVa2Z8AvCi {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-sVa2Z8AvCi .mbr-text {
  color: #b1bee0;
}
.cid-sVa2Z8AvCi a {
  text-decoration: underline;
}
.cid-sVa2Z8AvCi a,
.cid-sVa2Z8AvCi a:hover {
  font-weight: 400 !important;
}
.cid-sVa2Z8AvCi .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st3C5jVm1Z .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st3C5jVm1Z .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st3C5jVm1Z a {
  font-style: normal;
}
.cid-st3C5jVm1Z .show {
  overflow: visible;
}
.cid-st3C5jVm1Z .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st3C5jVm1Z .dropdown-item:active {
  background-color: transparent;
}
.cid-st3C5jVm1Z .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st3C5jVm1Z .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st3C5jVm1Z .nav-item:focus,
.cid-st3C5jVm1Z .nav-link:focus {
  outline: none;
}
.cid-st3C5jVm1Z .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st3C5jVm1Z .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st3C5jVm1Z .menu-logo {
  margin-right: auto;
}
.cid-st3C5jVm1Z .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3C5jVm1Z .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st3C5jVm1Z .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st3C5jVm1Z .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st3C5jVm1Z .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st3C5jVm1Z .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st3C5jVm1Z .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st3C5jVm1Z .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st3C5jVm1Z .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st3C5jVm1Z .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st3C5jVm1Z .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st3C5jVm1Z .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st3C5jVm1Z .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st3C5jVm1Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st3C5jVm1Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st3C5jVm1Z .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st3C5jVm1Z .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st3C5jVm1Z .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st3C5jVm1Z .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st3C5jVm1Z .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st3C5jVm1Z .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st3C5jVm1Z .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st3C5jVm1Z .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st3C5jVm1Z .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st3C5jVm1Z button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st3C5jVm1Z button.navbar-toggler:focus {
  outline: none;
}
.cid-st3C5jVm1Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st3C5jVm1Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st3C5jVm1Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3C5jVm1Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st3C5jVm1Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st3C5jVm1Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st3C5jVm1Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st3C5jVm1Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st3C5jVm1Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st3C5jVm1Z .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st3C5jVm1Z .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3C5jVm1Z .collapsed .btn {
  display: -webkit-flex;
}
.cid-st3C5jVm1Z .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st3C5jVm1Z .collapsed .navbar-collapse.collapsing,
.cid-st3C5jVm1Z .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st3C5jVm1Z .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st3C5jVm1Z .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st3C5jVm1Z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st3C5jVm1Z .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st3C5jVm1Z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st3C5jVm1Z .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st3C5jVm1Z .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st3C5jVm1Z .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st3C5jVm1Z .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st3C5jVm1Z .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st3C5jVm1Z .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st3C5jVm1Z .collapsed button.navbar-toggler {
  display: block;
}
.cid-st3C5jVm1Z .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st3C5jVm1Z .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st3C5jVm1Z .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-st3C5jVm1Z .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st3C5jVm1Z .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st3C5jVm1Z .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;
}
@media (max-width: 991px) {
  .cid-st3C5jVm1Z.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3C5jVm1Z img {
    height: 3.8rem !important;
  }
  .cid-st3C5jVm1Z .btn {
    display: -webkit-flex;
  }
  .cid-st3C5jVm1Z button.navbar-toggler {
    display: block;
  }
  .cid-st3C5jVm1Z .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st3C5jVm1Z .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st3C5jVm1Z .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st3C5jVm1Z .navbar-collapse.collapsing,
  .cid-st3C5jVm1Z .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st3C5jVm1Z .navbar-collapse.collapsing .navbar-nav,
  .cid-st3C5jVm1Z .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st3C5jVm1Z .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st3C5jVm1Z .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st3C5jVm1Z .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st3C5jVm1Z .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3C5jVm1Z .navbar-collapse.collapsing .navbar-buttons,
  .cid-st3C5jVm1Z .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st3C5jVm1Z .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st3C5jVm1Z .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st3C5jVm1Z .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-st3C5jVm1Z .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st3C5jVm1Z .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st3C5jVm1Z .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;
  }
}
@media (max-width: 767px) {
  .cid-st3C5jVm1Z .nav-link {
    justify-content: start !important;
  }
  .cid-st3C5jVm1Z .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st3C5jVm1Z .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st3C5jVm1Z .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st3C5jVm1Z .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st3C5jVm1Z .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st3C5jVm1Z .nav-link:hover,
.cid-st3C5jVm1Z .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st3C5jVm1Z .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st3C5jVm1Z .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st3C5kGDHA {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st3C5kGDHA h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st3C5kGDHA .container {
    position: relative;
  }
  .cid-st3C5kGDHA .row {
    margin: 0;
  }
  .cid-st3C5kGDHA h2 {
    margin: 0;
  }
}
.cid-st3C5kGDHA .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st3C5kGDHA .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st3C5kGDHA h2 {
  color: #0a1c44;
}
.cid-st3C5liR5z {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st3C5liR5z .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st3C5liR5z .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st3C5liR5z .btn {
  margin: 0px !important;
}
.cid-st3C5liR5z .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3C5liR5z .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3C5liR5z .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st3C5liR5z .carousel-item .wrap-img {
  text-align: center;
}
.cid-st3C5liR5z .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st3C5liR5z .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st3C5liR5z .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st3C5liR5z .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st3C5liR5z .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st3C5liR5z .second-col {
    padding-top: 2rem;
  }
}
.cid-st3C5m9VRM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-st3C5m9VRM H1 {
  color: #f5f7fa;
}
.cid-st3C5m9VRM .mbr-text,
.cid-st3C5m9VRM .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st3C5m9VRM H3 {
  color: #716c80;
}
.cid-st3CM2grGB {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-st3CM2grGB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-st3CM2grGB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-st3CM2grGB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-st3CM2grGB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-st3CM2grGB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3CM2grGB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-st3CM2grGB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-st3CM2grGB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-st3CM2grGB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-st3CM2grGB ul {
  font-size: 0;
}
.cid-st3CM2grGB .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-st3CM2grGB .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-st3CM2grGB .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-st3C5nEExq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3C5nEExq .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3C5nEExq .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3C5nEExq .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3C5nEExq .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3C5nEExq .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3C5nEExq .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3C5nEExq .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3C5nEExq .input-group-btn {
  padding-left: 0;
}
.cid-st3C5nEExq .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3C5nEExq .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3C5nEExq .mbr-text {
  color: #444;
}
.cid-st3C5nEExq h5 {
  margin-bottom: 0;
}
.cid-st3C5nEExq .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3C5nEExq .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3C5nEExq .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3C5nEExq .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3C5nEExq .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3C5nEExq .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3C5nEExq .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3C5nEExq .social-list a:hover {
  opacity: 0.4;
}
.cid-st3C5nEExq .media-container-row > div {
  padding: 0px;
}
.cid-st3C5nEExq .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3C5nEExq .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3C5nEExq .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3C5nEExq .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3C5nEExq .social-list,
  .cid-st3C5nEExq .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3C5nEExq h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3C5nEExq .form-group {
    max-width: 180px;
  }
}
.cid-st3C5nEExq .links span {
  color: #9e9e9e;
}
.cid-st3C5nEExq .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3C5nEExq .logo-title {
  text-align: center;
}
.cid-st3C5nEExq .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3C5nEExq .logo-title,
.cid-st3C5nEExq .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-st9yIvWVxY .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-st9yIvWVxY .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-st9yIvWVxY a {
  font-style: normal;
}
.cid-st9yIvWVxY .show {
  overflow: visible;
}
.cid-st9yIvWVxY .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-st9yIvWVxY .dropdown-item:active {
  background-color: transparent;
}
.cid-st9yIvWVxY .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-st9yIvWVxY .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-st9yIvWVxY .nav-item:focus,
.cid-st9yIvWVxY .nav-link:focus {
  outline: none;
}
.cid-st9yIvWVxY .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-st9yIvWVxY .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-st9yIvWVxY .menu-logo {
  margin-right: auto;
}
.cid-st9yIvWVxY .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st9yIvWVxY .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-st9yIvWVxY .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-st9yIvWVxY .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-st9yIvWVxY .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-st9yIvWVxY .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-st9yIvWVxY .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-st9yIvWVxY .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-st9yIvWVxY .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-st9yIvWVxY .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-st9yIvWVxY .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-st9yIvWVxY .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-st9yIvWVxY .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-st9yIvWVxY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-st9yIvWVxY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st9yIvWVxY .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-st9yIvWVxY .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st9yIvWVxY .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-st9yIvWVxY .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-st9yIvWVxY .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-st9yIvWVxY .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-st9yIvWVxY .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-st9yIvWVxY .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-st9yIvWVxY .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-st9yIvWVxY button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-st9yIvWVxY button.navbar-toggler:focus {
  outline: none;
}
.cid-st9yIvWVxY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-st9yIvWVxY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-st9yIvWVxY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st9yIvWVxY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-st9yIvWVxY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-st9yIvWVxY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-st9yIvWVxY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-st9yIvWVxY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-st9yIvWVxY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-st9yIvWVxY .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-st9yIvWVxY .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st9yIvWVxY .collapsed .btn {
  display: -webkit-flex;
}
.cid-st9yIvWVxY .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-st9yIvWVxY .collapsed .navbar-collapse.collapsing,
.cid-st9yIvWVxY .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-st9yIvWVxY .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-st9yIvWVxY .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-st9yIvWVxY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-st9yIvWVxY .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-st9yIvWVxY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-st9yIvWVxY .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-st9yIvWVxY .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-st9yIvWVxY .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-st9yIvWVxY .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-st9yIvWVxY .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-st9yIvWVxY .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-st9yIvWVxY .collapsed button.navbar-toggler {
  display: block;
}
.cid-st9yIvWVxY .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-st9yIvWVxY .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-st9yIvWVxY .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-st9yIvWVxY .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-st9yIvWVxY .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-st9yIvWVxY .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;
}
@media (max-width: 991px) {
  .cid-st9yIvWVxY.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st9yIvWVxY img {
    height: 3.8rem !important;
  }
  .cid-st9yIvWVxY .btn {
    display: -webkit-flex;
  }
  .cid-st9yIvWVxY button.navbar-toggler {
    display: block;
  }
  .cid-st9yIvWVxY .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-st9yIvWVxY .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-st9yIvWVxY .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-st9yIvWVxY .navbar-collapse.collapsing,
  .cid-st9yIvWVxY .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-st9yIvWVxY .navbar-collapse.collapsing .navbar-nav,
  .cid-st9yIvWVxY .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-st9yIvWVxY .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-st9yIvWVxY .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-st9yIvWVxY .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-st9yIvWVxY .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-st9yIvWVxY .navbar-collapse.collapsing .navbar-buttons,
  .cid-st9yIvWVxY .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-st9yIvWVxY .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-st9yIvWVxY .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-st9yIvWVxY .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-st9yIvWVxY .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-st9yIvWVxY .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-st9yIvWVxY .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;
  }
}
@media (max-width: 767px) {
  .cid-st9yIvWVxY .nav-link {
    justify-content: start !important;
  }
  .cid-st9yIvWVxY .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-st9yIvWVxY .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-st9yIvWVxY .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-st9yIvWVxY .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-st9yIvWVxY .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-st9yIvWVxY .nav-link:hover,
.cid-st9yIvWVxY .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-st9yIvWVxY .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-st9yIvWVxY .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-st9yIwp7Mg {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-st9yIwp7Mg h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-st9yIwp7Mg .container {
    position: relative;
  }
  .cid-st9yIwp7Mg .row {
    margin: 0;
  }
  .cid-st9yIwp7Mg h2 {
    margin: 0;
  }
}
.cid-st9yIwp7Mg .mbr-section-subtitle {
  color: #e9204f;
}
.cid-st9yIwp7Mg .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-st9yIwp7Mg h2 {
  color: #0a1c44;
}
.cid-st9yIwDenM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-st9yIwDenM .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-st9yIwDenM .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-st9yIwDenM .btn {
  margin: 0px !important;
}
.cid-st9yIwDenM .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st9yIwDenM .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st9yIwDenM .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-st9yIwDenM .carousel-item .wrap-img {
  text-align: center;
}
.cid-st9yIwDenM .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-st9yIwDenM .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-st9yIwDenM .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-st9yIwDenM .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-st9yIwDenM .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-st9yIwDenM .second-col {
    padding-top: 2rem;
  }
}
.cid-st9yIx40Pr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9yIx40Pr H1 {
  color: #0a1c44;
}
.cid-st9yIx40Pr .mbr-text,
.cid-st9yIx40Pr .mbr-section-btn {
  color: #0a1c44;
}
.cid-st9yIx40Pr H3 {
  color: #716c80;
}
.cid-st9yIxlVwT {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9yIxlVwT .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-st9yIxlVwT .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-st9yIxlVwT .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-st9yIxlVwT .price-tage > p {
  letter-spacing: 2px;
}
.cid-st9yIxlVwT .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-st9yIxlVwT .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-st9yIxlVwT .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-st9yIxlVwT .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-st9yIxlVwT .costs {
  color: #ffffff;
}
.cid-st9yIxlVwT .costs-title {
  color: #ffffff;
}
.cid-st9yIxlVwT .table-content,
.cid-st9yIxlVwT .mbr-section-btn {
  color: #0a1c44;
}
.cid-st9A70Ssxm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9A70Ssxm .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-st9A70Ssxm .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-st9A70Ssxm .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-st9A70Ssxm .price-tage > p {
  letter-spacing: 2px;
}
.cid-st9A70Ssxm .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-st9A70Ssxm .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-st9A70Ssxm .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-st9A70Ssxm .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-st9A70Ssxm .costs {
  color: #ffffff;
}
.cid-st9A70Ssxm .costs-title {
  color: #ffffff;
}
.cid-st9A70Ssxm .price-item {
  padding-bottom: 0;
}
.cid-st9A70Ssxm .table-content {
  margin-bottom: 0;
}
.cid-st9A70Ssxm .table-content > li:last-child {
  border-bottom: none;
}
.cid-st9A70Ssxm .table-content,
.cid-st9A70Ssxm .mbr-section-btn {
  color: #ff4a52;
}
.cid-st9yIxPVLp {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #e9e9e9;
}
.cid-st9yIxPVLp .mail-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.cid-st9yIxPVLp .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  color: #000000;
}
.cid-st9yIxPVLp .mail:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-st9yIxPVLp .mail:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-st9yIxPVLp .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-st9yIxPVLp H4 {
  color: #999999;
}
.cid-st9yIxPVLp .mbr-text,
.cid-st9yIxPVLp .mbr-section-btn {
  color: #0a1c44;
}
@media (max-width: 767px) {
  .cid-st9yIxPVLp .mail-col {
    justify-content: center;
    padding-top: 1rem;
  }
}
.cid-st9yIxPVLp H3 {
  color: #0a1c44;
}
.cid-st9yIy4MGC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-st9yIy4MGC H1 {
  color: #008b8b;
}
.cid-st9yIy4MGC .mbr-text,
.cid-st9yIy4MGC .mbr-section-btn {
  color: #f5f7fa;
}
.cid-st9yIy4MGC H3 {
  color: #716c80;
}
#custom-html-8l {
  /* info (hed, dek, source, credit) */
  /* table */
  /* media queries */
}
#custom-html-8l .rg-container {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 1em 0.5em;
  color: #222;
  border: 1px solid gray;
  box-shadow: 10px 10px 5px grey;
  background-color: white;
}
#custom-html-8l .rg-header {
  margin-bottom: 1em;
  text-align: left;
}
#custom-html-8l .rg-header > * {
  display: block;
}
#custom-html-8l .rg-hed {
  font-weight: bold;
  font-size: 1.4em;
}
#custom-html-8l .rg-dek {
  font-size: 1em;
}
#custom-html-8l .rg-source {
  margin: 0;
  font-size: 0.75em;
  text-align: right;
}
#custom-html-8l .rg-source .pre-colon {
  text-transform: uppercase;
}
#custom-html-8l .rg-source .post-colon {
  font-weight: bold;
}
#custom-html-8l table.rg-table {
  width: 100%;
  margin-bottom: 0.5em;
  font-size: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
#custom-html-8l table.rg-table tr {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-align: left;
  color: #333;
}
#custom-html-8l table.rg-table thead {
  border-bottom: 3px solid #ddd;
}
#custom-html-8l table.rg-table tr {
  border-bottom: 1px solid #ddd;
  color: #222;
}
#custom-html-8l table.rg-table tr.highlight {
  background-color: #dcf1f0 !important;
}
#custom-html-8l table.rg-table.zebra tr:nth-child(even) {
  background-color: #f6f6f6;
}
#custom-html-8l table.rg-table th {
  font-weight: bold;
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-8l table.rg-table td {
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-8l table.rg-table .highlight td {
  font-weight: bold;
}
#custom-html-8l table.rg-table th.number,
#custom-html-8l td.number {
  text-align: right;
}
@media screen and (max-width: 900px) {
  #custom-html-8l .rg-container {
    max-width: 900px;
    margin: 0 auto;
  }
  #custom-html-8l table.rg-table {
    width: 100%;
  }
  #custom-html-8l table.rg-table tr.hide-mobile,
  #custom-html-8l table.rg-table th.hide-mobile,
  #custom-html-8l table.rg-table td.hide-mobile {
    display: none;
  }
  #custom-html-8l table.rg-table thead {
    display: none;
  }
  #custom-html-8l table.rg-table tbody {
    width: 100%;
  }
  #custom-html-8l table.rg-table tr,
  #custom-html-8l table.rg-table th,
  #custom-html-8l table.rg-table td {
    display: block;
    padding: 0;
  }
  #custom-html-8l table.rg-table tr {
    border-bottom: none;
    margin: 0 0 1em 0;
    padding: 0.5em;
  }
  #custom-html-8l table.rg-table tr.highlight {
    background-color: inherit !important;
  }
  #custom-html-8l table.rg-table.zebra tr:nth-child(even) {
    background-color: transparent;
  }
  #custom-html-8l table.rg-table.zebra td:nth-child(even) {
    background-color: #f6f6f6;
  }
  #custom-html-8l table.rg-table tr:nth-child(even) {
    background-color: transparent;
  }
  #custom-html-8l table.rg-table td {
    padding: 0.5em 0 0.25em 0;
    border-bottom: 1px dotted #ccc;
    text-align: right;
  }
  #custom-html-8l table.rg-table td[data-title]:before {
    font-weight: bold;
    display: inline-block;
    content: attr(data-title);
    float: left;
    margin-right: 0.5em;
    font-size: 0.95em;
  }
  #custom-html-8l table.rg-table td:last-child {
    padding-right: 0;
    border-bottom: 2px solid #ccc;
  }
  #custom-html-8l table.rg-table td:empty {
    display: none;
  }
  #custom-html-8l table.rg-table .highlight td {
    background-color: inherit;
    font-weight: normal;
  }
}
.cid-st9DmKw1wo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st9DmKw1wo H1 {
  color: #0a1c44;
}
.cid-st9DmKw1wo .mbr-text,
.cid-st9DmKw1wo .mbr-section-btn {
  color: #0a1c44;
}
.cid-st9DmKw1wo H3 {
  color: #716c80;
}
.cid-st9yIyx0vr {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #e9e9e9;
}
.cid-st9yIyx0vr H1 {
  color: #0a1c44;
}
.cid-st9yIyx0vr .mbr-text,
.cid-st9yIyx0vr .mbr-section-btn {
  color: #0a1c44;
}
.cid-st9yIyx0vr H3 {
  color: #716c80;
}
.cid-st9yIyR1Uu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-st9yIyR1Uu .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-st9yIyR1Uu .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-st9yIyR1Uu .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-st9yIyR1Uu .card-title {
  color: #0a1c44;
  margin: 0;
  text-align: left;
}
.cid-st9yIyR1Uu .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-st9yIyR1Uu .card-box {
  padding: 1rem;
}
.cid-st9yIyR1Uu .mbr-section-title,
.cid-st9yIyR1Uu .line-wrap {
  text-align: center;
}
.cid-st9yIyR1Uu .card-box > p,
.cid-st9yIyR1Uu .mbr-section-btn {
  text-align: left;
  color: #0a1c44;
}
.cid-st9yIzfrhW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st9yIzfrhW .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st9yIzfrhW .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st9yIzfrhW .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st9yIzfrhW .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st9yIzfrhW .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st9yIzfrhW .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st9yIzfrhW .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st9yIzfrhW .input-group-btn {
  padding-left: 0;
}
.cid-st9yIzfrhW .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st9yIzfrhW .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st9yIzfrhW .mbr-text {
  color: #444;
}
.cid-st9yIzfrhW h5 {
  margin-bottom: 0;
}
.cid-st9yIzfrhW .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st9yIzfrhW .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st9yIzfrhW .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st9yIzfrhW .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st9yIzfrhW .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st9yIzfrhW .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st9yIzfrhW .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st9yIzfrhW .social-list a:hover {
  opacity: 0.4;
}
.cid-st9yIzfrhW .media-container-row > div {
  padding: 0px;
}
.cid-st9yIzfrhW .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st9yIzfrhW .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st9yIzfrhW .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st9yIzfrhW .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st9yIzfrhW .social-list,
  .cid-st9yIzfrhW .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st9yIzfrhW h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st9yIzfrhW .form-group {
    max-width: 180px;
  }
}
.cid-st9yIzfrhW .links span {
  color: #9e9e9e;
}
.cid-st9yIzfrhW .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st9yIzfrhW .logo-title {
  text-align: center;
}
.cid-st9yIzfrhW .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st9yIzfrhW .logo-title,
.cid-st9yIzfrhW .logo {
  color: #f5f7fa;
}
.cid-st9yIzOHO0 {
  background-color: #669b9b;
}
.cid-st9yIzOHO0 svg {
  position: absolute;
  top: 0;
}
.cid-st9yIzOHO0 .svg-1 {
  fill: #008b8b;
}
.cid-st9yIzOHO0 .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st9yIzOHO0 {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st9yIzOHO0 {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st9yIzOHO0 .mbr-text {
  color: #b1bee0;
}
.cid-st9yIzOHO0 a {
  text-decoration: underline;
}
.cid-st9yIzOHO0 a,
.cid-st9yIzOHO0 a:hover {
  font-weight: 400 !important;
}
.cid-st9yIzOHO0 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sV8gxwiRB3 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sV8gxwiRB3 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-sV8gxwiRB3 a {
  font-style: normal;
}
.cid-sV8gxwiRB3 .show {
  overflow: visible;
}
.cid-sV8gxwiRB3 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sV8gxwiRB3 .dropdown-item:active {
  background-color: transparent;
}
.cid-sV8gxwiRB3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sV8gxwiRB3 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sV8gxwiRB3 .nav-item:focus,
.cid-sV8gxwiRB3 .nav-link:focus {
  outline: none;
}
.cid-sV8gxwiRB3 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sV8gxwiRB3 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sV8gxwiRB3 .menu-logo {
  margin-right: auto;
}
.cid-sV8gxwiRB3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sV8gxwiRB3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sV8gxwiRB3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sV8gxwiRB3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sV8gxwiRB3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sV8gxwiRB3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sV8gxwiRB3 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sV8gxwiRB3 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sV8gxwiRB3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sV8gxwiRB3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sV8gxwiRB3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sV8gxwiRB3 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sV8gxwiRB3 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sV8gxwiRB3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sV8gxwiRB3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sV8gxwiRB3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sV8gxwiRB3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sV8gxwiRB3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sV8gxwiRB3 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sV8gxwiRB3 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sV8gxwiRB3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sV8gxwiRB3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sV8gxwiRB3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sV8gxwiRB3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sV8gxwiRB3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sV8gxwiRB3 button.navbar-toggler:focus {
  outline: none;
}
.cid-sV8gxwiRB3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sV8gxwiRB3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sV8gxwiRB3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sV8gxwiRB3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sV8gxwiRB3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sV8gxwiRB3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sV8gxwiRB3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sV8gxwiRB3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sV8gxwiRB3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sV8gxwiRB3 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sV8gxwiRB3 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sV8gxwiRB3 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sV8gxwiRB3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.collapsing,
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sV8gxwiRB3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sV8gxwiRB3 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sV8gxwiRB3 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sV8gxwiRB3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sV8gxwiRB3 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sV8gxwiRB3 .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-sV8gxwiRB3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sV8gxwiRB3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sV8gxwiRB3 .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;
}
@media (max-width: 991px) {
  .cid-sV8gxwiRB3.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sV8gxwiRB3 img {
    height: 3.8rem !important;
  }
  .cid-sV8gxwiRB3 .btn {
    display: -webkit-flex;
  }
  .cid-sV8gxwiRB3 button.navbar-toggler {
    display: block;
  }
  .cid-sV8gxwiRB3 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sV8gxwiRB3 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sV8gxwiRB3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sV8gxwiRB3 .navbar-collapse.collapsing,
  .cid-sV8gxwiRB3 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sV8gxwiRB3 .navbar-collapse.collapsing .navbar-nav,
  .cid-sV8gxwiRB3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sV8gxwiRB3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sV8gxwiRB3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sV8gxwiRB3 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sV8gxwiRB3 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sV8gxwiRB3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sV8gxwiRB3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sV8gxwiRB3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sV8gxwiRB3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sV8gxwiRB3 .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-sV8gxwiRB3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sV8gxwiRB3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sV8gxwiRB3 .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;
  }
}
@media (max-width: 767px) {
  .cid-sV8gxwiRB3 .nav-link {
    justify-content: start !important;
  }
  .cid-sV8gxwiRB3 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sV8gxwiRB3 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sV8gxwiRB3 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sV8gxwiRB3 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sV8gxwiRB3 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sV8gxwiRB3 .nav-link:hover,
.cid-sV8gxwiRB3 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-sV8gxwiRB3 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sV8gxwiRB3 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sV8gxxnDDG {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-sV8gxxnDDG h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sV8gxxnDDG .container {
    position: relative;
  }
  .cid-sV8gxxnDDG .row {
    margin: 0;
  }
  .cid-sV8gxxnDDG h2 {
    margin: 0;
  }
}
.cid-sV8gxxnDDG .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sV8gxxnDDG .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-sV8gxxnDDG h2 {
  color: #0a1c44;
}
.cid-sV8gxxIqCy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-sV8gxxIqCy .col-lg-6 {
  padding: 0 2rem;
}
.cid-sV8gxxIqCy .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-sV8gxxIqCy .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-sV8gxxIqCy .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sV8gxxIqCy .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-sV8gxxIqCy .card-wrapper:hover {
  background: #f8f9fb;
}
.cid-sV8gxxIqCy .mbr-iconfont {
  font-size: 3rem;
  color: #0196e3;
  padding: 2.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
}
.cid-sV8gxxIqCy .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-sV8gxxIqCy .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sV8gxxIqCy .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-sV8gxxIqCy .card-text {
  color: #6c758f;
}
.cid-sV8gxxIqCy .card-title {
  color: #0196e3;
}
.cid-sV8gxycEiB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-sV8gxycEiB .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sV8gxycEiB .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sV8gxycEiB .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sV8gxycEiB .card-title,
.cid-sV8gxycEiB .card-img {
  color: #f5f7fa;
}
.cid-sV8gxycEiB .mbr-text,
.cid-sV8gxycEiB .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sV8gxyykAp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-sV8gxyykAp .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sV8gxyykAp .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sV8gxyykAp .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sV8gxyykAp .price-tage > p {
  letter-spacing: 2px;
}
.cid-sV8gxyykAp .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sV8gxyykAp .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sV8gxyykAp .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sV8gxyykAp .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sV8gxyykAp .costs {
  color: #ffffff;
}
.cid-sV8gxyykAp .costs-title {
  color: #ffffff;
}
.cid-sV8gxyykAp .table-content,
.cid-sV8gxyykAp .mbr-section-btn {
  color: #0a1c44;
}
.cid-sV8gxzAiDC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #79afe1;
}
.cid-sV8gxzAiDC .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sV8gxzAiDC .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sV8gxzAiDC .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sV8gxzAiDC .price-tage > p {
  letter-spacing: 2px;
}
.cid-sV8gxzAiDC .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sV8gxzAiDC .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sV8gxzAiDC .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sV8gxzAiDC .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sV8gxzAiDC .costs {
  color: #ffffff;
}
.cid-sV8gxzAiDC .costs-title {
  color: #ffffff;
}
.cid-sV8gxzAiDC .table-content,
.cid-sV8gxzAiDC .mbr-section-btn {
  color: #0a1c44;
}
.cid-sV8gxAp7u1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2973b8;
}
.cid-sV8gxAp7u1 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sV8gxAp7u1 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sV8gxAp7u1 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sV8gxAp7u1 .card-title,
.cid-sV8gxAp7u1 .card-img {
  color: #f5f7fa;
}
.cid-sV8gxAp7u1 .mbr-text,
.cid-sV8gxAp7u1 .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sV8gxALJsG {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-sV8gxALJsG .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sV8gxALJsG .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sV8gxALJsG .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sV8gxALJsG .price-tage > p {
  letter-spacing: 2px;
}
.cid-sV8gxALJsG .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sV8gxALJsG .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sV8gxALJsG .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sV8gxALJsG .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sV8gxALJsG .costs {
  color: #ffffff;
}
.cid-sV8gxALJsG .costs-title {
  color: #ffffff;
}
.cid-sV8gxALJsG .table-content,
.cid-sV8gxALJsG .mbr-section-btn {
  color: #0a1c44;
}
.cid-sV8gxBwEU4 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-sV8gxBwEU4 .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sV8gxBwEU4 .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sV8gxBwEU4 .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sV8gxBwEU4 .price-tage > p {
  letter-spacing: 2px;
}
.cid-sV8gxBwEU4 .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sV8gxBwEU4 .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sV8gxBwEU4 .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sV8gxBwEU4 .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sV8gxBwEU4 .costs {
  color: #ffffff;
}
.cid-sV8gxBwEU4 .costs-title {
  color: #ffffff;
}
.cid-sV8gxBwEU4 .table-content,
.cid-sV8gxBwEU4 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sV8gxCj4BD {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #7eb9b9;
}
.cid-sV8gxCj4BD .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sV8gxCj4BD .card .card-wrapper {
  background: #008b8b;
  height: 1%;
}
.cid-sV8gxCj4BD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sV8gxCj4BD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sV8gxCj4BD .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-sV8gxCj4BD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sV8gxCj4BD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sV8gxCj4BD .mbr-card-text {
  margin: 0;
}
.cid-sV8gxD65ET {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-sV8gxD65ET .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-sV8gxD65ET .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sV8gxD65ET .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sV8gxD65ET .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-sV8gxD65ET .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-sV8gxD65ET .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sV8gxD65ET .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-sV8gxD65ET .input-group-btn {
  padding-left: 0;
}
.cid-sV8gxD65ET .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sV8gxD65ET .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sV8gxD65ET .mbr-text {
  color: #444;
}
.cid-sV8gxD65ET h5 {
  margin-bottom: 0;
}
.cid-sV8gxD65ET .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sV8gxD65ET .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sV8gxD65ET .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sV8gxD65ET .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sV8gxD65ET .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sV8gxD65ET .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sV8gxD65ET .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sV8gxD65ET .social-list a:hover {
  opacity: 0.4;
}
.cid-sV8gxD65ET .media-container-row > div {
  padding: 0px;
}
.cid-sV8gxD65ET .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-sV8gxD65ET .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-sV8gxD65ET .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sV8gxD65ET .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sV8gxD65ET .social-list,
  .cid-sV8gxD65ET .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sV8gxD65ET h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sV8gxD65ET .form-group {
    max-width: 180px;
  }
}
.cid-sV8gxD65ET .links span {
  color: #9e9e9e;
}
.cid-sV8gxD65ET .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-sV8gxD65ET .logo-title {
  text-align: center;
}
.cid-sV8gxD65ET .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sV8gxD65ET .logo-title,
.cid-sV8gxD65ET .logo {
  color: #f5f7fa;
}
.cid-sV8gxE0UYX {
  background-color: #669b9b;
}
.cid-sV8gxE0UYX svg {
  position: absolute;
  top: 0;
}
.cid-sV8gxE0UYX .svg-1 {
  fill: #008b8b;
}
.cid-sV8gxE0UYX .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-sV8gxE0UYX {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-sV8gxE0UYX {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-sV8gxE0UYX .mbr-text {
  color: #b1bee0;
}
.cid-sV8gxE0UYX a {
  text-decoration: underline;
}
.cid-sV8gxE0UYX a,
.cid-sV8gxE0UYX a:hover {
  font-weight: 400 !important;
}
.cid-sV8gxE0UYX .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssY4gFLQAh .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssY4gFLQAh .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssY4gFLQAh a {
  font-style: normal;
}
.cid-ssY4gFLQAh .show {
  overflow: visible;
}
.cid-ssY4gFLQAh .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssY4gFLQAh .dropdown-item:active {
  background-color: transparent;
}
.cid-ssY4gFLQAh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssY4gFLQAh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .nav-item:focus,
.cid-ssY4gFLQAh .nav-link:focus {
  outline: none;
}
.cid-ssY4gFLQAh .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssY4gFLQAh .menu-logo {
  margin-right: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssY4gFLQAh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssY4gFLQAh .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssY4gFLQAh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssY4gFLQAh button.navbar-toggler:focus {
  outline: none;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssY4gFLQAh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssY4gFLQAh .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssY4gFLQAh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .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-ssY4gFLQAh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssY4gFLQAh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssY4gFLQAh .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;
}
@media (max-width: 991px) {
  .cid-ssY4gFLQAh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh img {
    height: 3.8rem !important;
  }
  .cid-ssY4gFLQAh .btn {
    display: -webkit-flex;
  }
  .cid-ssY4gFLQAh button.navbar-toggler {
    display: block;
  }
  .cid-ssY4gFLQAh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing,
  .cid-ssY4gFLQAh .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .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-ssY4gFLQAh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssY4gFLQAh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssY4gFLQAh .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;
  }
}
@media (max-width: 767px) {
  .cid-ssY4gFLQAh .nav-link {
    justify-content: start !important;
  }
  .cid-ssY4gFLQAh .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssY4gFLQAh .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssY4gFLQAh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssY4gFLQAh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssY4gFLQAh .nav-link:hover,
.cid-ssY4gFLQAh .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssY4gFLQAh .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
#custom-html-fz {
  /* table */
  /* media queries */
}
#custom-html-fz strong {
  font-weight: bold;
}
#custom-html-fz H3 {
  font-size: 24px;
  color: black;
}
#custom-html-fz .xxxxx {
  width: 100%;
  padding: 20px;
  border: 1px solid white;
  background-color: white;
}
#custom-html-fz .btn {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  color: white;
  width: 200px;
  text-align: center;
}
#custom-html-fz .rg-container {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  padding: 1em 0.5em;
  color: #1a1a1a;
}
#custom-html-fz .rg-header {
  margin-bottom: 1em;
}
#custom-html-fz .rg-hed {
  font-weight: bold;
  font-size: 1.4em;
}
#custom-html-fz .rg-dek {
  font-size: 1em;
}
#custom-html-fz .rg-source-and-credit {
  width: 100%;
  overflow: hidden;
}
#custom-html-fz .rg-source {
  margin: 0;
  float: left;
  font-weight: bold;
  font-size: 0.75em;
}
#custom-html-fz .rg-source .pre-colon {
  text-transform: uppercase;
}
#custom-html-fz table.rg-table {
  width: 100%;
  margin-bottom: 0.5em;
  font-size: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
#custom-html-fz table.rg-table * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-align: left;
  color: #333;
}
#custom-html-fz table.rg-table thead {
  border-bottom: 1px solid #ddd;
}
#custom-html-fz table.rg-table tr {
  border-bottom: 1px solid #ddd;
  color: #222;
}
#custom-html-fz table.rg-table tr.highlight {
  background: #efefef;
}
#custom-html-fz table.rg-table.zebra tr:nth-child(even) {
  background: #efefef;
}
#custom-html-fz table.rg-table th {
  font-weight: bold;
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-fz table.rg-table td {
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-fz table.rg-table .highlight td {
  font-weight: bold;
}
#custom-html-fz table.rg-table th.number,
#custom-html-fz td.number {
  text-align: right;
}
@media screen and (max-width: 600px) {
  #custom-html-fz .rg-container {
    max-width: 600px;
    margin: 0 auto;
  }
  #custom-html-fz table.rg-table {
    display: block;
    width: 100%;
  }
  #custom-html-fz table.rg-table tr.hide-mobile,
  #custom-html-fz table.rg-table th.hide-mobile,
  #custom-html-fz table.rg-table td.hide-mobile {
    display: none;
  }
  #custom-html-fz table.rg-table thead {
    display: none;
  }
  #custom-html-fz table.rg-table tbody {
    display: block;
    width: 100%;
  }
  #custom-html-fz table.rg-table tr,
  #custom-html-fz table.rg-table th,
  #custom-html-fz table.rg-table td {
    display: block;
    padding: 0;
  }
  #custom-html-fz table.rg-table tr {
    border-bottom: none;
    margin: 0 0 1em 0;
    padding: 0.5em 0;
  }
  #custom-html-fz table.rg-table tr.highlight {
    background: none;
  }
  #custom-html-fz table.rg-table.zebra tr:nth-child(even) {
    background: none;
  }
  #custom-html-fz table.rg-table.zebra td:nth-child(even) {
    background: #efefef;
  }
  #custom-html-fz table.rg-table tr:nth-child(even) {
    background: none;
  }
  #custom-html-fz table.rg-table td {
    padding: 0.5em 0 0.25em 0;
    border-bottom: 1px dotted #ccc;
    text-align: right;
  }
  #custom-html-fz table.rg-table td[data-title]:before {
    content: attr(data-title) ":A0";
    font-weight: bold;
    display: inline-block;
    content: attr(data-title);
    float: left;
    margin-right: 0.5em;
    font-size: 0.95em;
  }
  #custom-html-fz table.rg-table td:last-child {
    padding-right: 0;
    border-bottom: 2px solid #ccc;
  }
  #custom-html-fz table.rg-table td:empty {
    display: none;
  }
  #custom-html-fz table.rg-table .highlight td {
    background: none;
  }
}
.cid-tezBpAfWZH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-tezBpAfWZH .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-tezBpAfWZH .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tezBpAfWZH .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tezBpAfWZH .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-tezBpAfWZH .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-tezBpAfWZH .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tezBpAfWZH .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tezBpAfWZH .input-group-btn {
  padding-left: 0;
}
.cid-tezBpAfWZH .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tezBpAfWZH .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tezBpAfWZH .mbr-text {
  color: #444;
}
.cid-tezBpAfWZH h5 {
  margin-bottom: 0;
}
.cid-tezBpAfWZH .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tezBpAfWZH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tezBpAfWZH .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tezBpAfWZH .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tezBpAfWZH .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tezBpAfWZH .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tezBpAfWZH .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tezBpAfWZH .social-list a:hover {
  opacity: 0.4;
}
.cid-tezBpAfWZH .media-container-row > div {
  padding: 0px;
}
.cid-tezBpAfWZH .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-tezBpAfWZH .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-tezBpAfWZH .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tezBpAfWZH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tezBpAfWZH .social-list,
  .cid-tezBpAfWZH .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tezBpAfWZH h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tezBpAfWZH .form-group {
    max-width: 180px;
  }
}
.cid-tezBpAfWZH .links span {
  color: #9e9e9e;
}
.cid-tezBpAfWZH .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-tezBpAfWZH .logo-title {
  text-align: center;
}
.cid-tezBpAfWZH .logo-sub-title i {
  color: #9e9e9e;
}
.cid-tezBpAfWZH .logo-title,
.cid-tezBpAfWZH .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssY4gFLQAh .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssY4gFLQAh .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssY4gFLQAh a {
  font-style: normal;
}
.cid-ssY4gFLQAh .show {
  overflow: visible;
}
.cid-ssY4gFLQAh .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssY4gFLQAh .dropdown-item:active {
  background-color: transparent;
}
.cid-ssY4gFLQAh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssY4gFLQAh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .nav-item:focus,
.cid-ssY4gFLQAh .nav-link:focus {
  outline: none;
}
.cid-ssY4gFLQAh .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssY4gFLQAh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssY4gFLQAh .menu-logo {
  margin-right: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssY4gFLQAh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssY4gFLQAh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssY4gFLQAh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssY4gFLQAh .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssY4gFLQAh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssY4gFLQAh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssY4gFLQAh button.navbar-toggler:focus {
  outline: none;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssY4gFLQAh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssY4gFLQAh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssY4gFLQAh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssY4gFLQAh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssY4gFLQAh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssY4gFLQAh .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssY4gFLQAh .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssY4gFLQAh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssY4gFLQAh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssY4gFLQAh .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-ssY4gFLQAh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssY4gFLQAh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssY4gFLQAh .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;
}
@media (max-width: 991px) {
  .cid-ssY4gFLQAh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh img {
    height: 3.8rem !important;
  }
  .cid-ssY4gFLQAh .btn {
    display: -webkit-flex;
  }
  .cid-ssY4gFLQAh button.navbar-toggler {
    display: block;
  }
  .cid-ssY4gFLQAh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssY4gFLQAh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing,
  .cid-ssY4gFLQAh .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssY4gFLQAh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssY4gFLQAh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssY4gFLQAh .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-ssY4gFLQAh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssY4gFLQAh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssY4gFLQAh .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;
  }
}
@media (max-width: 767px) {
  .cid-ssY4gFLQAh .nav-link {
    justify-content: start !important;
  }
  .cid-ssY4gFLQAh .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssY4gFLQAh .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssY4gFLQAh .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssY4gFLQAh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssY4gFLQAh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssY4gFLQAh .nav-link:hover,
.cid-ssY4gFLQAh .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssY4gFLQAh .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssY4gFLQAh .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sICPywj086 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sICPywj086 .container-fluid {
  padding: 0 3rem;
}
.cid-sICPywj086 .mbr-section-subtitle {
  color: #767676;
}
.cid-sICPywj086 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sICPywj086 .table-wrapper {
  margin: 0 auto;
}
.cid-sICPywj086 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sICPywj086 table thead tr {
  border: none !important;
}
.cid-sICPywj086 table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sICPywj086 table tr td {
  border-color: #eceeef;
}
.cid-sICPywj086 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sICPywj086 th:after,
.cid-sICPywj086 th:before {
  display: none !important;
}
.cid-sICPywj086 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sICPywj086 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sICPywj086 table th,
  .cid-sICPywj086 table td {
    padding: .75rem;
  }
}
.cid-sICPywj086 .body-item {
  text-align: left;
}
.cid-sICPywj086 .mbr-text {
  color: #767676;
}
.cid-sICPywj086 .head-item {
  color: #232323;
}
.cid-sICPywj086 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-tezBsqA1cp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-tezBsqA1cp .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-tezBsqA1cp .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tezBsqA1cp .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tezBsqA1cp .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-tezBsqA1cp .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-tezBsqA1cp .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tezBsqA1cp .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tezBsqA1cp .input-group-btn {
  padding-left: 0;
}
.cid-tezBsqA1cp .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tezBsqA1cp .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tezBsqA1cp .mbr-text {
  color: #444;
}
.cid-tezBsqA1cp h5 {
  margin-bottom: 0;
}
.cid-tezBsqA1cp .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tezBsqA1cp .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tezBsqA1cp .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tezBsqA1cp .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tezBsqA1cp .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tezBsqA1cp .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tezBsqA1cp .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tezBsqA1cp .social-list a:hover {
  opacity: 0.4;
}
.cid-tezBsqA1cp .media-container-row > div {
  padding: 0px;
}
.cid-tezBsqA1cp .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-tezBsqA1cp .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-tezBsqA1cp .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tezBsqA1cp .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tezBsqA1cp .social-list,
  .cid-tezBsqA1cp .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tezBsqA1cp h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tezBsqA1cp .form-group {
    max-width: 180px;
  }
}
.cid-tezBsqA1cp .links span {
  color: #9e9e9e;
}
.cid-tezBsqA1cp .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-tezBsqA1cp .logo-title {
  text-align: center;
}
.cid-tezBsqA1cp .logo-sub-title i {
  color: #9e9e9e;
}
.cid-tezBsqA1cp .logo-title,
.cid-tezBsqA1cp .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tHPC6SVOSd .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tHPC6SVOSd .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-tHPC6SVOSd a {
  font-style: normal;
}
.cid-tHPC6SVOSd .show {
  overflow: visible;
}
.cid-tHPC6SVOSd .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-tHPC6SVOSd .dropdown-item:active {
  background-color: transparent;
}
.cid-tHPC6SVOSd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tHPC6SVOSd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tHPC6SVOSd .nav-item:focus,
.cid-tHPC6SVOSd .nav-link:focus {
  outline: none;
}
.cid-tHPC6SVOSd .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tHPC6SVOSd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tHPC6SVOSd .menu-logo {
  margin-right: auto;
}
.cid-tHPC6SVOSd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHPC6SVOSd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tHPC6SVOSd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHPC6SVOSd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tHPC6SVOSd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHPC6SVOSd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHPC6SVOSd .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tHPC6SVOSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tHPC6SVOSd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHPC6SVOSd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHPC6SVOSd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHPC6SVOSd .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tHPC6SVOSd .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tHPC6SVOSd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tHPC6SVOSd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHPC6SVOSd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tHPC6SVOSd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHPC6SVOSd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tHPC6SVOSd .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tHPC6SVOSd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tHPC6SVOSd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHPC6SVOSd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHPC6SVOSd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHPC6SVOSd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHPC6SVOSd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-tHPC6SVOSd button.navbar-toggler:focus {
  outline: none;
}
.cid-tHPC6SVOSd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-tHPC6SVOSd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHPC6SVOSd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPC6SVOSd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPC6SVOSd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHPC6SVOSd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHPC6SVOSd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHPC6SVOSd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHPC6SVOSd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-tHPC6SVOSd .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-tHPC6SVOSd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tHPC6SVOSd .collapsed .btn {
  display: -webkit-flex;
}
.cid-tHPC6SVOSd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHPC6SVOSd .collapsed .navbar-collapse.collapsing,
.cid-tHPC6SVOSd .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tHPC6SVOSd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHPC6SVOSd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHPC6SVOSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHPC6SVOSd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHPC6SVOSd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHPC6SVOSd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHPC6SVOSd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHPC6SVOSd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tHPC6SVOSd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHPC6SVOSd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHPC6SVOSd .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-tHPC6SVOSd .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHPC6SVOSd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tHPC6SVOSd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tHPC6SVOSd .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-tHPC6SVOSd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHPC6SVOSd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHPC6SVOSd .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;
}
@media (max-width: 991px) {
  .cid-tHPC6SVOSd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tHPC6SVOSd img {
    height: 3.8rem !important;
  }
  .cid-tHPC6SVOSd .btn {
    display: -webkit-flex;
  }
  .cid-tHPC6SVOSd button.navbar-toggler {
    display: block;
  }
  .cid-tHPC6SVOSd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tHPC6SVOSd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tHPC6SVOSd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHPC6SVOSd .navbar-collapse.collapsing,
  .cid-tHPC6SVOSd .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tHPC6SVOSd .navbar-collapse.collapsing .navbar-nav,
  .cid-tHPC6SVOSd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHPC6SVOSd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHPC6SVOSd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHPC6SVOSd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHPC6SVOSd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHPC6SVOSd .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHPC6SVOSd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tHPC6SVOSd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHPC6SVOSd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHPC6SVOSd .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-tHPC6SVOSd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tHPC6SVOSd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHPC6SVOSd .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;
  }
}
@media (max-width: 767px) {
  .cid-tHPC6SVOSd .nav-link {
    justify-content: start !important;
  }
  .cid-tHPC6SVOSd .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tHPC6SVOSd .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tHPC6SVOSd .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tHPC6SVOSd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tHPC6SVOSd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tHPC6SVOSd .nav-link:hover,
.cid-tHPC6SVOSd .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-tHPC6SVOSd .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tHPC6SVOSd .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tHPC6TmBBH {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-tHPC6TmBBH h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHPC6TmBBH .container {
    position: relative;
  }
  .cid-tHPC6TmBBH .row {
    margin: 0;
  }
  .cid-tHPC6TmBBH h2 {
    margin: 0;
  }
}
.cid-tHPC6TmBBH .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tHPC6TmBBH .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-tHPC6TmBBH h2 {
  color: #0a1c44;
}
.cid-tHPC6TARgj {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #7eb9b9;
  position: relative;
  overflow: hidden;
}
.cid-tHPC6TARgj svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tHPC6TARgj #e1_ellipse {
  fill: #ffffff !important;
}
.cid-tHPC6TARgj img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-tHPC6TARgj img {
    width: 100%;
    left: 0;
  }
}
.cid-tHPC6TARgj H1 {
  color: #008b8b;
}
.cid-tHPC6TARgj .mbr-text,
.cid-tHPC6TARgj .mbr-section-btn {
  color: #000000;
}
.cid-tHPC6TARgj H3 {
  color: #333333;
}
.cid-tHPJxE4YK3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHPJxE4YK3 H1 {
  color: #f5f7fa;
}
.cid-tHPJxE4YK3 .mbr-text,
.cid-tHPJxE4YK3 .mbr-section-btn {
  color: #f5f7fa;
}
.cid-tHPJxE4YK3 H3 {
  color: #716c80;
}
.cid-tHPC6TRcQD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tHPC6TRcQD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tHPC6TRcQD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHPC6TRcQD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tHPC6TRcQD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tHPC6TRcQD .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-tHPC6TRcQD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tHPC6TRcQD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tHPC6TRcQD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tHPC6TRcQD .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-tHPC6U9eNK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-tHPC6U9eNK .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-tHPC6U9eNK .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tHPC6U9eNK .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tHPC6U9eNK .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-tHPC6U9eNK .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-tHPC6U9eNK .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tHPC6U9eNK .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tHPC6U9eNK .input-group-btn {
  padding-left: 0;
}
.cid-tHPC6U9eNK .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tHPC6U9eNK .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tHPC6U9eNK .mbr-text {
  color: #444;
}
.cid-tHPC6U9eNK h5 {
  margin-bottom: 0;
}
.cid-tHPC6U9eNK .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tHPC6U9eNK .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHPC6U9eNK .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tHPC6U9eNK .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHPC6U9eNK .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHPC6U9eNK .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHPC6U9eNK .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHPC6U9eNK .social-list a:hover {
  opacity: 0.4;
}
.cid-tHPC6U9eNK .media-container-row > div {
  padding: 0px;
}
.cid-tHPC6U9eNK .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-tHPC6U9eNK .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-tHPC6U9eNK .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHPC6U9eNK .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHPC6U9eNK .social-list,
  .cid-tHPC6U9eNK .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHPC6U9eNK h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tHPC6U9eNK .form-group {
    max-width: 180px;
  }
}
.cid-tHPC6U9eNK .links span {
  color: #9e9e9e;
}
.cid-tHPC6U9eNK .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-tHPC6U9eNK .logo-title {
  text-align: center;
}
.cid-tHPC6U9eNK .logo-sub-title i {
  color: #9e9e9e;
}
.cid-tHPC6U9eNK .logo-title,
.cid-tHPC6U9eNK .logo {
  color: #f5f7fa;
}
.cid-tHPC6UJpAA {
  background-color: #669b9b;
}
.cid-tHPC6UJpAA svg {
  position: absolute;
  top: 0;
}
.cid-tHPC6UJpAA .svg-1 {
  fill: #008b8b;
}
.cid-tHPC6UJpAA .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-tHPC6UJpAA {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tHPC6UJpAA {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-tHPC6UJpAA .mbr-text {
  color: #b1bee0;
}
.cid-tHPC6UJpAA a {
  text-decoration: underline;
}
.cid-tHPC6UJpAA a,
.cid-tHPC6UJpAA a:hover {
  font-weight: 400 !important;
}
.cid-tHPC6UJpAA .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tNL6Hk6ZQw .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNL6Hk6ZQw .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-tNL6Hk6ZQw a {
  font-style: normal;
}
.cid-tNL6Hk6ZQw .show {
  overflow: visible;
}
.cid-tNL6Hk6ZQw .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-tNL6Hk6ZQw .dropdown-item:active {
  background-color: transparent;
}
.cid-tNL6Hk6ZQw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tNL6Hk6ZQw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tNL6Hk6ZQw .nav-item:focus,
.cid-tNL6Hk6ZQw .nav-link:focus {
  outline: none;
}
.cid-tNL6Hk6ZQw .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tNL6Hk6ZQw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tNL6Hk6ZQw .menu-logo {
  margin-right: auto;
}
.cid-tNL6Hk6ZQw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNL6Hk6ZQw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tNL6Hk6ZQw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tNL6Hk6ZQw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tNL6Hk6ZQw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tNL6Hk6ZQw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tNL6Hk6ZQw .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tNL6Hk6ZQw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tNL6Hk6ZQw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tNL6Hk6ZQw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tNL6Hk6ZQw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tNL6Hk6ZQw .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tNL6Hk6ZQw .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tNL6Hk6ZQw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tNL6Hk6ZQw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNL6Hk6ZQw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tNL6Hk6ZQw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNL6Hk6ZQw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tNL6Hk6ZQw .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tNL6Hk6ZQw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tNL6Hk6ZQw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tNL6Hk6ZQw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tNL6Hk6ZQw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tNL6Hk6ZQw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tNL6Hk6ZQw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-tNL6Hk6ZQw button.navbar-toggler:focus {
  outline: none;
}
.cid-tNL6Hk6ZQw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-tNL6Hk6ZQw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNL6Hk6ZQw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNL6Hk6ZQw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNL6Hk6ZQw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNL6Hk6ZQw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNL6Hk6ZQw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNL6Hk6ZQw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNL6Hk6ZQw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-tNL6Hk6ZQw .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-tNL6Hk6ZQw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tNL6Hk6ZQw .collapsed .btn {
  display: -webkit-flex;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.collapsing,
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tNL6Hk6ZQw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tNL6Hk6ZQw .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-tNL6Hk6ZQw .collapsed button.navbar-toggler {
  display: block;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tNL6Hk6ZQw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tNL6Hk6ZQw .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-tNL6Hk6ZQw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tNL6Hk6ZQw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tNL6Hk6ZQw .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;
}
@media (max-width: 991px) {
  .cid-tNL6Hk6ZQw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tNL6Hk6ZQw img {
    height: 3.8rem !important;
  }
  .cid-tNL6Hk6ZQw .btn {
    display: -webkit-flex;
  }
  .cid-tNL6Hk6ZQw button.navbar-toggler {
    display: block;
  }
  .cid-tNL6Hk6ZQw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tNL6Hk6ZQw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tNL6Hk6ZQw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tNL6Hk6ZQw .navbar-collapse.collapsing,
  .cid-tNL6Hk6ZQw .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tNL6Hk6ZQw .navbar-collapse.collapsing .navbar-nav,
  .cid-tNL6Hk6ZQw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tNL6Hk6ZQw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tNL6Hk6ZQw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tNL6Hk6ZQw .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tNL6Hk6ZQw .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tNL6Hk6ZQw .navbar-collapse.collapsing .navbar-buttons,
  .cid-tNL6Hk6ZQw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tNL6Hk6ZQw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tNL6Hk6ZQw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tNL6Hk6ZQw .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-tNL6Hk6ZQw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tNL6Hk6ZQw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tNL6Hk6ZQw .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;
  }
}
@media (max-width: 767px) {
  .cid-tNL6Hk6ZQw .nav-link {
    justify-content: start !important;
  }
  .cid-tNL6Hk6ZQw .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tNL6Hk6ZQw .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tNL6Hk6ZQw .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tNL6Hk6ZQw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tNL6Hk6ZQw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tNL6Hk6ZQw .nav-link:hover,
.cid-tNL6Hk6ZQw .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-tNL6Hk6ZQw .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tNL6Hk6ZQw .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tNL6HkAIgU {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-tNL6HkAIgU h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tNL6HkAIgU .container {
    position: relative;
  }
  .cid-tNL6HkAIgU .row {
    margin: 0;
  }
  .cid-tNL6HkAIgU h2 {
    margin: 0;
  }
}
.cid-tNL6HkAIgU .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tNL6HkAIgU .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-tNL6HkAIgU h2 {
  color: #0a1c44;
}
.cid-tNL6HkPW0d {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
#custom-html-jx {
  /* table */
  /* media queries */
}
#custom-html-jx strong {
  font-weight: bold;
}
#custom-html-jx H3 {
  font-size: 24px;
  color: black;
}
#custom-html-jx .xxxxx {
  width: 100%;
  padding: 20px;
  border: 1px solid white;
  background-color: white;
}
#custom-html-jx .btn {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  color: white;
  width: 200px;
  text-align: center;
}
#custom-html-jx .rg-container {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  padding: 1em 0.5em;
  color: #1a1a1a;
}
#custom-html-jx .rg-header {
  margin-bottom: 1em;
}
#custom-html-jx .rg-hed {
  font-weight: bold;
  font-size: 1.4em;
}
#custom-html-jx .rg-dek {
  font-size: 1em;
}
#custom-html-jx .rg-source-and-credit {
  width: 100%;
  overflow: hidden;
}
#custom-html-jx .rg-source {
  margin: 0;
  float: left;
  font-weight: bold;
  font-size: 0.75em;
}
#custom-html-jx .rg-source .pre-colon {
  text-transform: uppercase;
}
#custom-html-jx table.rg-table {
  width: 100%;
  margin-bottom: 0.5em;
  font-size: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
#custom-html-jx table.rg-table * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-align: left;
  color: #333;
}
#custom-html-jx table.rg-table thead {
  border-bottom: 1px solid #ddd;
}
#custom-html-jx table.rg-table tr {
  border-bottom: 1px solid #ddd;
  color: #222;
}
#custom-html-jx table.rg-table tr.highlight {
  background: #efefef;
}
#custom-html-jx table.rg-table.zebra tr:nth-child(even) {
  background: #efefef;
}
#custom-html-jx table.rg-table th {
  font-weight: bold;
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-jx table.rg-table td {
  padding: 0.35em;
  font-size: 0.9em;
}
#custom-html-jx table.rg-table .highlight td {
  font-weight: bold;
}
#custom-html-jx table.rg-table th.number,
#custom-html-jx td.number {
  text-align: right;
}
@media screen and (max-width: 600px) {
  #custom-html-jx .rg-container {
    max-width: 600px;
    margin: 0 auto;
  }
  #custom-html-jx table.rg-table {
    display: block;
    width: 100%;
  }
  #custom-html-jx table.rg-table tr.hide-mobile,
  #custom-html-jx table.rg-table th.hide-mobile,
  #custom-html-jx table.rg-table td.hide-mobile {
    display: none;
  }
  #custom-html-jx table.rg-table thead {
    display: none;
  }
  #custom-html-jx table.rg-table tbody {
    display: block;
    width: 100%;
  }
  #custom-html-jx table.rg-table tr,
  #custom-html-jx table.rg-table th,
  #custom-html-jx table.rg-table td {
    display: block;
    padding: 0;
  }
  #custom-html-jx table.rg-table tr {
    border-bottom: none;
    margin: 0 0 1em 0;
    padding: 0.5em 0;
  }
  #custom-html-jx table.rg-table tr.highlight {
    background: none;
  }
  #custom-html-jx table.rg-table.zebra tr:nth-child(even) {
    background: none;
  }
  #custom-html-jx table.rg-table.zebra td:nth-child(even) {
    background: #efefef;
  }
  #custom-html-jx table.rg-table tr:nth-child(even) {
    background: none;
  }
  #custom-html-jx table.rg-table td {
    padding: 0.5em 0 0.25em 0;
    border-bottom: 1px dotted #ccc;
    text-align: right;
  }
  #custom-html-jx table.rg-table td[data-title]:before {
    content: attr(data-title) ":A0";
    font-weight: bold;
    display: inline-block;
    content: attr(data-title);
    float: left;
    margin-right: 0.5em;
    font-size: 0.95em;
  }
  #custom-html-jx table.rg-table td:last-child {
    padding-right: 0;
    border-bottom: 2px solid #ccc;
  }
  #custom-html-jx table.rg-table td:empty {
    display: none;
  }
  #custom-html-jx table.rg-table .highlight td {
    background: none;
  }
}
.cid-tNL6Hl9FbN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-tNL6Hl9FbN .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-tNL6Hl9FbN .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tNL6Hl9FbN .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tNL6Hl9FbN .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-tNL6Hl9FbN .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-tNL6Hl9FbN .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tNL6Hl9FbN .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tNL6Hl9FbN .input-group-btn {
  padding-left: 0;
}
.cid-tNL6Hl9FbN .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tNL6Hl9FbN .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tNL6Hl9FbN .mbr-text {
  color: #444;
}
.cid-tNL6Hl9FbN h5 {
  margin-bottom: 0;
}
.cid-tNL6Hl9FbN .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tNL6Hl9FbN .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNL6Hl9FbN .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tNL6Hl9FbN .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNL6Hl9FbN .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tNL6Hl9FbN .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tNL6Hl9FbN .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tNL6Hl9FbN .social-list a:hover {
  opacity: 0.4;
}
.cid-tNL6Hl9FbN .media-container-row > div {
  padding: 0px;
}
.cid-tNL6Hl9FbN .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-tNL6Hl9FbN .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-tNL6Hl9FbN .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tNL6Hl9FbN .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tNL6Hl9FbN .social-list,
  .cid-tNL6Hl9FbN .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tNL6Hl9FbN h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tNL6Hl9FbN .form-group {
    max-width: 180px;
  }
}
.cid-tNL6Hl9FbN .links span {
  color: #9e9e9e;
}
.cid-tNL6Hl9FbN .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-tNL6Hl9FbN .logo-title {
  text-align: center;
}
.cid-tNL6Hl9FbN .logo-sub-title i {
  color: #9e9e9e;
}
.cid-tNL6Hl9FbN .logo-title,
.cid-tNL6Hl9FbN .logo {
  color: #f5f7fa;
}
.cid-tNL6HlPsNg {
  background-color: #669b9b;
}
.cid-tNL6HlPsNg svg {
  position: absolute;
  top: 0;
}
.cid-tNL6HlPsNg .svg-1 {
  fill: #008b8b;
}
.cid-tNL6HlPsNg .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-tNL6HlPsNg {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tNL6HlPsNg {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-tNL6HlPsNg .mbr-text {
  color: #b1bee0;
}
.cid-tNL6HlPsNg a {
  text-decoration: underline;
}
.cid-tNL6HlPsNg a,
.cid-tNL6HlPsNg a:hover {
  font-weight: 400 !important;
}
.cid-tNL6HlPsNg .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ssZ2v90iFe .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ssZ2v90iFe .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ssZ2v90iFe a {
  font-style: normal;
}
.cid-ssZ2v90iFe .show {
  overflow: visible;
}
.cid-ssZ2v90iFe .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ssZ2v90iFe .dropdown-item:active {
  background-color: transparent;
}
.cid-ssZ2v90iFe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ssZ2v90iFe .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ssZ2v90iFe .nav-item:focus,
.cid-ssZ2v90iFe .nav-link:focus {
  outline: none;
}
.cid-ssZ2v90iFe .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ssZ2v90iFe .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ssZ2v90iFe .menu-logo {
  margin-right: auto;
}
.cid-ssZ2v90iFe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssZ2v90iFe .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ssZ2v90iFe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ssZ2v90iFe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ssZ2v90iFe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ssZ2v90iFe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ssZ2v90iFe .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ssZ2v90iFe .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ssZ2v90iFe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ssZ2v90iFe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssZ2v90iFe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ssZ2v90iFe .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ssZ2v90iFe .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ssZ2v90iFe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ssZ2v90iFe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssZ2v90iFe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ssZ2v90iFe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssZ2v90iFe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ssZ2v90iFe .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ssZ2v90iFe .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ssZ2v90iFe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ssZ2v90iFe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ssZ2v90iFe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ssZ2v90iFe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ssZ2v90iFe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ssZ2v90iFe button.navbar-toggler:focus {
  outline: none;
}
.cid-ssZ2v90iFe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ssZ2v90iFe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ssZ2v90iFe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssZ2v90iFe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ssZ2v90iFe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ssZ2v90iFe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ssZ2v90iFe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ssZ2v90iFe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ssZ2v90iFe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ssZ2v90iFe .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ssZ2v90iFe .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssZ2v90iFe .collapsed .btn {
  display: -webkit-flex;
}
.cid-ssZ2v90iFe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ssZ2v90iFe .collapsed .navbar-collapse.collapsing,
.cid-ssZ2v90iFe .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ssZ2v90iFe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ssZ2v90iFe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ssZ2v90iFe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ssZ2v90iFe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ssZ2v90iFe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ssZ2v90iFe .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ssZ2v90iFe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ssZ2v90iFe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ssZ2v90iFe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ssZ2v90iFe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ssZ2v90iFe .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ssZ2v90iFe .collapsed button.navbar-toggler {
  display: block;
}
.cid-ssZ2v90iFe .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ssZ2v90iFe .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ssZ2v90iFe .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-ssZ2v90iFe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ssZ2v90iFe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ssZ2v90iFe .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;
}
@media (max-width: 991px) {
  .cid-ssZ2v90iFe.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssZ2v90iFe img {
    height: 3.8rem !important;
  }
  .cid-ssZ2v90iFe .btn {
    display: -webkit-flex;
  }
  .cid-ssZ2v90iFe button.navbar-toggler {
    display: block;
  }
  .cid-ssZ2v90iFe .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ssZ2v90iFe .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ssZ2v90iFe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ssZ2v90iFe .navbar-collapse.collapsing,
  .cid-ssZ2v90iFe .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ssZ2v90iFe .navbar-collapse.collapsing .navbar-nav,
  .cid-ssZ2v90iFe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ssZ2v90iFe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ssZ2v90iFe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ssZ2v90iFe .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ssZ2v90iFe .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssZ2v90iFe .navbar-collapse.collapsing .navbar-buttons,
  .cid-ssZ2v90iFe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ssZ2v90iFe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ssZ2v90iFe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ssZ2v90iFe .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-ssZ2v90iFe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ssZ2v90iFe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ssZ2v90iFe .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;
  }
}
@media (max-width: 767px) {
  .cid-ssZ2v90iFe .nav-link {
    justify-content: start !important;
  }
  .cid-ssZ2v90iFe .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ssZ2v90iFe .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ssZ2v90iFe .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ssZ2v90iFe .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ssZ2v90iFe .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ssZ2v90iFe .nav-link:hover,
.cid-ssZ2v90iFe .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ssZ2v90iFe .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ssZ2v90iFe .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ssZ2v9smUe {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ssZ2v9smUe h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ssZ2v9smUe .container {
    position: relative;
  }
  .cid-ssZ2v9smUe .row {
    margin: 0;
  }
  .cid-ssZ2v9smUe h2 {
    margin: 0;
  }
}
.cid-ssZ2v9smUe .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ssZ2v9smUe .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ssZ2v9smUe h2 {
  color: #0a1c44;
}
.cid-sGsOSIO9QZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-sGsOSIO9QZ .col-lg-6 {
  padding: 0 2rem;
}
.cid-sGsOSIO9QZ .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-sGsOSIO9QZ .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-sGsOSIO9QZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sGsOSIO9QZ .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-sGsOSIO9QZ .card-wrapper:hover {
  background: #f8f9fb;
}
.cid-sGsOSIO9QZ .mbr-iconfont {
  font-size: 3rem;
  color: #0196e3;
  padding: 2.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
}
.cid-sGsOSIO9QZ .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-sGsOSIO9QZ .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sGsOSIO9QZ .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-sGsOSIO9QZ .card-text {
  color: #6c758f;
}
.cid-sGsOSIO9QZ .card-title {
  color: #0196e3;
}
.cid-sV8gOw07kR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-u1VhxyvWrY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #73c8f1;
}
.cid-u1VhxyvWrY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1VhxyvWrY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1VhxyvWrY .mbr-section-title {
  color: #1d6349;
}
.cid-u1VhyJadoH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e0f5ff;
}
.cid-u1VhyJadoH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1VhyJadoH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1VhyJadoH .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-u1VhyJadoH .card {
    margin-bottom: 2rem!important;
  }
  .cid-u1VhyJadoH .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u1VhyJadoH .link-wrap {
    align-items: center;
  }
}
.cid-u1VhyJadoH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u1VhyJadoH .card-title,
.cid-u1VhyJadoH .card-box {
  text-align: center;
  color: #000000;
}
.cid-u1VhyJadoH .mbr-text,
.cid-u1VhyJadoH .link-wrap,
.cid-u1VhyJadoH .mbr-section-btn {
  color: #000000;
}
.cid-sGfV7nUU8b {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-sGfV7nUU8b .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sGfV7nUU8b .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sGfV7nUU8b .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sGfV7nUU8b .card-title,
.cid-sGfV7nUU8b .card-img {
  color: #f5f7fa;
}
.cid-sGfV7nUU8b .mbr-text,
.cid-sGfV7nUU8b .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sGfViuqcZv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-sGfViuqcZv .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sGfViuqcZv .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sGfViuqcZv .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sGfViuqcZv .price-tage > p {
  letter-spacing: 2px;
}
.cid-sGfViuqcZv .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sGfViuqcZv .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sGfViuqcZv .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sGfViuqcZv .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sGfViuqcZv .costs {
  color: #ffffff;
}
.cid-sGfViuqcZv .costs-title {
  color: #ffffff;
}
.cid-sGfViuqcZv .table-content,
.cid-sGfViuqcZv .mbr-section-btn {
  color: #0a1c44;
}
.cid-sGfViY2mPV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #79afe1;
}
.cid-sGfViY2mPV .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sGfViY2mPV .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sGfViY2mPV .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sGfViY2mPV .price-tage > p {
  letter-spacing: 2px;
}
.cid-sGfViY2mPV .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sGfViY2mPV .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sGfViY2mPV .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sGfViY2mPV .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sGfViY2mPV .costs {
  color: #ffffff;
}
.cid-sGfViY2mPV .costs-title {
  color: #ffffff;
}
.cid-sGfViY2mPV .table-content,
.cid-sGfViY2mPV .mbr-section-btn {
  color: #0a1c44;
}
.cid-sGfV83NEjf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2973b8;
}
.cid-sGfV83NEjf .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sGfV83NEjf .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sGfV83NEjf .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sGfV83NEjf .card-title,
.cid-sGfV83NEjf .card-img {
  color: #f5f7fa;
}
.cid-sGfV83NEjf .mbr-text,
.cid-sGfV83NEjf .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sGfVjyovih {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-sGfVjyovih .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-sGfVjyovih .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-sGfVjyovih .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-sGfVjyovih .price-tage > p {
  letter-spacing: 2px;
}
.cid-sGfVjyovih .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-sGfVjyovih .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-sGfVjyovih .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-sGfVjyovih .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-sGfVjyovih .costs {
  color: #ffffff;
}
.cid-sGfVjyovih .costs-title {
  color: #ffffff;
}
.cid-sGfVjyovih .table-content,
.cid-sGfVjyovih .mbr-section-btn {
  color: #0a1c44;
}
.cid-tezcH23GmT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-tezcH23GmT .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-tezcH23GmT .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-tezcH23GmT .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-tezcH23GmT .price-tage > p {
  letter-spacing: 2px;
}
.cid-tezcH23GmT .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-tezcH23GmT .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-tezcH23GmT .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-tezcH23GmT .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-tezcH23GmT .costs {
  color: #ffffff;
}
.cid-tezcH23GmT .costs-title {
  color: #ffffff;
}
.cid-tezcH23GmT .table-content,
.cid-tezcH23GmT .mbr-section-btn {
  color: #0a1c44;
}
.cid-tezHEUExIa {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #7eb9b9;
}
.cid-tezHEUExIa .mbr-section-title {
  color: #ffffff;
}
.cid-tezHEUExIa .mbr-section-subtitle {
  color: #232323;
}
.cid-swgc3M9FY6 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #7eb9b9;
}
.cid-swgc3M9FY6 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-swgc3M9FY6 .card .card-wrapper {
  background: #008b8b;
  height: 1%;
}
.cid-swgc3M9FY6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-swgc3M9FY6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-swgc3M9FY6 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-swgc3M9FY6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-swgc3M9FY6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-swgc3M9FY6 .mbr-card-text {
  margin: 0;
}
.cid-st3nJLXKiS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-st3nJLXKiS .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-st3nJLXKiS .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-st3nJLXKiS .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-st3nJLXKiS .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-st3nJLXKiS .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-st3nJLXKiS .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-st3nJLXKiS .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-st3nJLXKiS .input-group-btn {
  padding-left: 0;
}
.cid-st3nJLXKiS .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-st3nJLXKiS .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-st3nJLXKiS .mbr-text {
  color: #444;
}
.cid-st3nJLXKiS h5 {
  margin-bottom: 0;
}
.cid-st3nJLXKiS .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st3nJLXKiS .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-st3nJLXKiS .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-st3nJLXKiS .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st3nJLXKiS .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-st3nJLXKiS .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st3nJLXKiS .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-st3nJLXKiS .social-list a:hover {
  opacity: 0.4;
}
.cid-st3nJLXKiS .media-container-row > div {
  padding: 0px;
}
.cid-st3nJLXKiS .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-st3nJLXKiS .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-st3nJLXKiS .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-st3nJLXKiS .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-st3nJLXKiS .social-list,
  .cid-st3nJLXKiS .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-st3nJLXKiS h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-st3nJLXKiS .form-group {
    max-width: 180px;
  }
}
.cid-st3nJLXKiS .links span {
  color: #9e9e9e;
}
.cid-st3nJLXKiS .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-st3nJLXKiS .logo-title {
  text-align: center;
}
.cid-st3nJLXKiS .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st3nJLXKiS .logo-title,
.cid-st3nJLXKiS .logo {
  color: #f5f7fa;
}
.cid-st7zpUbrrH {
  background-color: #669b9b;
}
.cid-st7zpUbrrH svg {
  position: absolute;
  top: 0;
}
.cid-st7zpUbrrH .svg-1 {
  fill: #008b8b;
}
.cid-st7zpUbrrH .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-st7zpUbrrH {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-st7zpUbrrH .mbr-text {
  color: #b1bee0;
}
.cid-st7zpUbrrH a {
  text-decoration: underline;
}
.cid-st7zpUbrrH a,
.cid-st7zpUbrrH a:hover {
  font-weight: 400 !important;
}
.cid-st7zpUbrrH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uw6dnlzyYZ .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw6dnlzyYZ .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uw6dnlzyYZ a {
  font-style: normal;
}
.cid-uw6dnlzyYZ .show {
  overflow: visible;
}
.cid-uw6dnlzyYZ .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uw6dnlzyYZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uw6dnlzyYZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uw6dnlzyYZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uw6dnlzyYZ .nav-item:focus,
.cid-uw6dnlzyYZ .nav-link:focus {
  outline: none;
}
.cid-uw6dnlzyYZ .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw6dnlzyYZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uw6dnlzyYZ .menu-logo {
  margin-right: auto;
}
.cid-uw6dnlzyYZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uw6dnlzyYZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uw6dnlzyYZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uw6dnlzyYZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uw6dnlzyYZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uw6dnlzyYZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uw6dnlzyYZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uw6dnlzyYZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uw6dnlzyYZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uw6dnlzyYZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uw6dnlzyYZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uw6dnlzyYZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uw6dnlzyYZ .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uw6dnlzyYZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uw6dnlzyYZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw6dnlzyYZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uw6dnlzyYZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw6dnlzyYZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uw6dnlzyYZ .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uw6dnlzyYZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uw6dnlzyYZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uw6dnlzyYZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uw6dnlzyYZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uw6dnlzyYZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uw6dnlzyYZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uw6dnlzyYZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uw6dnlzyYZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uw6dnlzyYZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw6dnlzyYZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw6dnlzyYZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw6dnlzyYZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw6dnlzyYZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw6dnlzyYZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw6dnlzyYZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw6dnlzyYZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uw6dnlzyYZ .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uw6dnlzyYZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uw6dnlzyYZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uw6dnlzyYZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.collapsing,
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uw6dnlzyYZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uw6dnlzyYZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uw6dnlzyYZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uw6dnlzyYZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uw6dnlzyYZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uw6dnlzyYZ .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-uw6dnlzyYZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uw6dnlzyYZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uw6dnlzyYZ .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;
}
@media (max-width: 991px) {
  .cid-uw6dnlzyYZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uw6dnlzyYZ img {
    height: 3.8rem !important;
  }
  .cid-uw6dnlzyYZ .btn {
    display: -webkit-flex;
  }
  .cid-uw6dnlzyYZ button.navbar-toggler {
    display: block;
  }
  .cid-uw6dnlzyYZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uw6dnlzyYZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uw6dnlzyYZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uw6dnlzyYZ .navbar-collapse.collapsing,
  .cid-uw6dnlzyYZ .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uw6dnlzyYZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uw6dnlzyYZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uw6dnlzyYZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uw6dnlzyYZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uw6dnlzyYZ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uw6dnlzyYZ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uw6dnlzyYZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uw6dnlzyYZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uw6dnlzyYZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uw6dnlzyYZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uw6dnlzyYZ .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-uw6dnlzyYZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uw6dnlzyYZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uw6dnlzyYZ .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;
  }
}
@media (max-width: 767px) {
  .cid-uw6dnlzyYZ .nav-link {
    justify-content: start !important;
  }
  .cid-uw6dnlzyYZ .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uw6dnlzyYZ .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uw6dnlzyYZ .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uw6dnlzyYZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uw6dnlzyYZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uw6dnlzyYZ .nav-link:hover,
.cid-uw6dnlzyYZ .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uw6dnlzyYZ .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uw6dnlzyYZ .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uw6dnlQdw0 {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-uw6dnlQdw0 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uw6dnlQdw0 .container {
    position: relative;
  }
  .cid-uw6dnlQdw0 .row {
    margin: 0;
  }
  .cid-uw6dnlQdw0 h2 {
    margin: 0;
  }
}
.cid-uw6dnlQdw0 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uw6dnlQdw0 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uw6dnlQdw0 h2 {
  color: #0a1c44;
}
.cid-uw6dnmscux {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uw6dnmscux .col-lg-6 {
  padding: 0 2rem;
}
.cid-uw6dnmscux .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uw6dnmscux .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-uw6dnmscux .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uw6dnmscux .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-uw6dnmscux .card-wrapper:hover {
  background: #f8f9fb;
}
.cid-uw6dnmscux .mbr-iconfont {
  font-size: 3rem;
  color: #0196e3;
  padding: 2.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
}
.cid-uw6dnmscux .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-uw6dnmscux .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uw6dnmscux .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-uw6dnmscux .card-text {
  color: #6c758f;
}
.cid-uw6dnmscux .card-title {
  color: #0196e3;
}
.cid-uw6dnn24sS {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-uw6dnnI9Uy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7eb9b9;
}
.cid-uw6dnnI9Uy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw6dnnI9Uy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uw6dnnI9Uy .container {
    padding: 0 30px;
  }
}
.cid-uw6dnnI9Uy .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uw6dnnI9Uy .title-wrapper {
    height: auto;
    margin-bottom: 40px;
  }
}
.cid-uw6dnnI9Uy .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 40px;
}
.cid-uw6dnnI9Uy .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
.cid-uw6dnnI9Uy .image-wrapper {
  padding: 0 55px 0 68px;
}
@media (max-width: 992px) {
  .cid-uw6dnnI9Uy .image-wrapper {
    padding: 0;
  }
}
.cid-uw6dnnI9Uy .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uw6dnnI9Uy .image-wrapper img {
    height: 350px;
  }
}
.cid-uw6dnnI9Uy .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uw6dnnI9Uy .mbr-section-title {
  color: #212529;
}
.cid-uw6dnnI9Uy .mbr-section-title,
.cid-uw6dnnI9Uy .mbr-section-btn {
  text-align: center;
}
.cid-uw6dno5uXJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-uw6dno5uXJ .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uw6dno5uXJ .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uw6dno5uXJ .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uw6dno5uXJ .card-title,
.cid-uw6dno5uXJ .card-img {
  color: #f5f7fa;
}
.cid-uw6dno5uXJ .mbr-text,
.cid-uw6dno5uXJ .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uw6dnoK2ap {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-uw6dnoK2ap .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uw6dnoK2ap .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uw6dnoK2ap .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uw6dnoK2ap .price-tage > p {
  letter-spacing: 2px;
}
.cid-uw6dnoK2ap .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uw6dnoK2ap .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uw6dnoK2ap .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uw6dnoK2ap .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uw6dnoK2ap .costs {
  color: #ffffff;
}
.cid-uw6dnoK2ap .costs-title {
  color: #ffffff;
}
.cid-uw6dnoK2ap .table-content,
.cid-uw6dnoK2ap .mbr-section-btn {
  color: #0a1c44;
}
.cid-uw6dnph7RW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #79afe1;
}
.cid-uw6dnph7RW .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uw6dnph7RW .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uw6dnph7RW .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uw6dnph7RW .price-tage > p {
  letter-spacing: 2px;
}
.cid-uw6dnph7RW .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uw6dnph7RW .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uw6dnph7RW .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uw6dnph7RW .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uw6dnph7RW .costs {
  color: #ffffff;
}
.cid-uw6dnph7RW .costs-title {
  color: #ffffff;
}
.cid-uw6dnph7RW .table-content,
.cid-uw6dnph7RW .mbr-section-btn {
  color: #0a1c44;
}
.cid-uw6dnpPRUS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2973b8;
}
.cid-uw6dnpPRUS .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uw6dnpPRUS .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uw6dnpPRUS .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uw6dnpPRUS .card-title,
.cid-uw6dnpPRUS .card-img {
  color: #f5f7fa;
}
.cid-uw6dnpPRUS .mbr-text,
.cid-uw6dnpPRUS .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uw6dnqoilT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-uw6dnqoilT .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uw6dnqoilT .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uw6dnqoilT .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uw6dnqoilT .price-tage > p {
  letter-spacing: 2px;
}
.cid-uw6dnqoilT .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uw6dnqoilT .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uw6dnqoilT .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uw6dnqoilT .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uw6dnqoilT .costs {
  color: #ffffff;
}
.cid-uw6dnqoilT .costs-title {
  color: #ffffff;
}
.cid-uw6dnqoilT .table-content,
.cid-uw6dnqoilT .mbr-section-btn {
  color: #0a1c44;
}
.cid-uw6dnqU6HY {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-uw6dnqU6HY .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uw6dnqU6HY .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uw6dnqU6HY .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uw6dnqU6HY .price-tage > p {
  letter-spacing: 2px;
}
.cid-uw6dnqU6HY .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uw6dnqU6HY .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uw6dnqU6HY .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uw6dnqU6HY .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uw6dnqU6HY .costs {
  color: #ffffff;
}
.cid-uw6dnqU6HY .costs-title {
  color: #ffffff;
}
.cid-uw6dnqU6HY .table-content,
.cid-uw6dnqU6HY .mbr-section-btn {
  color: #0a1c44;
}
.cid-uw6dnrnDIM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #7eb9b9;
}
.cid-uw6dnrnDIM .mbr-section-title {
  color: #f5f7fa;
}
.cid-uw6dnrnDIM .mbr-section-subtitle {
  color: #232323;
}
.cid-uw6dnrPscX {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #7eb9b9;
}
.cid-uw6dnrPscX .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uw6dnrPscX .card .card-wrapper {
  background: #008b8b;
  height: 1%;
}
.cid-uw6dnrPscX .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uw6dnrPscX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uw6dnrPscX .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-uw6dnrPscX .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uw6dnrPscX .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uw6dnrPscX .mbr-card-text {
  margin: 0;
}
.cid-uw6dnsynFn {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uw6dnsynFn .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uw6dnsynFn .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uw6dnsynFn .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uw6dnsynFn .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uw6dnsynFn .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uw6dnsynFn .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uw6dnsynFn .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uw6dnsynFn .input-group-btn {
  padding-left: 0;
}
.cid-uw6dnsynFn .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uw6dnsynFn .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uw6dnsynFn .mbr-text {
  color: #444;
}
.cid-uw6dnsynFn h5 {
  margin-bottom: 0;
}
.cid-uw6dnsynFn .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uw6dnsynFn .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uw6dnsynFn .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uw6dnsynFn .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uw6dnsynFn .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uw6dnsynFn .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uw6dnsynFn .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uw6dnsynFn .social-list a:hover {
  opacity: 0.4;
}
.cid-uw6dnsynFn .media-container-row > div {
  padding: 0px;
}
.cid-uw6dnsynFn .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uw6dnsynFn .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uw6dnsynFn .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uw6dnsynFn .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uw6dnsynFn .social-list,
  .cid-uw6dnsynFn .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uw6dnsynFn h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uw6dnsynFn .form-group {
    max-width: 180px;
  }
}
.cid-uw6dnsynFn .links span {
  color: #9e9e9e;
}
.cid-uw6dnsynFn .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uw6dnsynFn .logo-title {
  text-align: center;
}
.cid-uw6dnsynFn .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uw6dnsynFn .logo-title,
.cid-uw6dnsynFn .logo {
  color: #f5f7fa;
}
.cid-uw6dnsYM0c {
  background-color: #669b9b;
}
.cid-uw6dnsYM0c svg {
  position: absolute;
  top: 0;
}
.cid-uw6dnsYM0c .svg-1 {
  fill: #008b8b;
}
.cid-uw6dnsYM0c .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uw6dnsYM0c {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uw6dnsYM0c {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uw6dnsYM0c .mbr-text {
  color: #b1bee0;
}
.cid-uw6dnsYM0c a {
  text-decoration: underline;
}
.cid-uw6dnsYM0c a,
.cid-uw6dnsYM0c a:hover {
  font-weight: 400 !important;
}
.cid-uw6dnsYM0c .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uD3SA6lYgg .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uD3SA6lYgg .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uD3SA6lYgg a {
  font-style: normal;
}
.cid-uD3SA6lYgg .show {
  overflow: visible;
}
.cid-uD3SA6lYgg .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uD3SA6lYgg .dropdown-item:active {
  background-color: transparent;
}
.cid-uD3SA6lYgg .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uD3SA6lYgg .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uD3SA6lYgg .nav-item:focus,
.cid-uD3SA6lYgg .nav-link:focus {
  outline: none;
}
.cid-uD3SA6lYgg .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uD3SA6lYgg .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uD3SA6lYgg .menu-logo {
  margin-right: auto;
}
.cid-uD3SA6lYgg .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uD3SA6lYgg .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uD3SA6lYgg .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uD3SA6lYgg .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uD3SA6lYgg .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uD3SA6lYgg .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uD3SA6lYgg .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uD3SA6lYgg .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uD3SA6lYgg .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uD3SA6lYgg .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD3SA6lYgg .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uD3SA6lYgg .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uD3SA6lYgg .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uD3SA6lYgg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uD3SA6lYgg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uD3SA6lYgg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uD3SA6lYgg .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uD3SA6lYgg .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uD3SA6lYgg .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uD3SA6lYgg .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uD3SA6lYgg .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uD3SA6lYgg .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uD3SA6lYgg .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uD3SA6lYgg .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uD3SA6lYgg button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uD3SA6lYgg button.navbar-toggler:focus {
  outline: none;
}
.cid-uD3SA6lYgg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uD3SA6lYgg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uD3SA6lYgg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD3SA6lYgg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD3SA6lYgg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uD3SA6lYgg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD3SA6lYgg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uD3SA6lYgg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uD3SA6lYgg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uD3SA6lYgg .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uD3SA6lYgg .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uD3SA6lYgg .collapsed .btn {
  display: -webkit-flex;
}
.cid-uD3SA6lYgg .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uD3SA6lYgg .collapsed .navbar-collapse.collapsing,
.cid-uD3SA6lYgg .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uD3SA6lYgg .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uD3SA6lYgg .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uD3SA6lYgg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uD3SA6lYgg .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uD3SA6lYgg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uD3SA6lYgg .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uD3SA6lYgg .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uD3SA6lYgg .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uD3SA6lYgg .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uD3SA6lYgg .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uD3SA6lYgg .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uD3SA6lYgg .collapsed button.navbar-toggler {
  display: block;
}
.cid-uD3SA6lYgg .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uD3SA6lYgg .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uD3SA6lYgg .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-uD3SA6lYgg .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uD3SA6lYgg .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uD3SA6lYgg .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;
}
@media (max-width: 991px) {
  .cid-uD3SA6lYgg.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uD3SA6lYgg img {
    height: 3.8rem !important;
  }
  .cid-uD3SA6lYgg .btn {
    display: -webkit-flex;
  }
  .cid-uD3SA6lYgg button.navbar-toggler {
    display: block;
  }
  .cid-uD3SA6lYgg .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uD3SA6lYgg .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uD3SA6lYgg .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uD3SA6lYgg .navbar-collapse.collapsing,
  .cid-uD3SA6lYgg .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uD3SA6lYgg .navbar-collapse.collapsing .navbar-nav,
  .cid-uD3SA6lYgg .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uD3SA6lYgg .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uD3SA6lYgg .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uD3SA6lYgg .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uD3SA6lYgg .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uD3SA6lYgg .navbar-collapse.collapsing .navbar-buttons,
  .cid-uD3SA6lYgg .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uD3SA6lYgg .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uD3SA6lYgg .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uD3SA6lYgg .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-uD3SA6lYgg .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uD3SA6lYgg .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uD3SA6lYgg .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;
  }
}
@media (max-width: 767px) {
  .cid-uD3SA6lYgg .nav-link {
    justify-content: start !important;
  }
  .cid-uD3SA6lYgg .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uD3SA6lYgg .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uD3SA6lYgg .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uD3SA6lYgg .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uD3SA6lYgg .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uD3SA6lYgg .nav-link:hover,
.cid-uD3SA6lYgg .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uD3SA6lYgg .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uD3SA6lYgg .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uD3SA7cU52 {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #e0f5ff;
}
@media (max-width: 767px) {
  .cid-uD3SA7cU52 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uD3SA7cU52 .container {
    position: relative;
  }
  .cid-uD3SA7cU52 .row {
    margin: 0;
  }
  .cid-uD3SA7cU52 h2 {
    margin: 0;
  }
}
.cid-uD3SA7cU52 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uD3SA7cU52 .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uD3SA7cU52 h2 {
  color: #0a1c44;
}
.cid-uDspapeNy5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #e0f5ff;
}
.cid-uDspapeNy5 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #a5d8d8;
}
.cid-uDspapeNy5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDspapeNy5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDspapeNy5 .content-wrap {
  margin: 0;
}
.cid-uDspapeNy5 .content-wrap .card {
  padding: 0;
}
.cid-uDspapeNy5 .image-wrapper {
  height: 100%;
}
.cid-uDspapeNy5 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDspapeNy5 .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uDspapeNy5 .content-wrapper {
  padding: 190px 72px;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uDspapeNy5 .content-wrapper {
    padding: 190px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uDspapeNy5 .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uDspapeNy5 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 8px 16px;
  background-color: #e0f5ff;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uDspapeNy5 .content-wrapper .desc-wrapper .mbr-desc {
    margin-bottom: 16px;
  }
}
.cid-uDspapeNy5 .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uDspapeNy5 .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uDspapeNy5 .mbr-section-title {
  color: #f4f2ef;
}
.cid-uDspapeNy5 .mbr-desc,
.cid-uDspapeNy5 .desc-wrapper {
  color: #0a1c44;
  text-align: center;
}
.cid-uDspapeNy5 .mbr-section-title,
.cid-uDspapeNy5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uD5PvRd5la {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #a5d8d8;
}
.cid-uD5PvRd5la .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD5PvRd5la .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD5PvRd5la .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uD5PvRd5la .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uD5PvRd5la .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uD5PvRd5la .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uD5PvRd5la .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uD5PvRd5la .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uD5PvRd5la .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uD5PvRd5la .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cid-uD5PvRd5la .item:hover .item-wrapper .item-img,
.cid-uD5PvRd5la .item:focus .item-wrapper .item-img {
  padding: 10px;
}
@media (max-width: 992px) {
  .cid-uD5PvRd5la .item:hover .item-wrapper .item-img,
  .cid-uD5PvRd5la .item:focus .item-wrapper .item-img {
    padding: 20px 20px 10px;
  }
}
.cid-uD5PvRd5la .item:hover .item-wrapper .item-img img,
.cid-uD5PvRd5la .item:focus .item-wrapper .item-img img {
  height: 160px;
}
.cid-uD5PvRd5la .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uD5PvRd5la .item .item-wrapper .item-img {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uD5PvRd5la .item .item-wrapper .item-img {
    padding: 20px 20px 10px;
  }
}
.cid-uD5PvRd5la .item .item-wrapper .item-img img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uD5PvRd5la .item .item-wrapper .item-img img {
    height: 160px;
  }
}
.cid-uD5PvRd5la .item .item-wrapper .item-content {
  padding: 18px 20px;
}
.cid-uD5PvRd5la .item .item-wrapper .item-content .desc-wrap .item-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 5px 12px;
  margin-bottom: 12px;
}
.cid-uD5PvRd5la .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uD5PvRd5la .mbr-section-title {
  color: #404349;
}
.cid-uD5PvRd5la .mbr-desc {
  color: #b19a7c;
}
.cid-uD5PvRd5la .item-title {
  color: #404349;
}
.cid-uD5PvRd5la .item-desc {
  color: #b19a7c;
}
.cid-uD5F5uYOCa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #a5d8d8;
}
@media (max-width: 991px) {
  .cid-uD5F5uYOCa .col-title {
    margin-bottom: 20px;
  }
}
.cid-uD5F5uYOCa .mbr-section-title {
  color: #45494E;
}
.cid-uD5F5uYOCa .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uD5F5uYOCa .mbr-text {
  color: #5c6064;
}
.cid-uD3SAaOQk8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-uD3SAaOQk8 H1 {
  color: #0a1c44;
}
.cid-uD3SAaOQk8 .mbr-text,
.cid-uD3SAaOQk8 .mbr-section-btn {
  color: #0a1c44;
}
.cid-uD3SAaOQk8 H3 {
  color: #716c80;
}
.cid-uD3SAbDWwo {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-uD3SAbDWwo .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uD3SAbDWwo .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uD3SAbDWwo .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uD3SAbDWwo .price-tage > p {
  letter-spacing: 2px;
}
.cid-uD3SAbDWwo .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uD3SAbDWwo .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uD3SAbDWwo .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uD3SAbDWwo .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uD3SAbDWwo .costs {
  color: #ffffff;
}
.cid-uD3SAbDWwo .costs-title {
  color: #ffffff;
}
.cid-uD3SAbDWwo .table-content,
.cid-uD3SAbDWwo .mbr-section-btn {
  color: #0a1c44;
}
.cid-uD3VJTUTp7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #a5d8d8;
}
.cid-uD3VJTUTp7 H1 {
  color: #232323;
}
.cid-uD3VJTUTp7 .mbr-text,
.cid-uD3VJTUTp7 .mbr-section-btn {
  color: #0a1c44;
}
.cid-uD3VJTUTp7 H3 {
  color: #716c80;
}
.cid-uD3SAfiWYb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #e9e9e9;
}
.cid-uD3SAfiWYb H1 {
  color: #0a1c44;
}
.cid-uD3SAfiWYb .mbr-text,
.cid-uD3SAfiWYb .mbr-section-btn {
  color: #0a1c44;
}
.cid-uD3SAfiWYb H3 {
  color: #716c80;
}
.cid-uD3SAfVgmz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-uD3SAfVgmz .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-uD3SAfVgmz .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uD3SAfVgmz .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uD3SAfVgmz .card-title {
  color: #0a1c44;
  margin: 0;
  text-align: left;
}
.cid-uD3SAfVgmz .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-uD3SAfVgmz .card-box {
  padding: 1rem;
}
.cid-uD3SAfVgmz .mbr-section-title,
.cid-uD3SAfVgmz .line-wrap {
  text-align: center;
}
.cid-uD3SAfVgmz .card-box > p,
.cid-uD3SAfVgmz .mbr-section-btn {
  text-align: left;
  color: #0a1c44;
}
.cid-uD3SAgLfsT {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uD3SAgLfsT .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uD3SAgLfsT .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uD3SAgLfsT .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uD3SAgLfsT .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uD3SAgLfsT .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uD3SAgLfsT .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uD3SAgLfsT .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uD3SAgLfsT .input-group-btn {
  padding-left: 0;
}
.cid-uD3SAgLfsT .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uD3SAgLfsT .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uD3SAgLfsT .mbr-text {
  color: #444;
}
.cid-uD3SAgLfsT h5 {
  margin-bottom: 0;
}
.cid-uD3SAgLfsT .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uD3SAgLfsT .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uD3SAgLfsT .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uD3SAgLfsT .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uD3SAgLfsT .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uD3SAgLfsT .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uD3SAgLfsT .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uD3SAgLfsT .social-list a:hover {
  opacity: 0.4;
}
.cid-uD3SAgLfsT .media-container-row > div {
  padding: 0px;
}
.cid-uD3SAgLfsT .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uD3SAgLfsT .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uD3SAgLfsT .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uD3SAgLfsT .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uD3SAgLfsT .social-list,
  .cid-uD3SAgLfsT .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uD3SAgLfsT h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uD3SAgLfsT .form-group {
    max-width: 180px;
  }
}
.cid-uD3SAgLfsT .links span {
  color: #9e9e9e;
}
.cid-uD3SAgLfsT .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uD3SAgLfsT .logo-title {
  text-align: center;
}
.cid-uD3SAgLfsT .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uD3SAgLfsT .logo-title,
.cid-uD3SAgLfsT .logo {
  color: #f5f7fa;
}
.cid-uD3SAhEJma {
  background-color: #669b9b;
}
.cid-uD3SAhEJma svg {
  position: absolute;
  top: 0;
}
.cid-uD3SAhEJma .svg-1 {
  fill: #008b8b;
}
.cid-uD3SAhEJma .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uD3SAhEJma {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uD3SAhEJma {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uD3SAhEJma .mbr-text {
  color: #b1bee0;
}
.cid-uD3SAhEJma a {
  text-decoration: underline;
}
.cid-uD3SAhEJma a,
.cid-uD3SAhEJma a:hover {
  font-weight: 400 !important;
}
.cid-uD3SAhEJma .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uDEO7ejqJl .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDEO7ejqJl .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uDEO7ejqJl a {
  font-style: normal;
}
.cid-uDEO7ejqJl .show {
  overflow: visible;
}
.cid-uDEO7ejqJl .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uDEO7ejqJl .dropdown-item:active {
  background-color: transparent;
}
.cid-uDEO7ejqJl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uDEO7ejqJl .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uDEO7ejqJl .nav-item:focus,
.cid-uDEO7ejqJl .nav-link:focus {
  outline: none;
}
.cid-uDEO7ejqJl .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uDEO7ejqJl .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uDEO7ejqJl .menu-logo {
  margin-right: auto;
}
.cid-uDEO7ejqJl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDEO7ejqJl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uDEO7ejqJl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uDEO7ejqJl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uDEO7ejqJl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uDEO7ejqJl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uDEO7ejqJl .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uDEO7ejqJl .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uDEO7ejqJl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uDEO7ejqJl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uDEO7ejqJl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uDEO7ejqJl .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uDEO7ejqJl .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uDEO7ejqJl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uDEO7ejqJl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDEO7ejqJl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uDEO7ejqJl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDEO7ejqJl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uDEO7ejqJl .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uDEO7ejqJl .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uDEO7ejqJl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uDEO7ejqJl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uDEO7ejqJl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uDEO7ejqJl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uDEO7ejqJl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uDEO7ejqJl button.navbar-toggler:focus {
  outline: none;
}
.cid-uDEO7ejqJl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uDEO7ejqJl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDEO7ejqJl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDEO7ejqJl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDEO7ejqJl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDEO7ejqJl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDEO7ejqJl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDEO7ejqJl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDEO7ejqJl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uDEO7ejqJl .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uDEO7ejqJl .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uDEO7ejqJl .collapsed .btn {
  display: -webkit-flex;
}
.cid-uDEO7ejqJl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uDEO7ejqJl .collapsed .navbar-collapse.collapsing,
.cid-uDEO7ejqJl .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uDEO7ejqJl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uDEO7ejqJl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uDEO7ejqJl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uDEO7ejqJl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uDEO7ejqJl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uDEO7ejqJl .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uDEO7ejqJl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uDEO7ejqJl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uDEO7ejqJl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uDEO7ejqJl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uDEO7ejqJl .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uDEO7ejqJl .collapsed button.navbar-toggler {
  display: block;
}
.cid-uDEO7ejqJl .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uDEO7ejqJl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uDEO7ejqJl .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-uDEO7ejqJl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uDEO7ejqJl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uDEO7ejqJl .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;
}
@media (max-width: 991px) {
  .cid-uDEO7ejqJl.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uDEO7ejqJl img {
    height: 3.8rem !important;
  }
  .cid-uDEO7ejqJl .btn {
    display: -webkit-flex;
  }
  .cid-uDEO7ejqJl button.navbar-toggler {
    display: block;
  }
  .cid-uDEO7ejqJl .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uDEO7ejqJl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uDEO7ejqJl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uDEO7ejqJl .navbar-collapse.collapsing,
  .cid-uDEO7ejqJl .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uDEO7ejqJl .navbar-collapse.collapsing .navbar-nav,
  .cid-uDEO7ejqJl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uDEO7ejqJl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uDEO7ejqJl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uDEO7ejqJl .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uDEO7ejqJl .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uDEO7ejqJl .navbar-collapse.collapsing .navbar-buttons,
  .cid-uDEO7ejqJl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uDEO7ejqJl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uDEO7ejqJl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uDEO7ejqJl .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-uDEO7ejqJl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uDEO7ejqJl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uDEO7ejqJl .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;
  }
}
@media (max-width: 767px) {
  .cid-uDEO7ejqJl .nav-link {
    justify-content: start !important;
  }
  .cid-uDEO7ejqJl .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uDEO7ejqJl .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uDEO7ejqJl .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uDEO7ejqJl .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uDEO7ejqJl .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uDEO7ejqJl .nav-link:hover,
.cid-uDEO7ejqJl .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uDEO7ejqJl .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uDEO7ejqJl .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uDEO7eUBkV {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #e4e28b;
}
@media (max-width: 767px) {
  .cid-uDEO7eUBkV h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uDEO7eUBkV .container {
    position: relative;
  }
  .cid-uDEO7eUBkV .row {
    margin: 0;
  }
  .cid-uDEO7eUBkV h2 {
    margin: 0;
  }
}
.cid-uDEO7eUBkV .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uDEO7eUBkV .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uDEO7eUBkV h2 {
  color: #0a1c44;
}
.cid-uDEO7fypqo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #e4e28b;
}
.cid-uDEO7fypqo .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #a5d8d8;
}
.cid-uDEO7fypqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDEO7fypqo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDEO7fypqo .content-wrap {
  margin: 0;
}
.cid-uDEO7fypqo .content-wrap .card {
  padding: 0;
}
.cid-uDEO7fypqo .image-wrapper {
  height: 100%;
}
.cid-uDEO7fypqo .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDEO7fypqo .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uDEO7fypqo .content-wrapper {
  padding: 190px 72px;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uDEO7fypqo .content-wrapper {
    padding: 190px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uDEO7fypqo .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uDEO7fypqo .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 8px 16px;
  background-color: #e4e28b;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uDEO7fypqo .content-wrapper .desc-wrapper .mbr-desc {
    margin-bottom: 16px;
  }
}
.cid-uDEO7fypqo .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uDEO7fypqo .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uDEO7fypqo .mbr-section-title {
  color: #f4f2ef;
}
.cid-uDEO7fypqo .mbr-desc,
.cid-uDEO7fypqo .desc-wrapper {
  color: #0a1c44;
  text-align: center;
}
.cid-uDEO7fypqo .mbr-section-title,
.cid-uDEO7fypqo .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uDEO7gZsQo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e4e28b;
}
@media (max-width: 991px) {
  .cid-uDEO7gZsQo .col-title {
    margin-bottom: 20px;
  }
}
.cid-uDEO7gZsQo .mbr-section-title {
  color: #45494E;
}
.cid-uDEO7gZsQo .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uDEO7gZsQo .mbr-text {
  color: #5c6064;
}
.cid-uDEO7hBZ6k {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-uDEO7hBZ6k H1 {
  color: #0a1c44;
}
.cid-uDEO7hBZ6k .mbr-text,
.cid-uDEO7hBZ6k .mbr-section-btn {
  color: #0a1c44;
}
.cid-uDEO7hBZ6k H3 {
  color: #716c80;
}
.cid-uDEO7igyfh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-uDEO7igyfh .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uDEO7igyfh .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uDEO7igyfh .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uDEO7igyfh .price-tage > p {
  letter-spacing: 2px;
}
.cid-uDEO7igyfh .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uDEO7igyfh .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uDEO7igyfh .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uDEO7igyfh .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uDEO7igyfh .costs {
  color: #ffffff;
}
.cid-uDEO7igyfh .costs-title {
  color: #ffffff;
}
.cid-uDEO7igyfh .table-content,
.cid-uDEO7igyfh .mbr-section-btn {
  color: #0a1c44;
}
.cid-uDEO7ju90G {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #e9e9e9;
}
.cid-uDEO7ju90G H1 {
  color: #0a1c44;
}
.cid-uDEO7ju90G .mbr-text,
.cid-uDEO7ju90G .mbr-section-btn {
  color: #0a1c44;
}
.cid-uDEO7ju90G H3 {
  color: #716c80;
}
.cid-uDEO7kfWYZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-uDEO7kfWYZ .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-uDEO7kfWYZ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uDEO7kfWYZ .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uDEO7kfWYZ .card-title {
  color: #0a1c44;
  margin: 0;
  text-align: left;
}
.cid-uDEO7kfWYZ .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-uDEO7kfWYZ .card-box {
  padding: 1rem;
}
.cid-uDEO7kfWYZ .mbr-section-title,
.cid-uDEO7kfWYZ .line-wrap {
  text-align: center;
}
.cid-uDEO7kfWYZ .card-box > p,
.cid-uDEO7kfWYZ .mbr-section-btn {
  text-align: left;
  color: #0a1c44;
}
.cid-uDEO7kQ7ha {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uDEO7kQ7ha .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uDEO7kQ7ha .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uDEO7kQ7ha .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uDEO7kQ7ha .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uDEO7kQ7ha .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uDEO7kQ7ha .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uDEO7kQ7ha .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uDEO7kQ7ha .input-group-btn {
  padding-left: 0;
}
.cid-uDEO7kQ7ha .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uDEO7kQ7ha .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uDEO7kQ7ha .mbr-text {
  color: #444;
}
.cid-uDEO7kQ7ha h5 {
  margin-bottom: 0;
}
.cid-uDEO7kQ7ha .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uDEO7kQ7ha .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDEO7kQ7ha .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uDEO7kQ7ha .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uDEO7kQ7ha .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uDEO7kQ7ha .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uDEO7kQ7ha .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uDEO7kQ7ha .social-list a:hover {
  opacity: 0.4;
}
.cid-uDEO7kQ7ha .media-container-row > div {
  padding: 0px;
}
.cid-uDEO7kQ7ha .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uDEO7kQ7ha .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uDEO7kQ7ha .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uDEO7kQ7ha .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uDEO7kQ7ha .social-list,
  .cid-uDEO7kQ7ha .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uDEO7kQ7ha h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uDEO7kQ7ha .form-group {
    max-width: 180px;
  }
}
.cid-uDEO7kQ7ha .links span {
  color: #9e9e9e;
}
.cid-uDEO7kQ7ha .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uDEO7kQ7ha .logo-title {
  text-align: center;
}
.cid-uDEO7kQ7ha .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uDEO7kQ7ha .logo-title,
.cid-uDEO7kQ7ha .logo {
  color: #f5f7fa;
}
.cid-uDEO7lxuAv {
  background-color: #669b9b;
}
.cid-uDEO7lxuAv svg {
  position: absolute;
  top: 0;
}
.cid-uDEO7lxuAv .svg-1 {
  fill: #008b8b;
}
.cid-uDEO7lxuAv .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uDEO7lxuAv {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uDEO7lxuAv {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uDEO7lxuAv .mbr-text {
  color: #b1bee0;
}
.cid-uDEO7lxuAv a {
  text-decoration: underline;
}
.cid-uDEO7lxuAv a,
.cid-uDEO7lxuAv a:hover {
  font-weight: 400 !important;
}
.cid-uDEO7lxuAv .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uDFedpScK2 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDFedpScK2 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uDFedpScK2 a {
  font-style: normal;
}
.cid-uDFedpScK2 .show {
  overflow: visible;
}
.cid-uDFedpScK2 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uDFedpScK2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uDFedpScK2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uDFedpScK2 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uDFedpScK2 .nav-item:focus,
.cid-uDFedpScK2 .nav-link:focus {
  outline: none;
}
.cid-uDFedpScK2 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uDFedpScK2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uDFedpScK2 .menu-logo {
  margin-right: auto;
}
.cid-uDFedpScK2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDFedpScK2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uDFedpScK2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uDFedpScK2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uDFedpScK2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uDFedpScK2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uDFedpScK2 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uDFedpScK2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uDFedpScK2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uDFedpScK2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uDFedpScK2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uDFedpScK2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uDFedpScK2 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uDFedpScK2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uDFedpScK2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDFedpScK2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uDFedpScK2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDFedpScK2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uDFedpScK2 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uDFedpScK2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uDFedpScK2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uDFedpScK2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uDFedpScK2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uDFedpScK2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uDFedpScK2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uDFedpScK2 button.navbar-toggler:focus {
  outline: none;
}
.cid-uDFedpScK2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uDFedpScK2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDFedpScK2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDFedpScK2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDFedpScK2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDFedpScK2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDFedpScK2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDFedpScK2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDFedpScK2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uDFedpScK2 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uDFedpScK2 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uDFedpScK2 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uDFedpScK2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uDFedpScK2 .collapsed .navbar-collapse.collapsing,
.cid-uDFedpScK2 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uDFedpScK2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uDFedpScK2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uDFedpScK2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uDFedpScK2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uDFedpScK2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uDFedpScK2 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uDFedpScK2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uDFedpScK2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uDFedpScK2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uDFedpScK2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uDFedpScK2 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uDFedpScK2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uDFedpScK2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uDFedpScK2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uDFedpScK2 .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-uDFedpScK2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uDFedpScK2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uDFedpScK2 .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;
}
@media (max-width: 991px) {
  .cid-uDFedpScK2.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uDFedpScK2 img {
    height: 3.8rem !important;
  }
  .cid-uDFedpScK2 .btn {
    display: -webkit-flex;
  }
  .cid-uDFedpScK2 button.navbar-toggler {
    display: block;
  }
  .cid-uDFedpScK2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uDFedpScK2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uDFedpScK2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uDFedpScK2 .navbar-collapse.collapsing,
  .cid-uDFedpScK2 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uDFedpScK2 .navbar-collapse.collapsing .navbar-nav,
  .cid-uDFedpScK2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uDFedpScK2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uDFedpScK2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uDFedpScK2 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uDFedpScK2 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uDFedpScK2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uDFedpScK2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uDFedpScK2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uDFedpScK2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uDFedpScK2 .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-uDFedpScK2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uDFedpScK2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uDFedpScK2 .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;
  }
}
@media (max-width: 767px) {
  .cid-uDFedpScK2 .nav-link {
    justify-content: start !important;
  }
  .cid-uDFedpScK2 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uDFedpScK2 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uDFedpScK2 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uDFedpScK2 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uDFedpScK2 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uDFedpScK2 .nav-link:hover,
.cid-uDFedpScK2 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uDFedpScK2 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uDFedpScK2 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uDFedqjFCO {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-uDFedqjFCO h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uDFedqjFCO .container {
    position: relative;
  }
  .cid-uDFedqjFCO .row {
    margin: 0;
  }
  .cid-uDFedqjFCO h2 {
    margin: 0;
  }
}
.cid-uDFedqjFCO .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uDFedqjFCO .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uDFedqjFCO h2 {
  color: #0a1c44;
}
.cid-uDFedqVemt {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #e4e28b;
}
.cid-uDFedqVemt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uDFedqVemt H5 {
  color: #0a1c44;
}
.cid-uDFedrBHXm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uDFedrBHXm .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uDFedrBHXm .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uDFedrBHXm .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uDFedrBHXm .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uDFedrBHXm .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uDFedrBHXm .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uDFedrBHXm .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uDFedrBHXm .input-group-btn {
  padding-left: 0;
}
.cid-uDFedrBHXm .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uDFedrBHXm .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uDFedrBHXm .mbr-text {
  color: #444;
}
.cid-uDFedrBHXm h5 {
  margin-bottom: 0;
}
.cid-uDFedrBHXm .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uDFedrBHXm .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDFedrBHXm .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uDFedrBHXm .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uDFedrBHXm .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uDFedrBHXm .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uDFedrBHXm .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uDFedrBHXm .social-list a:hover {
  opacity: 0.4;
}
.cid-uDFedrBHXm .media-container-row > div {
  padding: 0px;
}
.cid-uDFedrBHXm .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uDFedrBHXm .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uDFedrBHXm .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uDFedrBHXm .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uDFedrBHXm .social-list,
  .cid-uDFedrBHXm .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uDFedrBHXm h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uDFedrBHXm .form-group {
    max-width: 180px;
  }
}
.cid-uDFedrBHXm .links span {
  color: #9e9e9e;
}
.cid-uDFedrBHXm .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uDFedrBHXm .logo-title {
  text-align: center;
}
.cid-uDFedrBHXm .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uDFedrBHXm .logo-title,
.cid-uDFedrBHXm .logo {
  color: #f5f7fa;
}
.cid-uDFedspVpV {
  background-color: #669b9b;
}
.cid-uDFedspVpV svg {
  position: absolute;
  top: 0;
}
.cid-uDFedspVpV .svg-1 {
  fill: #008b8b;
}
.cid-uDFedspVpV .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uDFedspVpV {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uDFedspVpV {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uDFedspVpV .mbr-text {
  color: #b1bee0;
}
.cid-uDFedspVpV a {
  text-decoration: underline;
}
.cid-uDFedspVpV a,
.cid-uDFedspVpV a:hover {
  font-weight: 400 !important;
}
.cid-uDFedspVpV .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uf0dP7puFj .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uf0dP7puFj .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uf0dP7puFj a {
  font-style: normal;
}
.cid-uf0dP7puFj .show {
  overflow: visible;
}
.cid-uf0dP7puFj .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uf0dP7puFj .dropdown-item:active {
  background-color: transparent;
}
.cid-uf0dP7puFj .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uf0dP7puFj .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uf0dP7puFj .nav-item:focus,
.cid-uf0dP7puFj .nav-link:focus {
  outline: none;
}
.cid-uf0dP7puFj .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uf0dP7puFj .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uf0dP7puFj .menu-logo {
  margin-right: auto;
}
.cid-uf0dP7puFj .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uf0dP7puFj .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uf0dP7puFj .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uf0dP7puFj .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uf0dP7puFj .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uf0dP7puFj .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uf0dP7puFj .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uf0dP7puFj .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uf0dP7puFj .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uf0dP7puFj .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uf0dP7puFj .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uf0dP7puFj .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uf0dP7puFj .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uf0dP7puFj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uf0dP7puFj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uf0dP7puFj .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uf0dP7puFj .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uf0dP7puFj .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uf0dP7puFj .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uf0dP7puFj .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uf0dP7puFj .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uf0dP7puFj .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uf0dP7puFj .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uf0dP7puFj .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uf0dP7puFj button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uf0dP7puFj button.navbar-toggler:focus {
  outline: none;
}
.cid-uf0dP7puFj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uf0dP7puFj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uf0dP7puFj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uf0dP7puFj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uf0dP7puFj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uf0dP7puFj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uf0dP7puFj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uf0dP7puFj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uf0dP7puFj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uf0dP7puFj .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uf0dP7puFj .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uf0dP7puFj .collapsed .btn {
  display: -webkit-flex;
}
.cid-uf0dP7puFj .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uf0dP7puFj .collapsed .navbar-collapse.collapsing,
.cid-uf0dP7puFj .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uf0dP7puFj .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uf0dP7puFj .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uf0dP7puFj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uf0dP7puFj .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uf0dP7puFj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uf0dP7puFj .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uf0dP7puFj .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uf0dP7puFj .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uf0dP7puFj .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uf0dP7puFj .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uf0dP7puFj .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uf0dP7puFj .collapsed button.navbar-toggler {
  display: block;
}
.cid-uf0dP7puFj .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uf0dP7puFj .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uf0dP7puFj .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-uf0dP7puFj .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uf0dP7puFj .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uf0dP7puFj .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;
}
@media (max-width: 991px) {
  .cid-uf0dP7puFj.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uf0dP7puFj img {
    height: 3.8rem !important;
  }
  .cid-uf0dP7puFj .btn {
    display: -webkit-flex;
  }
  .cid-uf0dP7puFj button.navbar-toggler {
    display: block;
  }
  .cid-uf0dP7puFj .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uf0dP7puFj .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uf0dP7puFj .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uf0dP7puFj .navbar-collapse.collapsing,
  .cid-uf0dP7puFj .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uf0dP7puFj .navbar-collapse.collapsing .navbar-nav,
  .cid-uf0dP7puFj .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uf0dP7puFj .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uf0dP7puFj .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uf0dP7puFj .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uf0dP7puFj .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uf0dP7puFj .navbar-collapse.collapsing .navbar-buttons,
  .cid-uf0dP7puFj .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uf0dP7puFj .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uf0dP7puFj .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uf0dP7puFj .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-uf0dP7puFj .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uf0dP7puFj .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uf0dP7puFj .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;
  }
}
@media (max-width: 767px) {
  .cid-uf0dP7puFj .nav-link {
    justify-content: start !important;
  }
  .cid-uf0dP7puFj .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uf0dP7puFj .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uf0dP7puFj .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uf0dP7puFj .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uf0dP7puFj .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uf0dP7puFj .nav-link:hover,
.cid-uf0dP7puFj .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uf0dP7puFj .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uf0dP7puFj .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uf0dP7Rxum {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-uf0dP7Rxum h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uf0dP7Rxum .container {
    position: relative;
  }
  .cid-uf0dP7Rxum .row {
    margin: 0;
  }
  .cid-uf0dP7Rxum h2 {
    margin: 0;
  }
}
.cid-uf0dP7Rxum .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uf0dP7Rxum .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uf0dP7Rxum h2 {
  color: #0a1c44;
}
.cid-uf0dP8aY1C {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #7eb9b9;
  position: relative;
  overflow: hidden;
}
.cid-uf0dP8aY1C svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-uf0dP8aY1C #e1_ellipse {
  fill: #ffffff !important;
}
.cid-uf0dP8aY1C img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-uf0dP8aY1C img {
    width: 100%;
    left: 0;
  }
}
.cid-uf0dP8aY1C H1 {
  color: #008b8b;
}
.cid-uf0dP8aY1C .mbr-text,
.cid-uf0dP8aY1C .mbr-section-btn {
  color: #000000;
}
.cid-uf0dP8aY1C H3 {
  color: #333333;
}
.cid-uPlMh317Hb {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uPlMh317Hb H1 {
  color: #f5f7fa;
}
.cid-uPlMh317Hb .mbr-text,
.cid-uPlMh317Hb .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uPlMh317Hb H3 {
  color: #716c80;
}
.cid-uPlMhIkyvk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uPlMhIkyvk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPlMhIkyvk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPlMhIkyvk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPlMhIkyvk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPlMhIkyvk .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-uPlMhIkyvk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uPlMhIkyvk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uPlMhIkyvk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uPlMhIkyvk .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-uf0dP9qhsH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uf0dP9qhsH .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uf0dP9qhsH .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uf0dP9qhsH .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uf0dP9qhsH .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uf0dP9qhsH .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uf0dP9qhsH .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uf0dP9qhsH .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uf0dP9qhsH .input-group-btn {
  padding-left: 0;
}
.cid-uf0dP9qhsH .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uf0dP9qhsH .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uf0dP9qhsH .mbr-text {
  color: #444;
}
.cid-uf0dP9qhsH h5 {
  margin-bottom: 0;
}
.cid-uf0dP9qhsH .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uf0dP9qhsH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uf0dP9qhsH .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uf0dP9qhsH .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uf0dP9qhsH .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uf0dP9qhsH .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uf0dP9qhsH .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uf0dP9qhsH .social-list a:hover {
  opacity: 0.4;
}
.cid-uf0dP9qhsH .media-container-row > div {
  padding: 0px;
}
.cid-uf0dP9qhsH .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uf0dP9qhsH .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uf0dP9qhsH .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uf0dP9qhsH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uf0dP9qhsH .social-list,
  .cid-uf0dP9qhsH .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uf0dP9qhsH h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uf0dP9qhsH .form-group {
    max-width: 180px;
  }
}
.cid-uf0dP9qhsH .links span {
  color: #9e9e9e;
}
.cid-uf0dP9qhsH .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uf0dP9qhsH .logo-title {
  text-align: center;
}
.cid-uf0dP9qhsH .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uf0dP9qhsH .logo-title,
.cid-uf0dP9qhsH .logo {
  color: #f5f7fa;
}
.cid-uf0dPa4ER0 {
  background-color: #669b9b;
}
.cid-uf0dPa4ER0 svg {
  position: absolute;
  top: 0;
}
.cid-uf0dPa4ER0 .svg-1 {
  fill: #008b8b;
}
.cid-uf0dPa4ER0 .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uf0dPa4ER0 {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uf0dPa4ER0 {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uf0dPa4ER0 .mbr-text {
  color: #b1bee0;
}
.cid-uf0dPa4ER0 a {
  text-decoration: underline;
}
.cid-uf0dPa4ER0 a,
.cid-uf0dPa4ER0 a:hover {
  font-weight: 400 !important;
}
.cid-uf0dPa4ER0 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uFCukNjreB .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFCukNjreB .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uFCukNjreB a {
  font-style: normal;
}
.cid-uFCukNjreB .show {
  overflow: visible;
}
.cid-uFCukNjreB .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uFCukNjreB .dropdown-item:active {
  background-color: transparent;
}
.cid-uFCukNjreB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uFCukNjreB .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uFCukNjreB .nav-item:focus,
.cid-uFCukNjreB .nav-link:focus {
  outline: none;
}
.cid-uFCukNjreB .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uFCukNjreB .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uFCukNjreB .menu-logo {
  margin-right: auto;
}
.cid-uFCukNjreB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uFCukNjreB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uFCukNjreB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uFCukNjreB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uFCukNjreB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uFCukNjreB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uFCukNjreB .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uFCukNjreB .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uFCukNjreB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uFCukNjreB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFCukNjreB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uFCukNjreB .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uFCukNjreB .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uFCukNjreB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uFCukNjreB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFCukNjreB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uFCukNjreB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFCukNjreB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uFCukNjreB .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uFCukNjreB .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uFCukNjreB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uFCukNjreB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uFCukNjreB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uFCukNjreB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uFCukNjreB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uFCukNjreB button.navbar-toggler:focus {
  outline: none;
}
.cid-uFCukNjreB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uFCukNjreB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFCukNjreB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFCukNjreB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFCukNjreB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFCukNjreB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFCukNjreB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFCukNjreB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFCukNjreB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uFCukNjreB .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uFCukNjreB .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uFCukNjreB .collapsed .btn {
  display: -webkit-flex;
}
.cid-uFCukNjreB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uFCukNjreB .collapsed .navbar-collapse.collapsing,
.cid-uFCukNjreB .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uFCukNjreB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uFCukNjreB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uFCukNjreB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uFCukNjreB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uFCukNjreB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uFCukNjreB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uFCukNjreB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uFCukNjreB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uFCukNjreB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uFCukNjreB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uFCukNjreB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uFCukNjreB .collapsed button.navbar-toggler {
  display: block;
}
.cid-uFCukNjreB .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uFCukNjreB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uFCukNjreB .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-uFCukNjreB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uFCukNjreB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uFCukNjreB .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;
}
@media (max-width: 991px) {
  .cid-uFCukNjreB.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uFCukNjreB img {
    height: 3.8rem !important;
  }
  .cid-uFCukNjreB .btn {
    display: -webkit-flex;
  }
  .cid-uFCukNjreB button.navbar-toggler {
    display: block;
  }
  .cid-uFCukNjreB .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uFCukNjreB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uFCukNjreB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uFCukNjreB .navbar-collapse.collapsing,
  .cid-uFCukNjreB .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uFCukNjreB .navbar-collapse.collapsing .navbar-nav,
  .cid-uFCukNjreB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uFCukNjreB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uFCukNjreB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uFCukNjreB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uFCukNjreB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uFCukNjreB .navbar-collapse.collapsing .navbar-buttons,
  .cid-uFCukNjreB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uFCukNjreB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uFCukNjreB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uFCukNjreB .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-uFCukNjreB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uFCukNjreB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uFCukNjreB .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;
  }
}
@media (max-width: 767px) {
  .cid-uFCukNjreB .nav-link {
    justify-content: start !important;
  }
  .cid-uFCukNjreB .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uFCukNjreB .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uFCukNjreB .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uFCukNjreB .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uFCukNjreB .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uFCukNjreB .nav-link:hover,
.cid-uFCukNjreB .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uFCukNjreB .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uFCukNjreB .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uFCukNsFBc {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-uFCukNsFBc h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uFCukNsFBc .container {
    position: relative;
  }
  .cid-uFCukNsFBc .row {
    margin: 0;
  }
  .cid-uFCukNsFBc h2 {
    margin: 0;
  }
}
.cid-uFCukNsFBc .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uFCukNsFBc .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uFCukNsFBc h2 {
  color: #0a1c44;
}
.cid-uFCukNzqNh {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #7eb9b9;
  position: relative;
  overflow: hidden;
}
.cid-uFCukNzqNh svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-uFCukNzqNh #e1_ellipse {
  fill: #ffffff !important;
}
.cid-uFCukNzqNh img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-uFCukNzqNh img {
    width: 100%;
    left: 0;
  }
}
.cid-uFCukNzqNh H1 {
  color: #008b8b;
}
.cid-uFCukNzqNh .mbr-text,
.cid-uFCukNzqNh .mbr-section-btn {
  color: #000000;
}
.cid-uFCukNzqNh H3 {
  color: #333333;
}
.cid-uFCukNGLMn {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uFCukNGLMn H1 {
  color: #f5f7fa;
}
.cid-uFCukNGLMn .mbr-text,
.cid-uFCukNGLMn .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uFCukNGLMn H3 {
  color: #716c80;
}
.cid-uFCukNQBbm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uFCukNQBbm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uFCukNQBbm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFCukNQBbm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uFCukNQBbm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uFCukNQBbm .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-uFCukNQBbm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uFCukNQBbm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uFCukNQBbm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uFCukNQBbm .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-uFCukO9DKi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uFCukO9DKi .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uFCukO9DKi .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uFCukO9DKi .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uFCukO9DKi .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uFCukO9DKi .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uFCukO9DKi .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uFCukO9DKi .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uFCukO9DKi .input-group-btn {
  padding-left: 0;
}
.cid-uFCukO9DKi .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uFCukO9DKi .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uFCukO9DKi .mbr-text {
  color: #444;
}
.cid-uFCukO9DKi h5 {
  margin-bottom: 0;
}
.cid-uFCukO9DKi .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uFCukO9DKi .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uFCukO9DKi .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uFCukO9DKi .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFCukO9DKi .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uFCukO9DKi .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uFCukO9DKi .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uFCukO9DKi .social-list a:hover {
  opacity: 0.4;
}
.cid-uFCukO9DKi .media-container-row > div {
  padding: 0px;
}
.cid-uFCukO9DKi .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uFCukO9DKi .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uFCukO9DKi .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uFCukO9DKi .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uFCukO9DKi .social-list,
  .cid-uFCukO9DKi .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uFCukO9DKi h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uFCukO9DKi .form-group {
    max-width: 180px;
  }
}
.cid-uFCukO9DKi .links span {
  color: #9e9e9e;
}
.cid-uFCukO9DKi .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uFCukO9DKi .logo-title {
  text-align: center;
}
.cid-uFCukO9DKi .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uFCukO9DKi .logo-title,
.cid-uFCukO9DKi .logo {
  color: #f5f7fa;
}
.cid-uFCukOqPpK {
  background-color: #669b9b;
}
.cid-uFCukOqPpK svg {
  position: absolute;
  top: 0;
}
.cid-uFCukOqPpK .svg-1 {
  fill: #008b8b;
}
.cid-uFCukOqPpK .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uFCukOqPpK {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uFCukOqPpK {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uFCukOqPpK .mbr-text {
  color: #b1bee0;
}
.cid-uFCukOqPpK a {
  text-decoration: underline;
}
.cid-uFCukOqPpK a,
.cid-uFCukOqPpK a:hover {
  font-weight: 400 !important;
}
.cid-uFCukOqPpK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ugwqctcBsH .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugwqctcBsH .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-ugwqctcBsH a {
  font-style: normal;
}
.cid-ugwqctcBsH .show {
  overflow: visible;
}
.cid-ugwqctcBsH .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-ugwqctcBsH .dropdown-item:active {
  background-color: transparent;
}
.cid-ugwqctcBsH .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ugwqctcBsH .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-ugwqctcBsH .nav-item:focus,
.cid-ugwqctcBsH .nav-link:focus {
  outline: none;
}
.cid-ugwqctcBsH .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ugwqctcBsH .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ugwqctcBsH .menu-logo {
  margin-right: auto;
}
.cid-ugwqctcBsH .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ugwqctcBsH .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-ugwqctcBsH .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ugwqctcBsH .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ugwqctcBsH .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-ugwqctcBsH .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ugwqctcBsH .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ugwqctcBsH .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-ugwqctcBsH .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ugwqctcBsH .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ugwqctcBsH .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ugwqctcBsH .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-ugwqctcBsH .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ugwqctcBsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ugwqctcBsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugwqctcBsH .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ugwqctcBsH .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugwqctcBsH .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ugwqctcBsH .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-ugwqctcBsH .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ugwqctcBsH .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ugwqctcBsH .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ugwqctcBsH .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-ugwqctcBsH .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ugwqctcBsH button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ugwqctcBsH button.navbar-toggler:focus {
  outline: none;
}
.cid-ugwqctcBsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-ugwqctcBsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugwqctcBsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugwqctcBsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugwqctcBsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugwqctcBsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugwqctcBsH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugwqctcBsH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugwqctcBsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-ugwqctcBsH .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-ugwqctcBsH .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ugwqctcBsH .collapsed .btn {
  display: -webkit-flex;
}
.cid-ugwqctcBsH .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ugwqctcBsH .collapsed .navbar-collapse.collapsing,
.cid-ugwqctcBsH .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-ugwqctcBsH .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ugwqctcBsH .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ugwqctcBsH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ugwqctcBsH .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ugwqctcBsH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-ugwqctcBsH .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-ugwqctcBsH .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ugwqctcBsH .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ugwqctcBsH .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ugwqctcBsH .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ugwqctcBsH .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-ugwqctcBsH .collapsed button.navbar-toggler {
  display: block;
}
.cid-ugwqctcBsH .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ugwqctcBsH .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ugwqctcBsH .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-ugwqctcBsH .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ugwqctcBsH .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ugwqctcBsH .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;
}
@media (max-width: 991px) {
  .cid-ugwqctcBsH.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ugwqctcBsH img {
    height: 3.8rem !important;
  }
  .cid-ugwqctcBsH .btn {
    display: -webkit-flex;
  }
  .cid-ugwqctcBsH button.navbar-toggler {
    display: block;
  }
  .cid-ugwqctcBsH .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ugwqctcBsH .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ugwqctcBsH .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ugwqctcBsH .navbar-collapse.collapsing,
  .cid-ugwqctcBsH .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-ugwqctcBsH .navbar-collapse.collapsing .navbar-nav,
  .cid-ugwqctcBsH .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ugwqctcBsH .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ugwqctcBsH .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ugwqctcBsH .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-ugwqctcBsH .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-ugwqctcBsH .navbar-collapse.collapsing .navbar-buttons,
  .cid-ugwqctcBsH .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ugwqctcBsH .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ugwqctcBsH .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ugwqctcBsH .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-ugwqctcBsH .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ugwqctcBsH .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ugwqctcBsH .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;
  }
}
@media (max-width: 767px) {
  .cid-ugwqctcBsH .nav-link {
    justify-content: start !important;
  }
  .cid-ugwqctcBsH .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-ugwqctcBsH .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-ugwqctcBsH .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-ugwqctcBsH .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ugwqctcBsH .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ugwqctcBsH .nav-link:hover,
.cid-ugwqctcBsH .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-ugwqctcBsH .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-ugwqctcBsH .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ugwqcueh0m {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-ugwqcueh0m h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ugwqcueh0m .container {
    position: relative;
  }
  .cid-ugwqcueh0m .row {
    margin: 0;
  }
  .cid-ugwqcueh0m h2 {
    margin: 0;
  }
}
.cid-ugwqcueh0m .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ugwqcueh0m .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-ugwqcueh0m h2 {
  color: #0a1c44;
}
.cid-ugwqcv55jL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-ugwqcv55jL .col-lg-6 {
  padding: 0 2rem;
}
.cid-ugwqcv55jL .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-ugwqcv55jL .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-ugwqcv55jL .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-ugwqcv55jL .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-ugwqcv55jL .card-wrapper:hover {
  background: #f8f9fb;
}
.cid-ugwqcv55jL .mbr-iconfont {
  font-size: 3rem;
  color: #0196e3;
  padding: 2.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
}
.cid-ugwqcv55jL .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-ugwqcv55jL .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ugwqcv55jL .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-ugwqcv55jL .card-text {
  color: #6c758f;
}
.cid-ugwqcv55jL .card-title {
  color: #0196e3;
}
.cid-uhErwpWyZY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-uw6lwxDb4O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uw6lwxDb4O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw6lwxDb4O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw6lwxDb4O .content-wrapper {
  padding: 80px 90px;
  background-color: #90ee90;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uw6lwxDb4O .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uw6lwxDb4O .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uw6lwxDb4O .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uw6lwxDb4O .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uw6lwxDb4O .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uw6lwxDb4O .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-uw6lwxDb4O .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uw6lwxDb4O .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uw6lwxDb4O .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uw6lwxDb4O .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uw6lwxDb4O .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uw6lwxDb4O .mbr-section-title {
  color: #050f0f;
}
.cid-uw6lwxDb4O .mbr-text {
  color: #050f0f;
}
.cid-ukecjDhWEy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7eb9b9;
}
.cid-ukecjDhWEy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukecjDhWEy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukecjDhWEy .container {
    padding: 0 30px;
  }
}
.cid-ukecjDhWEy .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ukecjDhWEy .title-wrapper {
    height: auto;
    margin-bottom: 40px;
  }
}
.cid-ukecjDhWEy .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 40px;
}
.cid-ukecjDhWEy .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
.cid-ukecjDhWEy .image-wrapper {
  padding: 0 55px 0 68px;
}
@media (max-width: 992px) {
  .cid-ukecjDhWEy .image-wrapper {
    padding: 0;
  }
}
.cid-ukecjDhWEy .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukecjDhWEy .image-wrapper img {
    height: 350px;
  }
}
.cid-ukecjDhWEy .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-ukecjDhWEy .mbr-section-title {
  color: #212529;
}
.cid-ukecjDhWEy .mbr-section-title,
.cid-ukecjDhWEy .mbr-section-btn {
  text-align: center;
}
.cid-ugwqcwat4k {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-ugwqcwat4k .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-ugwqcwat4k .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-ugwqcwat4k .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-ugwqcwat4k .card-title,
.cid-ugwqcwat4k .card-img {
  color: #f5f7fa;
}
.cid-ugwqcwat4k .mbr-text,
.cid-ugwqcwat4k .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uw6TEbnSJu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uw6TEbnSJu .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uw6TEbnSJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw6TEbnSJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw6TEbnSJu .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uw6TEbnSJu .content-wrap .card {
  justify-content: space-between;
}
.cid-uw6TEbnSJu .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uw6TEbnSJu .content-wrapper {
    padding: 0;
  }
}
.cid-uw6TEbnSJu .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uw6TEbnSJu .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uw6TEbnSJu .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uw6TEbnSJu .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uw6TEbnSJu .mbr-desc,
.cid-uw6TEbnSJu .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-ugwqcwp62p {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-ugwqcwp62p .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-ugwqcwp62p .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-ugwqcwp62p .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-ugwqcwp62p .price-tage > p {
  letter-spacing: 2px;
}
.cid-ugwqcwp62p .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-ugwqcwp62p .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-ugwqcwp62p .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-ugwqcwp62p .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-ugwqcwp62p .costs {
  color: #ffffff;
}
.cid-ugwqcwp62p .costs-title {
  color: #ffffff;
}
.cid-ugwqcwp62p .table-content,
.cid-ugwqcwp62p .mbr-section-btn {
  color: #0a1c44;
}
.cid-ugwqcwNKDQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #79afe1;
}
.cid-ugwqcwNKDQ .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-ugwqcwNKDQ .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-ugwqcwNKDQ .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-ugwqcwNKDQ .price-tage > p {
  letter-spacing: 2px;
}
.cid-ugwqcwNKDQ .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-ugwqcwNKDQ .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-ugwqcwNKDQ .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-ugwqcwNKDQ .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-ugwqcwNKDQ .costs {
  color: #ffffff;
}
.cid-ugwqcwNKDQ .costs-title {
  color: #ffffff;
}
.cid-ugwqcwNKDQ .table-content,
.cid-ugwqcwNKDQ .mbr-section-btn {
  color: #0a1c44;
}
.cid-ugwqcxiRXg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2973b8;
}
.cid-ugwqcxiRXg .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-ugwqcxiRXg .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-ugwqcxiRXg .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-ugwqcxiRXg .card-title,
.cid-ugwqcxiRXg .card-img {
  color: #f5f7fa;
}
.cid-ugwqcxiRXg .mbr-text,
.cid-ugwqcxiRXg .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uw6ThezrMn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uw6ThezrMn .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uw6ThezrMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw6ThezrMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw6ThezrMn .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uw6ThezrMn .content-wrap .card {
  justify-content: space-between;
}
.cid-uw6ThezrMn .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uw6ThezrMn .content-wrapper {
    padding: 0;
  }
}
.cid-uw6ThezrMn .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uw6ThezrMn .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uw6ThezrMn .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uw6ThezrMn .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uw6ThezrMn .mbr-desc,
.cid-uw6ThezrMn .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-ugwqcxwJWk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-ugwqcxwJWk .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-ugwqcxwJWk .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-ugwqcxwJWk .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-ugwqcxwJWk .price-tage > p {
  letter-spacing: 2px;
}
.cid-ugwqcxwJWk .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-ugwqcxwJWk .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-ugwqcxwJWk .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-ugwqcxwJWk .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-ugwqcxwJWk .costs {
  color: #ffffff;
}
.cid-ugwqcxwJWk .costs-title {
  color: #ffffff;
}
.cid-ugwqcxwJWk .table-content,
.cid-ugwqcxwJWk .mbr-section-btn {
  color: #0a1c44;
}
.cid-ugwqcxTU80 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-ugwqcxTU80 .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-ugwqcxTU80 .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-ugwqcxTU80 .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-ugwqcxTU80 .price-tage > p {
  letter-spacing: 2px;
}
.cid-ugwqcxTU80 .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-ugwqcxTU80 .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-ugwqcxTU80 .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-ugwqcxTU80 .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-ugwqcxTU80 .costs {
  color: #ffffff;
}
.cid-ugwqcxTU80 .costs-title {
  color: #ffffff;
}
.cid-ugwqcxTU80 .table-content,
.cid-ugwqcxTU80 .mbr-section-btn {
  color: #0a1c44;
}
.cid-uhEruHRaeR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #7eb9b9;
}
.cid-uhEruHRaeR .mbr-section-title {
  color: #f5f7fa;
}
.cid-uhEruHRaeR .mbr-section-subtitle {
  color: #232323;
}
.cid-uhEsZ8vm29 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #7eb9b9;
}
.cid-uhEsZ8vm29 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uhEsZ8vm29 .card .card-wrapper {
  background: #008b8b;
  height: 1%;
}
.cid-uhEsZ8vm29 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uhEsZ8vm29 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uhEsZ8vm29 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-uhEsZ8vm29 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uhEsZ8vm29 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uhEsZ8vm29 .mbr-card-text {
  margin: 0;
}
.cid-ugwqczgmfb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-ugwqczgmfb .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ugwqczgmfb .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-ugwqczgmfb .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-ugwqczgmfb .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-ugwqczgmfb .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-ugwqczgmfb .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ugwqczgmfb .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-ugwqczgmfb .input-group-btn {
  padding-left: 0;
}
.cid-ugwqczgmfb .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ugwqczgmfb .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-ugwqczgmfb .mbr-text {
  color: #444;
}
.cid-ugwqczgmfb h5 {
  margin-bottom: 0;
}
.cid-ugwqczgmfb .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-ugwqczgmfb .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ugwqczgmfb .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ugwqczgmfb .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ugwqczgmfb .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ugwqczgmfb .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ugwqczgmfb .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ugwqczgmfb .social-list a:hover {
  opacity: 0.4;
}
.cid-ugwqczgmfb .media-container-row > div {
  padding: 0px;
}
.cid-ugwqczgmfb .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-ugwqczgmfb .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-ugwqczgmfb .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ugwqczgmfb .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ugwqczgmfb .social-list,
  .cid-ugwqczgmfb .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-ugwqczgmfb h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ugwqczgmfb .form-group {
    max-width: 180px;
  }
}
.cid-ugwqczgmfb .links span {
  color: #9e9e9e;
}
.cid-ugwqczgmfb .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-ugwqczgmfb .logo-title {
  text-align: center;
}
.cid-ugwqczgmfb .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ugwqczgmfb .logo-title,
.cid-ugwqczgmfb .logo {
  color: #f5f7fa;
}
.cid-ugwqczUuac {
  background-color: #669b9b;
}
.cid-ugwqczUuac svg {
  position: absolute;
  top: 0;
}
.cid-ugwqczUuac .svg-1 {
  fill: #008b8b;
}
.cid-ugwqczUuac .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ugwqczUuac {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-ugwqczUuac {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-ugwqczUuac .mbr-text {
  color: #b1bee0;
}
.cid-ugwqczUuac a {
  text-decoration: underline;
}
.cid-ugwqczUuac a,
.cid-ugwqczUuac a:hover {
  font-weight: 400 !important;
}
.cid-ugwqczUuac .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uMMOF94Ej6 .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMMOF94Ej6 .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uMMOF94Ej6 a {
  font-style: normal;
}
.cid-uMMOF94Ej6 .show {
  overflow: visible;
}
.cid-uMMOF94Ej6 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uMMOF94Ej6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMMOF94Ej6 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uMMOF94Ej6 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uMMOF94Ej6 .nav-item:focus,
.cid-uMMOF94Ej6 .nav-link:focus {
  outline: none;
}
.cid-uMMOF94Ej6 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uMMOF94Ej6 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uMMOF94Ej6 .menu-logo {
  margin-right: auto;
}
.cid-uMMOF94Ej6 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uMMOF94Ej6 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uMMOF94Ej6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uMMOF94Ej6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uMMOF94Ej6 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uMMOF94Ej6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uMMOF94Ej6 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uMMOF94Ej6 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uMMOF94Ej6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uMMOF94Ej6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMMOF94Ej6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uMMOF94Ej6 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uMMOF94Ej6 .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uMMOF94Ej6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uMMOF94Ej6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMMOF94Ej6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uMMOF94Ej6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMMOF94Ej6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uMMOF94Ej6 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uMMOF94Ej6 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uMMOF94Ej6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uMMOF94Ej6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uMMOF94Ej6 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uMMOF94Ej6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uMMOF94Ej6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uMMOF94Ej6 button.navbar-toggler:focus {
  outline: none;
}
.cid-uMMOF94Ej6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uMMOF94Ej6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMMOF94Ej6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMMOF94Ej6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMMOF94Ej6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMMOF94Ej6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMMOF94Ej6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMMOF94Ej6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMMOF94Ej6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uMMOF94Ej6 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uMMOF94Ej6 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uMMOF94Ej6 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uMMOF94Ej6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.collapsing,
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uMMOF94Ej6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMMOF94Ej6 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uMMOF94Ej6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uMMOF94Ej6 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uMMOF94Ej6 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uMMOF94Ej6 .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-uMMOF94Ej6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uMMOF94Ej6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uMMOF94Ej6 .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;
}
@media (max-width: 991px) {
  .cid-uMMOF94Ej6.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uMMOF94Ej6 img {
    height: 3.8rem !important;
  }
  .cid-uMMOF94Ej6 .btn {
    display: -webkit-flex;
  }
  .cid-uMMOF94Ej6 button.navbar-toggler {
    display: block;
  }
  .cid-uMMOF94Ej6 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uMMOF94Ej6 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uMMOF94Ej6 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uMMOF94Ej6 .navbar-collapse.collapsing,
  .cid-uMMOF94Ej6 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uMMOF94Ej6 .navbar-collapse.collapsing .navbar-nav,
  .cid-uMMOF94Ej6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uMMOF94Ej6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uMMOF94Ej6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uMMOF94Ej6 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uMMOF94Ej6 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uMMOF94Ej6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uMMOF94Ej6 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uMMOF94Ej6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uMMOF94Ej6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uMMOF94Ej6 .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-uMMOF94Ej6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uMMOF94Ej6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uMMOF94Ej6 .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;
  }
}
@media (max-width: 767px) {
  .cid-uMMOF94Ej6 .nav-link {
    justify-content: start !important;
  }
  .cid-uMMOF94Ej6 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uMMOF94Ej6 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uMMOF94Ej6 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uMMOF94Ej6 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uMMOF94Ej6 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uMMOF94Ej6 .nav-link:hover,
.cid-uMMOF94Ej6 .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uMMOF94Ej6 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uMMOF94Ej6 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uMMOF9ntLJ {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .cid-uMMOF9ntLJ h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMMOF9ntLJ .container {
    position: relative;
  }
  .cid-uMMOF9ntLJ .row {
    margin: 0;
  }
  .cid-uMMOF9ntLJ h2 {
    margin: 0;
  }
}
.cid-uMMOF9ntLJ .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uMMOF9ntLJ .mbr-text {
  margin-top: 1.4rem;
  color: #0a1c44;
}
.cid-uMMOF9ntLJ h2 {
  color: #0a1c44;
}
.cid-uMMOFa1U3R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uMMOFa1U3R .col-lg-6 {
  padding: 0 2rem;
}
.cid-uMMOFa1U3R .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uMMOFa1U3R .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-uMMOFa1U3R .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uMMOFa1U3R .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-uMMOFa1U3R .card-wrapper:hover {
  background: #f8f9fb;
}
.cid-uMMOFa1U3R .mbr-iconfont {
  font-size: 3rem;
  color: #0196e3;
  padding: 2.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
}
.cid-uMMOFa1U3R .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-uMMOFa1U3R .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uMMOFa1U3R .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-uMMOFa1U3R .card-text {
  color: #6c758f;
}
.cid-uMMOFa1U3R .card-title {
  color: #0196e3;
}
.cid-uMN1ysPqmg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #90ee90;
}
.cid-uMN1ysPqmg .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uMN1ysPqmg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMN1ysPqmg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMN1ysPqmg .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uMN1ysPqmg .content-wrap .card {
  justify-content: space-between;
}
.cid-uMN1ysPqmg .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uMN1ysPqmg .content-wrapper {
    padding: 0;
  }
}
.cid-uMN1ysPqmg .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uMN1ysPqmg .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uMN1ysPqmg .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uMN1ysPqmg .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uMN1ysPqmg .mbr-desc,
.cid-uMN1ysPqmg .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uMN1ysPqmg .mbr-section-title,
.cid-uMN1ysPqmg .mbr-section-btn {
  color: #ff4a52;
}
.cid-uMNjR0Y932 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7fff7;
}
.cid-uMNjR0Y932 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNjR0Y932 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNjR0Y932 .content-wrapper {
  padding: 80px 90px;
  background-color: #90ee90;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMNjR0Y932 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uMNjR0Y932 .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uMNjR0Y932 .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uMNjR0Y932 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uMNjR0Y932 .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uMNjR0Y932 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-uMNjR0Y932 .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uMNjR0Y932 .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uMNjR0Y932 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uMNjR0Y932 .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMNjR0Y932 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uMNjR0Y932 .mbr-section-title {
  color: #050f0f;
}
.cid-uMNjR0Y932 .mbr-text {
  color: #050f0f;
}
.cid-uPuIRggcOo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-uPuIRggcOo H1 {
  color: #f5f7fa;
}
.cid-uPuIRggcOo .mbr-text,
.cid-uPuIRggcOo .mbr-section-btn {
  color: #f5f7fa;
  text-align: center;
}
.cid-uPuIRggcOo H3 {
  color: #716c80;
}
.cid-uNeutzGP7h {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-uMMOFdydh4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-uMMOFdydh4 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uMMOFdydh4 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uMMOFdydh4 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uMMOFdydh4 .card-title,
.cid-uMMOFdydh4 .card-img {
  color: #f5f7fa;
}
.cid-uMMOFdydh4 .mbr-text,
.cid-uMMOFdydh4 .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uMMOFfA2Z4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-uMMOFfA2Z4 .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uMMOFfA2Z4 .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uMMOFfA2Z4 .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uMMOFfA2Z4 .price-tage > p {
  letter-spacing: 2px;
}
.cid-uMMOFfA2Z4 .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uMMOFfA2Z4 .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uMMOFfA2Z4 .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uMMOFfA2Z4 .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uMMOFfA2Z4 .costs {
  color: #ffffff;
}
.cid-uMMOFfA2Z4 .costs-title {
  color: #ffffff;
}
.cid-uMMOFfA2Z4 .price-item {
  padding-bottom: 0;
}
.cid-uMMOFfA2Z4 .table-content {
  margin-bottom: 0;
}
.cid-uMMOFfA2Z4 .table-content > li:last-child {
  border-bottom: none;
}
.cid-uMMOFfA2Z4 .table-content,
.cid-uMMOFfA2Z4 .mbr-section-btn {
  color: #0a1c44;
}
.cid-uMNhTA1qgz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #79afe1;
}
.cid-uMNhTA1qgz .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uMNhTA1qgz .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uMNhTA1qgz .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uMNhTA1qgz .price-tage > p {
  letter-spacing: 2px;
}
.cid-uMNhTA1qgz .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uMNhTA1qgz .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uMNhTA1qgz .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uMNhTA1qgz .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uMNhTA1qgz .costs {
  color: #ffffff;
}
.cid-uMNhTA1qgz .costs-title {
  color: #ffffff;
}
.cid-uMNhTA1qgz .table-content,
.cid-uMNhTA1qgz .mbr-section-btn {
  color: #0a1c44;
}
.cid-uMMSfXyBJ9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #86b9e8;
}
.cid-uMMSfXyBJ9 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uMMSfXyBJ9 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uMMSfXyBJ9 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uMMSfXyBJ9 .card-title,
.cid-uMMSfXyBJ9 .card-img {
  color: #f5f7fa;
}
.cid-uMMSfXyBJ9 .mbr-text,
.cid-uMMSfXyBJ9 .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uMMSoQTaNj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #86b9e8;
}
.cid-uMMSoQTaNj .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uMMSoQTaNj .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uMMSoQTaNj .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uMMSoQTaNj .price-tage > p {
  letter-spacing: 2px;
}
.cid-uMMSoQTaNj .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uMMSoQTaNj .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uMMSoQTaNj .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uMMSoQTaNj .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uMMSoQTaNj .costs {
  color: #ffffff;
}
.cid-uMMSoQTaNj .costs-title {
  color: #ffffff;
}
.cid-uMMSoQTaNj .price-item {
  padding-bottom: 0;
}
.cid-uMMSoQTaNj .table-content {
  margin-bottom: 0;
}
.cid-uMMSoQTaNj .table-content > li:last-child {
  border-bottom: none;
}
.cid-uMMSoQTaNj .table-content,
.cid-uMMSoQTaNj .mbr-section-btn {
  color: #0a1c44;
}
.cid-uMMSQ51lqe {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #79afe1;
}
.cid-uMMSQ51lqe .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uMMSQ51lqe .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uMMSQ51lqe .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uMMSQ51lqe .price-tage > p {
  letter-spacing: 2px;
}
.cid-uMMSQ51lqe .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uMMSQ51lqe .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uMMSQ51lqe .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uMMSQ51lqe .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uMMSQ51lqe .costs {
  color: #ffffff;
}
.cid-uMMSQ51lqe .costs-title {
  color: #ffffff;
}
.cid-uMMSQ51lqe .price-item {
  padding-bottom: 0;
}
.cid-uMMSQ51lqe .table-content {
  margin-bottom: 0;
}
.cid-uMMSQ51lqe .table-content > li:last-child {
  border-bottom: none;
}
.cid-uMMSQ51lqe .table-content,
.cid-uMMSQ51lqe .mbr-section-btn {
  color: #0a1c44;
}
.cid-uPuIPHTbIw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-uPuIPHTbIw H1 {
  color: #f5f7fa;
}
.cid-uPuIPHTbIw .mbr-text,
.cid-uPuIPHTbIw .mbr-section-btn {
  color: #f5f7fa;
  text-align: center;
}
.cid-uPuIPHTbIw H3 {
  color: #716c80;
}
.cid-uMMOFiggbP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2973b8;
}
.cid-uMMOFiggbP .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uMMOFiggbP .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uMMOFiggbP .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uMMOFiggbP .card-title,
.cid-uMMOFiggbP .card-img {
  color: #f5f7fa;
}
.cid-uMMOFiggbP .mbr-text,
.cid-uMMOFiggbP .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uMMOFk3qUT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #2973b8;
}
.cid-uMMOFk3qUT .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uMMOFk3qUT .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uMMOFk3qUT .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uMMOFk3qUT .price-tage > p {
  letter-spacing: 2px;
}
.cid-uMMOFk3qUT .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uMMOFk3qUT .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uMMOFk3qUT .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uMMOFk3qUT .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uMMOFk3qUT .costs {
  color: #ffffff;
}
.cid-uMMOFk3qUT .costs-title {
  color: #ffffff;
}
.cid-uMMOFk3qUT .price-item {
  padding-bottom: 0;
}
.cid-uMMOFk3qUT .table-content {
  margin-bottom: 0;
}
.cid-uMMOFk3qUT .table-content > li:last-child {
  border-bottom: none;
}
.cid-uMMOFk3qUT .table-content,
.cid-uMMOFk3qUT .mbr-section-btn {
  color: #0a1c44;
}
.cid-uPlIxMkBon {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #79afe1;
}
.cid-uPlIxMkBon .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #0a1c44;
}
.cid-uPlIxMkBon .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uPlIxMkBon .price-tage {
  background: #008b8b none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uPlIxMkBon .price-tage > p {
  letter-spacing: 2px;
}
.cid-uPlIxMkBon .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uPlIxMkBon .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uPlIxMkBon .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uPlIxMkBon .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uPlIxMkBon .costs {
  color: #ffffff;
}
.cid-uPlIxMkBon .costs-title {
  color: #ffffff;
}
.cid-uPlIxMkBon .price-item {
  padding-bottom: 0;
}
.cid-uPlIxMkBon .table-content {
  margin-bottom: 0;
}
.cid-uPlIxMkBon .table-content > li:last-child {
  border-bottom: none;
}
.cid-uPlIxMkBon .table-content,
.cid-uPlIxMkBon .mbr-section-btn {
  color: #0a1c44;
}
.cid-uPuIlhn48P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-uPuIlhn48P H1 {
  color: #f5f7fa;
}
.cid-uPuIlhn48P .mbr-text,
.cid-uPuIlhn48P .mbr-section-btn {
  color: #f5f7fa;
  text-align: center;
}
.cid-uPuIlhn48P H3 {
  color: #716c80;
}
.cid-uNetv3Rrg3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #7eb9b9;
}
.cid-uNetv3Rrg3 .mbr-section-title {
  color: #f5f7fa;
}
.cid-uNetv3Rrg3 .mbr-section-subtitle {
  color: #232323;
}
.cid-uNetrhtEQl {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #7eb9b9;
}
.cid-uNetrhtEQl .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNetrhtEQl .card .card-wrapper {
  background: #008b8b;
  height: 1%;
}
.cid-uNetrhtEQl .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uNetrhtEQl .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNetrhtEQl .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-uNetrhtEQl .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNetrhtEQl .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uNetrhtEQl .mbr-card-text {
  margin: 0;
}
.cid-uPuIO3OenU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-uPuIO3OenU H1 {
  color: #f5f7fa;
}
.cid-uPuIO3OenU .mbr-text,
.cid-uPuIO3OenU .mbr-section-btn {
  color: #f5f7fa;
  text-align: center;
}
.cid-uPuIO3OenU H3 {
  color: #716c80;
}
.cid-uMMOFqtz9D {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uMMOFqtz9D .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uMMOFqtz9D .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uMMOFqtz9D .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uMMOFqtz9D .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uMMOFqtz9D .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uMMOFqtz9D .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uMMOFqtz9D .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uMMOFqtz9D .input-group-btn {
  padding-left: 0;
}
.cid-uMMOFqtz9D .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uMMOFqtz9D .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uMMOFqtz9D .mbr-text {
  color: #444;
}
.cid-uMMOFqtz9D h5 {
  margin-bottom: 0;
}
.cid-uMMOFqtz9D .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uMMOFqtz9D .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uMMOFqtz9D .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uMMOFqtz9D .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMMOFqtz9D .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uMMOFqtz9D .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uMMOFqtz9D .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uMMOFqtz9D .social-list a:hover {
  opacity: 0.4;
}
.cid-uMMOFqtz9D .media-container-row > div {
  padding: 0px;
}
.cid-uMMOFqtz9D .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uMMOFqtz9D .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uMMOFqtz9D .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uMMOFqtz9D .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uMMOFqtz9D .social-list,
  .cid-uMMOFqtz9D .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uMMOFqtz9D h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uMMOFqtz9D .form-group {
    max-width: 180px;
  }
}
.cid-uMMOFqtz9D .links span {
  color: #9e9e9e;
}
.cid-uMMOFqtz9D .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uMMOFqtz9D .logo-title {
  text-align: center;
}
.cid-uMMOFqtz9D .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uMMOFqtz9D .logo-title,
.cid-uMMOFqtz9D .logo {
  color: #f5f7fa;
}
.cid-uMMOFs3Ryj {
  background-color: #669b9b;
}
.cid-uMMOFs3Ryj svg {
  position: absolute;
  top: 0;
}
.cid-uMMOFs3Ryj .svg-1 {
  fill: #008b8b;
}
.cid-uMMOFs3Ryj .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uMMOFs3Ryj {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uMMOFs3Ryj {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uMMOFs3Ryj .mbr-text {
  color: #b1bee0;
}
.cid-uMMOFs3Ryj a {
  text-decoration: underline;
}
.cid-uMMOFs3Ryj a,
.cid-uMMOFs3Ryj a:hover {
  font-weight: 400 !important;
}
.cid-uMMOFs3Ryj .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uVEEx5OB7X .navbar {
  background: #008b8b;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVEEx5OB7X .navbar-dropdown.bg-color.transparent.opened {
  background: #008b8b;
}
.cid-uVEEx5OB7X a {
  font-style: normal;
}
.cid-uVEEx5OB7X .show {
  overflow: visible;
}
.cid-uVEEx5OB7X .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-uVEEx5OB7X .dropdown-item:active {
  background-color: transparent;
}
.cid-uVEEx5OB7X .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uVEEx5OB7X .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-uVEEx5OB7X .nav-item:focus,
.cid-uVEEx5OB7X .nav-link:focus {
  outline: none;
}
.cid-uVEEx5OB7X .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uVEEx5OB7X .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uVEEx5OB7X .menu-logo {
  margin-right: auto;
}
.cid-uVEEx5OB7X .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uVEEx5OB7X .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uVEEx5OB7X .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uVEEx5OB7X .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uVEEx5OB7X .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uVEEx5OB7X .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uVEEx5OB7X .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uVEEx5OB7X .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-uVEEx5OB7X .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uVEEx5OB7X .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVEEx5OB7X .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uVEEx5OB7X .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-uVEEx5OB7X .dropdown .dropdown-menu {
  background: #008b8b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uVEEx5OB7X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uVEEx5OB7X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVEEx5OB7X .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uVEEx5OB7X .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVEEx5OB7X .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uVEEx5OB7X .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-uVEEx5OB7X .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uVEEx5OB7X .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uVEEx5OB7X .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uVEEx5OB7X .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uVEEx5OB7X .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uVEEx5OB7X button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uVEEx5OB7X button.navbar-toggler:focus {
  outline: none;
}
.cid-uVEEx5OB7X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uVEEx5OB7X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVEEx5OB7X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVEEx5OB7X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVEEx5OB7X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVEEx5OB7X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVEEx5OB7X nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVEEx5OB7X nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVEEx5OB7X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-uVEEx5OB7X .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-uVEEx5OB7X .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVEEx5OB7X .collapsed .btn {
  display: -webkit-flex;
}
.cid-uVEEx5OB7X .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uVEEx5OB7X .collapsed .navbar-collapse.collapsing,
.cid-uVEEx5OB7X .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-uVEEx5OB7X .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uVEEx5OB7X .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uVEEx5OB7X .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uVEEx5OB7X .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uVEEx5OB7X .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uVEEx5OB7X .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uVEEx5OB7X .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uVEEx5OB7X .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uVEEx5OB7X .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uVEEx5OB7X .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uVEEx5OB7X .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uVEEx5OB7X .collapsed button.navbar-toggler {
  display: block;
}
.cid-uVEEx5OB7X .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uVEEx5OB7X .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVEEx5OB7X .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-uVEEx5OB7X .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uVEEx5OB7X .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uVEEx5OB7X .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;
}
@media (max-width: 991px) {
  .cid-uVEEx5OB7X.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVEEx5OB7X img {
    height: 3.8rem !important;
  }
  .cid-uVEEx5OB7X .btn {
    display: -webkit-flex;
  }
  .cid-uVEEx5OB7X button.navbar-toggler {
    display: block;
  }
  .cid-uVEEx5OB7X .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uVEEx5OB7X .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVEEx5OB7X .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uVEEx5OB7X .navbar-collapse.collapsing,
  .cid-uVEEx5OB7X .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-uVEEx5OB7X .navbar-collapse.collapsing .navbar-nav,
  .cid-uVEEx5OB7X .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uVEEx5OB7X .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uVEEx5OB7X .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uVEEx5OB7X .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uVEEx5OB7X .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVEEx5OB7X .navbar-collapse.collapsing .navbar-buttons,
  .cid-uVEEx5OB7X .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uVEEx5OB7X .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uVEEx5OB7X .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVEEx5OB7X .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-uVEEx5OB7X .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uVEEx5OB7X .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uVEEx5OB7X .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;
  }
}
@media (max-width: 767px) {
  .cid-uVEEx5OB7X .nav-link {
    justify-content: start !important;
  }
  .cid-uVEEx5OB7X .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-uVEEx5OB7X .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-uVEEx5OB7X .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-uVEEx5OB7X .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uVEEx5OB7X .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uVEEx5OB7X .nav-link:hover,
.cid-uVEEx5OB7X .dropdown-item:hover {
  color: #0a1c44 !important;
}
@media (min-width: 1500px) {
  .cid-uVEEx5OB7X .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-uVEEx5OB7X .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uVEEW7AFV5 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #a5d8d8;
}
.cid-uVEEW7AFV5 .mbr-section-title {
  color: #ff4a52;
}
.cid-uVEEW7AFV5 .mbr-section-subtitle {
  color: #232323;
}
.cid-uVEH8lAvid {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uVEH8lAvid H1 {
  color: #f5f7fa;
}
.cid-uVEH8lAvid .mbr-text,
.cid-uVEH8lAvid .mbr-section-btn {
  color: #f5f7fa;
}
.cid-uVEH8lAvid H3 {
  color: #716c80;
}
.cid-uVEEXfpB4M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uVEEXfpB4M .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uVEEXfpB4M .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVEEXfpB4M .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uVEEXfpB4M .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uVEEXfpB4M .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-uVEEXfpB4M .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uVEEXfpB4M .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uVEEXfpB4M .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uVEEXfpB4M .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-uVEEx7ayAe {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #008b8b;
}
.cid-uVEEx7ayAe .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uVEEx7ayAe .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uVEEx7ayAe .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uVEEx7ayAe .btn-primary {
  border: 1px solid #008b8b !important;
}
.cid-uVEEx7ayAe .btn-primary:hover {
  border: 1px solid #008b8b !important;
}
.cid-uVEEx7ayAe .stripe {
  border-bottom: 1px solid #e9e9e9;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uVEEx7ayAe .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uVEEx7ayAe .input-group-btn {
  padding-left: 0;
}
.cid-uVEEx7ayAe .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uVEEx7ayAe .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uVEEx7ayAe .mbr-text {
  color: #444;
}
.cid-uVEEx7ayAe h5 {
  margin-bottom: 0;
}
.cid-uVEEx7ayAe .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uVEEx7ayAe .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uVEEx7ayAe .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uVEEx7ayAe .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uVEEx7ayAe .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uVEEx7ayAe .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uVEEx7ayAe .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uVEEx7ayAe .social-list a:hover {
  opacity: 0.4;
}
.cid-uVEEx7ayAe .media-container-row > div {
  padding: 0px;
}
.cid-uVEEx7ayAe .text2 {
  color: #f5f7fa;
  text-align: left;
}
.cid-uVEEx7ayAe .group-title {
  text-align: left;
  color: #f5f7fa;
  padding-bottom: 0.2rem;
}
.cid-uVEEx7ayAe .links {
  color: #f5f7fa;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uVEEx7ayAe .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uVEEx7ayAe .social-list,
  .cid-uVEEx7ayAe .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uVEEx7ayAe h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uVEEx7ayAe .form-group {
    max-width: 180px;
  }
}
.cid-uVEEx7ayAe .links span {
  color: #9e9e9e;
}
.cid-uVEEx7ayAe .logo-sub-title {
  text-align: center;
  color: #f5f7fa;
}
.cid-uVEEx7ayAe .logo-title {
  text-align: center;
}
.cid-uVEEx7ayAe .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uVEEx7ayAe .logo-title,
.cid-uVEEx7ayAe .logo {
  color: #f5f7fa;
}
.cid-uVEEx7MMGG {
  background-color: #669b9b;
}
.cid-uVEEx7MMGG svg {
  position: absolute;
  top: 0;
}
.cid-uVEEx7MMGG .svg-1 {
  fill: #008b8b;
}
.cid-uVEEx7MMGG .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-uVEEx7MMGG {
    padding-top: 8px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-uVEEx7MMGG {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.cid-uVEEx7MMGG .mbr-text {
  color: #b1bee0;
}
.cid-uVEEx7MMGG a {
  text-decoration: underline;
}
.cid-uVEEx7MMGG a,
.cid-uVEEx7MMGG a:hover {
  font-weight: 400 !important;
}
.cid-uVEEx7MMGG .media-container-row .mbr-text {
  color: #ffffff;
}
