body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #5fc4e1 !important;
}
.bg-success {
  background-color: #ff8a73 !important;
}
.bg-info {
  background-color: #57468b !important;
}
.bg-warning {
  background-color: #575756 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5fc4e1 !important;
  border-color: #5fc4e1 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #26a8cd !important;
  border-color: #26a8cd !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #26a8cd !important;
  border-color: #26a8cd !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #001f39 !important;
  border-color: #001f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #57468b !important;
  border-color: #57468b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #575756 !important;
  border-color: #575756 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #313130 !important;
  border-color: #313130 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #313130 !important;
  border-color: #313130 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #2296b8;
  color: #2296b8;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #5fc4e1;
  border-color: #5fc4e1;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5fc4e1 !important;
  border-color: #5fc4e1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #001f39;
  border-color: #001f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #001f39 !important;
  border-color: #001f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #2d2447;
  color: #2d2447;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #57468b;
  border-color: #57468b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ff350d;
  color: #ff350d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #ff8a73;
  border-color: #ff8a73;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #242423;
  color: #242423;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #575756;
  border-color: #575756;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #575756 !important;
  border-color: #575756 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #5fc4e1 !important;
}
.text-secondary {
  color: #001f39 !important;
}
.text-success {
  color: #ff8a73 !important;
}
.text-info {
  color: #57468b !important;
}
.text-warning {
  color: #575756 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #2296b8 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ff350d !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #2d2447 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #242423 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #57468b;
}
.alert-warning {
  background-color: #575756;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5fc4e1;
  border-color: #5fc4e1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #5fc4e1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9a8cc5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #979796;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
blockquote {
  border-color: #5fc4e1;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #5fc4e1 !important;
  -webkit-box-shadow: 0 6px 16px 0 #5fc4e1 !important;
  background-color: #5fc4e1 !important;
  border-color: #5fc4e1 !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #001f39 !important;
  -webkit-box-shadow: 0 6px 16px 0 #001f39 !important;
  background-color: #001f39 !important;
  border-color: #001f39 !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #ff8a73 !important;
  -webkit-box-shadow: 0 6px 16px 0 #ff8a73 !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5fc4e1;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5fc4e1;
  border-bottom-color: #5fc4e1;
}
.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: #000000 !important;
  background-color: #5fc4e1 !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: #001f39 !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='%235fc4e1' %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-rx3IEQFgmC .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rx3IEQFgmC .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-rx3IEQFgmC .nav-item:focus,
.cid-rx3IEQFgmC .nav-link:focus {
  outline: none;
}
.cid-rx3IEQFgmC .text-white:hover,
.cid-rx3IEQFgmC .text-white:active,
.cid-rx3IEQFgmC .text-white:focus {
  color: white!important;
}
.cid-rx3IEQFgmC .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #b2ccd2;
}
.cid-rx3IEQFgmC .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-rx3IEQFgmC .navbar.opened {
  transition: all .3s;
  background: #b2ccd2 !important;
}
.cid-rx3IEQFgmC .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rx3IEQFgmC .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-rx3IEQFgmC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rx3IEQFgmC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rx3IEQFgmC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rx3IEQFgmC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rx3IEQFgmC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rx3IEQFgmC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rx3IEQFgmC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rx3IEQFgmC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rx3IEQFgmC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rx3IEQFgmC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rx3IEQFgmC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rx3IEQFgmC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rx3IEQFgmC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rx3IEQFgmC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rx3IEQFgmC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rx3IEQFgmC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rx3IEQFgmC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rx3IEQFgmC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rx3IEQFgmC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rx3IEQFgmC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rx3IEQFgmC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rx3IEQFgmC .navbar.navbar-short {
  background: #b2ccd2 !important;
  min-height: 60px;
}
.cid-rx3IEQFgmC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rx3IEQFgmC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rx3IEQFgmC .section {
  position: relative;
  overflow: visible!important;
}
.cid-rx3IEQFgmC .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-rx3IEQFgmC .dropdown-item:hover {
  color: black!important;
}
.cid-rx3IEQFgmC .dropdown-menu {
  background-color: white!important;
}
.cid-rx3IEQFgmC .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-rx3IEQFgmC .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rx3IEQFgmC .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-rx3IEQFgmC .nav-item .nav-link {
    position: relative;
  }
}
.cid-rx3IEQFgmC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rx3IEQFgmC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rx3IEQFgmC .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rx3IEQFgmC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rx3IEQFgmC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rx3IEQFgmC .collapsed {
  flex-direction: row!important;
}
.cid-rx3IEQFgmC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rx3IEQFgmC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rx3IEQFgmC .navbar-caption {
  font-weight: 600!important;
}
.cid-rx3IEQFgmC .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rx3IEQFgmC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rx3IEQFgmC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rx3IEQFgmC .dropdown-item.active,
.cid-rx3IEQFgmC .dropdown-item:active {
  background-color: transparent;
}
.cid-rx3IEQFgmC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rx3IEQFgmC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rx3IEQFgmC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rx3IEQFgmC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #b2ccd2;
}
.cid-rx3IEQFgmC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rx3IEQFgmC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rx3IEQFgmC .navbar-buttons {
  text-align: center;
}
.cid-rx3IEQFgmC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rx3IEQFgmC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #001f39;
}
.cid-rx3IEQFgmC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rx3IEQFgmC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rx3IEQFgmC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rx3IEQFgmC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rx3IEQFgmC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx3IEQFgmC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rx3IEQFgmC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rx3IEQFgmC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx3IEQFgmC .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rx3IEQFgmC .nav-link {
  font-weight: 600!important;
}
.cid-rx3IEQFgmC a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rx3IEQFgmC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rx3IEQFgmC .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rx3IEQFgmC .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rx3IEQFgmC .navbar {
    height: 77px;
  }
  .cid-rx3IEQFgmC .navbar.opened {
    height: auto;
  }
  .cid-rx3IEQFgmC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rleLuPvnKO {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr.jpg");
  position: relative;
  overflow: hidden;
}
.cid-rleLuPvnKO svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-rleLuPvnKO #e2_shape {
  fill: #ffffff !important;
}
.cid-rleLuPvnKO img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 576px) {
  .cid-rleLuPvnKO img {
    width: 90%!important;
  }
}
.cid-rleLuPvnKO H1 {
  color: #001f39;
}
.cid-rleLuPvnKO H3 {
  color: #ffffff;
}
.cid-uBFmIXH8nb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uBFmIXH8nb .mbr-text {
  color: #716c80;
  text-align: left;
}
.cid-uBFmIXH8nb h4 {
  text-align: center;
}
.cid-uBFmIXH8nb p {
  text-align: center;
}
.cid-uBFmIXH8nb .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uBFmIXH8nb .mbr-iconfont {
  transition: all 0.3s;
  color: #5fc4e1 !important;
  font-size: 6rem !important;
}
.cid-uBFmIXH8nb .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-uBFmIXH8nb .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-uBFmIXH8nb .card:hover .mbr-iconfont {
  color: #ff8a73 !important;
}
.cid-uBFmIXH8nb .card-title,
.cid-uBFmIXH8nb .card-img {
  color: #001f39;
}
.cid-uBFmIXH8nb .card-img {
  width: auto;
}
@media (max-width: 576px) {
  .cid-uBFmIXH8nb .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
  .cid-uBFmIXH8nb .card:hover {
    box-shadow: none;
    transform: none;
  }
}
.cid-uBFmIXH8nb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFmIXH8nb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBHtrfwaSO {
  padding-top: 180px;
  padding-bottom: 135px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-uBHtrfwaSO .svg1 {
  position: absolute;
  bottom: 0rem;
  right: -45%;
  transform: scale(1.3);
}
.cid-uBHtrfwaSO #e1_circle,
.cid-uBHtrfwaSO #e3_circle,
.cid-uBHtrfwaSO #e4_circle,
.cid-uBHtrfwaSO #e5_circle {
  fill: #b8e8f6 !important;
}
.cid-uBHtrfwaSO #e6_circle {
  fill: #5fc4e1 !important;
}
.cid-uBHtrfwaSO .mbr-text {
  color: #716c80;
}
.cid-uBHtrfwaSO h4 {
  margin: 0;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.cid-uBHtrfwaSO .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.4rem;
  margin-right: 1.5rem;
  border-radius: 8px;
  align-items: center;
  display: flex;
}
.cid-uBHtrfwaSO .card-img .img1 {
  background-color: #5fc4e1;
}
.cid-uBHtrfwaSO .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.2rem !important;
}
.cid-uBHtrfwaSO .round {
  border-radius: 100%;
  position: absolute;
  background-color: #b8e8f6;
  animation: orbit 4s linear infinite;
}
.cid-uBHtrfwaSO .rev {
  animation: rev 4s linear infinite;
}
.cid-uBHtrfwaSO .round1 {
  width: 50px;
  height: 50px;
  right: 15%;
  top: 4%;
}
.cid-uBHtrfwaSO .round2 {
  width: 80px;
  height: 80px;
  right: 25%;
  top: 8%;
}
.cid-uBHtrfwaSO .round3 {
  width: 40px;
  height: 40px;
  right: 30%;
  bottom: 8%;
}
.cid-uBHtrfwaSO .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1.5rem 0;
}
.cid-uBHtrfwaSO .card-title,
.cid-uBHtrfwaSO .card-img {
  color: #57468b;
}
.cid-uBHtrfwaSO img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 1200px) {
  .cid-uBHtrfwaSO svg {
    right: -70% !important;
  }
}
@media (max-width: 992px) {
  .cid-uBHtrfwaSO img {
    margin-top: 1rem;
  }
  .cid-uBHtrfwaSO svg {
    right: -45% !important;
  }
}
@media (max-width: 576px) {
  .cid-uBHtrfwaSO .item:hover {
    box-shadow: none;
    transform: none;
    background-color: transparent;
  }
  .cid-uBHtrfwaSO svg {
    bottom: -3rem !important;
  }
  .cid-uBHtrfwaSO .round1 {
    display: none;
  }
}
.cid-uBHtrfwaSO .title {
  line-height: 1.3;
  color: #001f39;
}
.cid-uBHtrfwaSO .card-img {
  width: auto;
}
.cid-uBHtrfwaSO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBHtrfwaSO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBHtrfwaSO .card-title {
  color: #001f39;
}
.cid-uC39hCoZb5 {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/07.jpg");
}
.cid-uC39hCoZb5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC39hCoZb5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBHn3Lbfqm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-uBHn3Lbfqm .mbr-section-subtitle {
  color: #001f39;
  text-align: center;
}
.cid-uBHn3Lbfqm .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uBHn3Lbfqm .mbr-text {
  color: #767676;
}
.cid-uBHn3Lbfqm .mbr-author-desc {
  display: block;
  color: #716c80;
}
.cid-uBHn3Lbfqm .mbr-author-name {
  color: #001f39;
}
.cid-uBHn3Lbfqm .mbr-testimonial .panel-item {
  transition: all 0.3s;
  background-color: #efefef;
}
.cid-uBHn3Lbfqm .mbr-testimonial .panel-item:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-uBHn3Lbfqm .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 1.4rem 1.4rem 0 1.4rem;
}
.cid-uBHn3Lbfqm .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 135px;
  height: 135px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-uBHn3Lbfqm .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uBHn3Lbfqm .mbr-testimonial .card-footer {
  padding-bottom: 1.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-uBHn3Lbfqm .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-uBHn3Lbfqm .mbr-iconfont-social {
  font-size: 18px;
}
.cid-uBHn3Lbfqm .icon1 {
  color: #ff8a73;
}
.cid-uBHn3Lbfqm .icon2 {
  color: #57468b;
}
.cid-uBHn3Lbfqm .icon3 {
  color: #5580ff;
}
.cid-uBHn3Lbfqm .social-list a:focus {
  text-decoration: none;
}
.cid-uBHn3Lbfqm H2 {
  color: #57468b;
}
.cid-uBHn3Lbfqm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBHn3Lbfqm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rlf5ELKqkK {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/bigstock-frontal-home-office-desk-5210296-1600x976.jpg");
}
.cid-rlf5ELKqkK .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rlf5ELKqkK .carousel-item.active,
.cid-rlf5ELKqkK .carousel-item-next,
.cid-rlf5ELKqkK .carousel-item-prev {
  display: flex;
}
.cid-rlf5ELKqkK .mobi-mbri-arrow-next:before {
  font-weight: 900;
  padding-left: 5px;
}
.cid-rlf5ELKqkK .mobi-mbri-arrow-prev:before {
  font-weight: 900;
  padding-right: 5px;
}
.cid-rlf5ELKqkK .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
}
.cid-rlf5ELKqkK .carousel-controls a span {
  position: absolute;
  top: 45%;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  opacity: .9;
}
.cid-rlf5ELKqkK .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rlf5ELKqkK H1 {
  color: #ffffff;
}
.cid-rlf5ELKqkK .mbr-text,
.cid-rlf5ELKqkK .mbr-section-btn {
  color: #ffffff;
}
.cid-rlf5ELKqkK .author-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-rlf5ELKqkK .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
  margin-bottom: 1rem;
}
.cid-rlf5ELKqkK .author {
  margin: auto 0;
}
.cid-rlf5ELKqkK h3,
.cid-rlf5ELKqkK h4 {
  margin: 0;
  padding: 0;
}
.cid-rlf5ELKqkK H3 {
  color: #ffffff;
}
.cid-rlf5ELKqkK H4 {
  color: #ffffff;
}
.cid-rlf5ELKqkK .box {
  max-width: 800px!important;
  margin: auto!important;
}
@media (max-width: 992px) {
  .cid-rlf5ELKqkK .carousel-controls a span {
    top: auto;
    bottom: 30%;
  }
}
@media (max-width: 576px) {
  .cid-rlf5ELKqkK .carousel-controls a span {
    top: auto;
    bottom: 15%;
  }
}
.cid-uCwoOn3ky3 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCwoOn3ky3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCwoOn3ky3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCwoOn3ky3 .end {
  justify-content: flex-end;
}
.cid-uCwoOn3ky3 .title .num {
  width: 100%;
  display: block;
}
.cid-uCwoOn3ky3 .title .card-title {
  z-index: 1;
}
.cid-uCwoOn3ky3 .item-wrapper {
  margin-bottom: 2rem;
}
.cid-uCwoOn3ky3 .num {
  color: #465052;
}
.cid-uCwoOn3ky3 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uCwoOn3ky3 .item-mb {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uCwoOn3ky3 * {
    text-align: center !important;
  }
  .cid-uCwoOn3ky3 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uCwoOn3ky3 .mbr-section-title,
.cid-uCwoOn3ky3 .card-box {
  text-align: left;
  color: #ff3366;
}
.cid-uCwoOn3ky3 .mbr-text,
.cid-uCwoOn3ky3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uCwoOn3ky3 .card-title,
.cid-uCwoOn3ky3 .card-img {
  color: #001f39;
}
.cid-uCwoOn3ky3 .mbr-maintext,
.cid-uCwoOn3ky3 .mbr-section-btn {
  color: #001f39;
  text-align: left;
}
.cid-uCwoOn3ky3 .card-text {
  color: #838383;
}
.cid-uCwNtF6C1a {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/close-up-image-programer-working-his-desk-office-ok-1840x1228.jpg");
}
.cid-uCwNtF6C1a .mbr-overlay {
  background: #001f39;
  opacity: 0.6;
}
.cid-uCwNtF6C1a .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 260px;
  max-width: 260px;
}
@media (max-width: 767px) {
  .cid-uCwNtF6C1a .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uCwNtF6C1a .embla__slide .slide-content {
  width: 100%;
}
.cid-uCwNtF6C1a .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 16px;
}
.cid-uCwNtF6C1a .embla__slide .slide-content .item-wrapper .item-img img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCwNtF6C1a .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uCwNtF6C1a .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-uCwNtF6C1a .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
  opacity: .7;
}
.cid-uCwNtF6C1a .embla__button--next,
.cid-uCwNtF6C1a .embla__button--prev {
  display: flex;
}
.cid-uCwNtF6C1a .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uCwNtF6C1a .embla__button:hover {
  opacity: .7 !important;
}
.cid-uCwNtF6C1a .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uCwNtF6C1a .embla__button.embla__button--next {
  right: 0;
}
.cid-uCwNtF6C1a .embla {
  position: relative;
  width: 100%;
}
.cid-uCwNtF6C1a .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uCwNtF6C1a .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uCwNtF6C1a .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uCwNtF6C1a .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCwNtF6C1a .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uCwNtF6C1a .item-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uCwzC085yp {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-uCwzC085yp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-uCwzC085yp input,
.cid-uCwzC085yp textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-uCwzC085yp img {
  width: 90%;
  border-radius: 8px;
}
.cid-uCwzC085yp .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-uCwzC085yp textarea {
  min-height: 160px;
}
.cid-uCwzC085yp .form-control,
.cid-uCwzC085yp .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uCwzC085yp .form-control:hover,
.cid-uCwzC085yp .field-input:hover,
.cid-uCwzC085yp .form-control:focus,
.cid-uCwzC085yp .field-input:focus {
  background-color: #f2f6ff;
  border-color: #e1e8ff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uCwzC085yp input::-webkit-input-placeholder,
.cid-uCwzC085yp textarea::-webkit-input-placeholder {
  color: #838383;
}
.cid-uCwzC085yp input:-moz-placeholder,
.cid-uCwzC085yp textarea:-moz-placeholder {
  color: #838383;
}
.cid-uCwzC085yp .jq-selectbox li,
.cid-uCwzC085yp .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uCwzC085yp .jq-selectbox li:hover,
.cid-uCwzC085yp .jq-selectbox li.selected {
  background-color: #f2f6ff;
  color: #000000;
}
.cid-uCwzC085yp .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uCwzC085yp .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f2f6ff;
}
.cid-uCwzC085yp H5 {
  color: #001f39;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-uCwzC085yp img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-uCwzC085yp .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-rlf5rK4iOY {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #001f39;
  position: relative;
  overflow: hidden;
}
.cid-rlf5rK4iOY .container {
  max-width: 1400px;
}
.cid-rlf5rK4iOY .card-img2 span {
  padding-top: 6px;
}
.cid-rlf5rK4iOY .soc-item a {
  padding-top: 5px;
}
.cid-rlf5rK4iOY .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rlf5rK4iOY .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-rlf5rK4iOY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rlf5rK4iOY svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rlf5rK4iOY #e2_shape {
  fill: #f2f6ff !important;
}
.cid-rlf5rK4iOY .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-rlf5rK4iOY .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-rlf5rK4iOY .card-img2 {
  width: 45px;
  height: 45px;
  background: #001f39;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rlf5rK4iOY .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-rlf5rK4iOY .soc-item span {
  font-size: 1.4rem;
}
.cid-rlf5rK4iOY .soc-item:hover span {
  color: #5fc4e1 !important;
}
.cid-rlf5rK4iOY .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rlf5rK4iOY .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rlf5rK4iOY .media-wrap {
  margin-bottom: 1rem;
}
.cid-rlf5rK4iOY .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rlf5rK4iOY img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rlf5rK4iOY .item {
    justify-content: center;
  }
  .cid-rlf5rK4iOY .quote::after {
    left: 60px;
  }
}
.cid-rlf5rK4iOY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rlf5rK4iOY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rlf5rK4iOY .text1 {
  color: #ffffff;
  text-align: left;
}
.cid-rlf5rK4iOY .item-title {
  color: #ffffff;
}
.cid-rlf5rK4iOY H5 {
  color: #ffffff;
}
.cid-rlf5rK4iOY .theme {
  color: #ffffff;
}
.cid-rlf5rK4iOY .copyright > p {
  color: #ff3366;
}
.cid-rlf5rK4iOY .text2 {
  color: #ffffff;
}
.cid-uECrWT73Es {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #001f39;
}
.cid-uECrWT73Es H1 {
  color: #57468b;
}
.cid-uECrWT73Es .mbr-text,
.cid-uECrWT73Es .mbr-section-btn {
  color: #506b82;
  text-align: right;
}
.cid-uECrWT73Es H3 {
  color: #716c80;
}
.cid-uECrWT73Es .mbr-fallback-image.disabled {
  display: none;
}
.cid-uECrWT73Es .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBHGeFgO72 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uBHGeFgO72 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uBHGeFgO72 .nav-item:focus,
.cid-uBHGeFgO72 .nav-link:focus {
  outline: none;
}
.cid-uBHGeFgO72 .text-white:hover,
.cid-uBHGeFgO72 .text-white:active,
.cid-uBHGeFgO72 .text-white:focus {
  color: white!important;
}
.cid-uBHGeFgO72 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #b2ccd2;
}
.cid-uBHGeFgO72 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uBHGeFgO72 .navbar.opened {
  transition: all .3s;
  background: #b2ccd2 !important;
}
.cid-uBHGeFgO72 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uBHGeFgO72 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uBHGeFgO72 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBHGeFgO72 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBHGeFgO72 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uBHGeFgO72 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBHGeFgO72 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBHGeFgO72 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uBHGeFgO72 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBHGeFgO72 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBHGeFgO72 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBHGeFgO72 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBHGeFgO72 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBHGeFgO72 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uBHGeFgO72 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBHGeFgO72 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBHGeFgO72 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uBHGeFgO72 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBHGeFgO72 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBHGeFgO72 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBHGeFgO72 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uBHGeFgO72 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uBHGeFgO72 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBHGeFgO72 .navbar.navbar-short {
  background: #b2ccd2 !important;
  min-height: 60px;
}
.cid-uBHGeFgO72 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBHGeFgO72 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBHGeFgO72 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uBHGeFgO72 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uBHGeFgO72 .dropdown-item:hover {
  color: black!important;
}
.cid-uBHGeFgO72 .dropdown-menu {
  background-color: white!important;
}
.cid-uBHGeFgO72 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-uBHGeFgO72 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uBHGeFgO72 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uBHGeFgO72 .nav-item .nav-link {
    position: relative;
  }
}
.cid-uBHGeFgO72 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBHGeFgO72 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBHGeFgO72 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uBHGeFgO72 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBHGeFgO72 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBHGeFgO72 .collapsed {
  flex-direction: row!important;
}
.cid-uBHGeFgO72 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBHGeFgO72 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBHGeFgO72 .navbar-caption {
  font-weight: 600!important;
}
.cid-uBHGeFgO72 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBHGeFgO72 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBHGeFgO72 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBHGeFgO72 .dropdown-item.active,
.cid-uBHGeFgO72 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBHGeFgO72 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBHGeFgO72 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBHGeFgO72 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBHGeFgO72 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #b2ccd2;
}
.cid-uBHGeFgO72 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBHGeFgO72 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uBHGeFgO72 .navbar-buttons {
  text-align: center;
}
.cid-uBHGeFgO72 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uBHGeFgO72 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #001f39;
}
.cid-uBHGeFgO72 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBHGeFgO72 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBHGeFgO72 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBHGeFgO72 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBHGeFgO72 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBHGeFgO72 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBHGeFgO72 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBHGeFgO72 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBHGeFgO72 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uBHGeFgO72 .nav-link {
  font-weight: 600!important;
}
.cid-uBHGeFgO72 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBHGeFgO72 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBHGeFgO72 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uBHGeFgO72 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBHGeFgO72 .navbar {
    height: 77px;
  }
  .cid-uBHGeFgO72 .navbar.opened {
    height: auto;
  }
  .cid-uBHGeFgO72 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uC3e9fTROn {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-uC3e9fTROn h5,
.cid-uC3e9fTROn h4,
.cid-uC3e9fTROn p {
  margin-bottom: 0;
}
.cid-uC3e9fTROn p {
  color: #767676;
}
.cid-uC3e9fTROn .card-img {
  padding: 0;
  width: auto;
}
.cid-uC3e9fTROn .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uC3e9fTROn .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uC3e9fTROn .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uC3e9fTROn .card-box {
    padding: 2rem 0 0;
  }
  .cid-uC3e9fTROn .card-wrapper {
    display: block !important;
  }
}
.cid-uC3e9fTROn .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uC3e9fTROn .card-title,
.cid-uC3e9fTROn .main-title {
  color: #57468b;
}
.cid-uC3e9fTROn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC3e9fTROn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC3e9fTROn .main-title {
  color: #001f39;
}
.cid-uC3e9fTROn .mbr-text,
.cid-uC3e9fTROn .mbr-section-btn {
  color: #232323;
}
.cid-uC3e9fTROn .card-title {
  color: #001f39;
}
.cid-uC3fjBtaNS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-uC3fjBtaNS h5,
.cid-uC3fjBtaNS h4,
.cid-uC3fjBtaNS p {
  margin-bottom: 0;
}
.cid-uC3fjBtaNS p {
  color: #767676;
}
.cid-uC3fjBtaNS .card-img {
  padding: 0;
  width: auto;
}
.cid-uC3fjBtaNS .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uC3fjBtaNS .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uC3fjBtaNS .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uC3fjBtaNS .card-box {
    padding: 2rem 0 0;
  }
  .cid-uC3fjBtaNS .card-wrapper {
    display: block !important;
  }
}
.cid-uC3fjBtaNS .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uC3fjBtaNS .card-title,
.cid-uC3fjBtaNS .main-title {
  color: #57468b;
}
.cid-uC3fjBtaNS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC3fjBtaNS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC3fjBtaNS .main-title {
  color: #001f39;
}
.cid-uC3fjBtaNS .mbr-text,
.cid-uC3fjBtaNS .mbr-section-btn {
  color: #232323;
}
.cid-uC3fjBtaNS .card-title {
  color: #001f39;
}
.cid-uBHGeIBCMw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-uBHGeIBCMw h5,
.cid-uBHGeIBCMw h4,
.cid-uBHGeIBCMw p {
  margin-bottom: 0;
}
.cid-uBHGeIBCMw p {
  color: #767676;
}
.cid-uBHGeIBCMw .card-img {
  padding: 0;
  width: auto;
}
.cid-uBHGeIBCMw .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uBHGeIBCMw .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uBHGeIBCMw .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBHGeIBCMw .card-box {
    padding: 2rem 0 0;
  }
  .cid-uBHGeIBCMw .card-wrapper {
    display: block !important;
  }
}
.cid-uBHGeIBCMw .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uBHGeIBCMw .card-title,
.cid-uBHGeIBCMw .main-title {
  color: #57468b;
}
.cid-uBHGeIBCMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBHGeIBCMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBHGeIBCMw .main-title {
  color: #001f39;
}
.cid-uBHGeIBCMw .mbr-text,
.cid-uBHGeIBCMw .mbr-section-btn {
  color: #232323;
}
.cid-uBHGeIBCMw .card-title {
  color: #001f39;
}
.cid-uC3nmkALPn {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-uC3nmkALPn H1 {
  color: #57468b;
}
.cid-uC3nmkALPn .mbr-text,
.cid-uC3nmkALPn .mbr-section-btn {
  color: #716c80;
}
.cid-uC3nmkALPn H3 {
  color: #716c80;
}
.cid-uC3nmkALPn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC3nmkALPn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCEoOlTS8G {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/close-up-image-programer-working-his-desk-office-ok-1840x1228.jpg");
}
.cid-uCEoOlTS8G .mbr-overlay {
  background: #001f39;
  opacity: 0.6;
}
.cid-uCEoOlTS8G .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 260px;
  max-width: 260px;
}
@media (max-width: 767px) {
  .cid-uCEoOlTS8G .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uCEoOlTS8G .embla__slide .slide-content {
  width: 100%;
}
.cid-uCEoOlTS8G .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 16px;
}
.cid-uCEoOlTS8G .embla__slide .slide-content .item-wrapper .item-img img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCEoOlTS8G .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uCEoOlTS8G .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-uCEoOlTS8G .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
  opacity: .7;
}
.cid-uCEoOlTS8G .embla__button--next,
.cid-uCEoOlTS8G .embla__button--prev {
  display: flex;
}
.cid-uCEoOlTS8G .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uCEoOlTS8G .embla__button:hover {
  opacity: .7 !important;
}
.cid-uCEoOlTS8G .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uCEoOlTS8G .embla__button.embla__button--next {
  right: 0;
}
.cid-uCEoOlTS8G .embla {
  position: relative;
  width: 100%;
}
.cid-uCEoOlTS8G .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uCEoOlTS8G .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uCEoOlTS8G .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uCEoOlTS8G .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCEoOlTS8G .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uCEoOlTS8G .item-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uCxLEHL3jG {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #001f39;
  position: relative;
  overflow: hidden;
}
.cid-uCxLEHL3jG .container {
  max-width: 1400px;
}
.cid-uCxLEHL3jG .card-img2 span {
  padding-top: 6px;
}
.cid-uCxLEHL3jG .soc-item a {
  padding-top: 5px;
}
.cid-uCxLEHL3jG .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uCxLEHL3jG .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-uCxLEHL3jG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uCxLEHL3jG svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uCxLEHL3jG #e2_shape {
  fill: #f2f6ff !important;
}
.cid-uCxLEHL3jG .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-uCxLEHL3jG .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uCxLEHL3jG .card-img2 {
  width: 45px;
  height: 45px;
  background: #001f39;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCxLEHL3jG .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uCxLEHL3jG .soc-item span {
  font-size: 1.4rem;
}
.cid-uCxLEHL3jG .soc-item:hover span {
  color: #5fc4e1 !important;
}
.cid-uCxLEHL3jG .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uCxLEHL3jG .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uCxLEHL3jG .media-wrap {
  margin-bottom: 1rem;
}
.cid-uCxLEHL3jG .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uCxLEHL3jG img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uCxLEHL3jG .item {
    justify-content: center;
  }
  .cid-uCxLEHL3jG .quote::after {
    left: 60px;
  }
}
.cid-uCxLEHL3jG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uCxLEHL3jG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uCxLEHL3jG .text1 {
  color: #ffffff;
  text-align: left;
}
.cid-uCxLEHL3jG .item-title {
  color: #ffffff;
}
.cid-uCxLEHL3jG H5 {
  color: #ffffff;
}
.cid-uCxLEHL3jG .theme {
  color: #ffffff;
}
.cid-uCxLEHL3jG .copyright > p {
  color: #ff3366;
}
.cid-uCxLEHL3jG .text2 {
  color: #ffffff;
}
.cid-uECsqHoUjG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #001f39;
}
.cid-uECsqHoUjG H1 {
  color: #57468b;
}
.cid-uECsqHoUjG .mbr-text,
.cid-uECsqHoUjG .mbr-section-btn {
  color: #506b82;
  text-align: right;
}
.cid-uECsqHoUjG H3 {
  color: #716c80;
}
.cid-uECsqHoUjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uECsqHoUjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
