body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Muli', sans-serif;
  font-size: 3.4375rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.4375rem;
}
.display-2 {
  font-family: 'Muli', sans-serif;
  font-size: 2.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Muli', sans-serif;
  font-size: 0.875rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Muli', sans-serif;
  font-size: 1.875rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Muli', 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: 2.75rem;
    font-size: calc( 1.853125rem + (3.4375 - 1.853125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.853125rem + (3.4375 - 1.853125) * ((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.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.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((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: #0f004e !important;
}
.bg-success {
  background-color: #0f004e !important;
}
.bg-info {
  background-color: #6d7a8c !important;
}
.bg-warning {
  background-color: #e6ecf2 !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0f004e !important;
  border-color: #0f004e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #000002 !important;
  border-color: #000002 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000002 !important;
  border-color: #000002 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #130947 !important;
  border-color: #130947 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #010003 !important;
  border-color: #010003 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #010003 !important;
  border-color: #010003 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #6d7a8c !important;
  border-color: #6d7a8c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c5561 !important;
  border-color: #4c5561 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c5561 !important;
  border-color: #4c5561 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #0f004e !important;
  border-color: #0f004e !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000002 !important;
  border-color: #000002 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000002 !important;
  border-color: #000002 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e6ecf2 !important;
  border-color: #e6ecf2 !important;
  color: #4a6d8f !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #4a6d8f !important;
  background-color: #b4c6d8 !important;
  border-color: #b4c6d8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4a6d8f !important;
  background-color: #b4c6d8 !important;
  border-color: #b4c6d8 !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #0f004e;
  border-color: #0f004e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0f004e !important;
  border-color: #0f004e !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: #130947;
  border-color: #130947;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #130947 !important;
  border-color: #130947 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #404853;
  color: #404853;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #6d7a8c;
  border-color: #6d7a8c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6d7a8c !important;
  border-color: #6d7a8c !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #0f004e;
  border-color: #0f004e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0f004e !important;
  border-color: #0f004e !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #a3b9cf;
  color: #a3b9cf;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #4a6d8f;
  background-color: #e6ecf2;
  border-color: #e6ecf2;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4a6d8f !important;
  background-color: #e6ecf2 !important;
  border-color: #e6ecf2 !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: #0f004e !important;
}
.text-secondary {
  color: #130947 !important;
}
.text-success {
  color: #0f004e !important;
}
.text-info {
  color: #6d7a8c !important;
}
.text-warning {
  color: #e6ecf2 !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: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #404853 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a3b9cf !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: #6d7a8c;
}
.alert-warning {
  background-color: #e6ecf2;
}
.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: #0f004e;
  border-color: #0f004e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4f87fb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5b35ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #5b35ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b4bbc5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
.form-control {
  font-family: 'Muli', sans-serif;
  font-size: 1.125rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #0f004e;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.btn-primary:hover {
  color: #ffffff !important;
  background: #130947 !important;
  border-color: #130947 !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0f004e;
  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: #0f004e;
  border-bottom-color: #0f004e;
}
.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: #0f004e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #130947 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
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='%230f004e' %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-uJcWtxZu95 .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uJcWtxZu95 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uJcWtxZu95 .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uJcWtxZu95 .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uJcWtxZu95 .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJcWtxZu95 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uJcWtxZu95 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uJcWtxZu95 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJcWtxZu95 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uJcWtxZu95 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJcWtxZu95 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uJcWtxZu95 .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uJcWtxZu95 .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uJcWtxZu95 .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uJcWtxZu95 .navbar-fixed-top.opened {
  position: relative;
}
.cid-uJcWtxZu95 a {
  font-style: normal;
}
.cid-uJcWtxZu95 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uJcWtxZu95 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uJcWtxZu95 .nav-item .nav-link {
  color: #ffffff;
}
.cid-uJcWtxZu95 .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uJcWtxZu95 .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uJcWtxZu95 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uJcWtxZu95 .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJcWtxZu95 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uJcWtxZu95 .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .menu-content-right {
    display: none;
  }
}
.cid-uJcWtxZu95 .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uJcWtxZu95 .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uJcWtxZu95 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uJcWtxZu95 .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uJcWtxZu95 .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uJcWtxZu95 .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uJcWtxZu95 .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uJcWtxZu95 .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .right-box {
    display: none;
  }
}
.cid-uJcWtxZu95 .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uJcWtxZu95 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uJcWtxZu95 .content-text {
  margin-bottom: 0;
}
.cid-uJcWtxZu95 .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uJcWtxZu95 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uJcWtxZu95 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uJcWtxZu95 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uJcWtxZu95 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uJcWtxZu95 .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uJcWtxZu95 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uJcWtxZu95 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uJcWtxZu95 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uJcWtxZu95 .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uJcWtxZu95 .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJcWtxZu95 .nav-dropdown .link {
  font-weight: 600;
}
.cid-uJcWtxZu95 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uJcWtxZu95 .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uJcWtxZu95 .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJcWtxZu95 .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJcWtxZu95 .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uJcWtxZu95 .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uJcWtxZu95 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uJcWtxZu95 .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJcWtxZu95 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJcWtxZu95 .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uJcWtxZu95 .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uJcWtxZu95 .menu-content-top.show {
  display: block;
}
.cid-uJcWtxZu95 .pre-header-right {
  align-self: center;
}
.cid-uJcWtxZu95 .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uJcWtxZu95 .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uJcWtxZu95 .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uJcWtxZu95 .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uJcWtxZu95 .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uJcWtxZu95 .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uJcWtxZu95 .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uJcWtxZu95 .navbar .menu-content-top {
    display: none;
  }
  .cid-uJcWtxZu95 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uJcWtxZu95 .dropdown-item:before {
    display: none;
  }
  .cid-uJcWtxZu95 .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uJcWtxZu95 img {
    height: 3.8rem !important;
  }
  .cid-uJcWtxZu95 .btn {
    display: flex;
  }
  .cid-uJcWtxZu95 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uJcWtxZu95 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uJcWtxZu95 .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uJcWtxZu95 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uJcWtxZu95 .navbar-collapse.collapsing,
  .cid-uJcWtxZu95 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJcWtxZu95 .navbar-collapse.collapsing .navbar-nav,
  .cid-uJcWtxZu95 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uJcWtxZu95 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJcWtxZu95 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uJcWtxZu95 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJcWtxZu95 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uJcWtxZu95 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJcWtxZu95 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJcWtxZu95 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uJcWtxZu95 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJcWtxZu95 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJcWtxZu95 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uJcWtxZu95 .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uJcWtxZu95 .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uJcWtxZu95 .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJcWtxZu95 .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJcWtxZu95 .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uJcWtxZu95 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uJcWtxZu95 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uJcWtxZu95 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uJcWtxZu95 .navbar-toggler {
    display: none;
  }
}
.cid-uJcWtxZu95 .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uJcWtxZu95 .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uJcWtxZu95 .navbar-short {
  background: transparent;
}
.cid-uJcWtxZu95 .navbar-short .menu-content-top,
.cid-uJcWtxZu95 .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uJcWtxZu95 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJcWtxZu95 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uJcWtxZu95 .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uJcWtxZu95 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uJcWtxZu95 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJcWtxZu95 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJcWtxZu95 .dropdown {
  color: #0f004e !important;
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uJcWtxZu95 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJcWtxZu95 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJcWtxZu95 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uJcWtxZu95 .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uJcWtxZu95 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uJcWtxZu95 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJcWtxZu95 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uJcWtxZu95 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJcWtxZu95 button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uJcWtxZu95 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJcWtxZu95 button.navbar-toggler:focus {
  outline: none;
}
.cid-uJcWtxZu95 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJcWtxZu95 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJcWtxZu95 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJcWtxZu95 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJcWtxZu95 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJcWtxZu95 nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uJcWtxZu95 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uJcWtxZu95 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJcWtxZu95 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJcWtxZu95 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJcWtxZu95 .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJcWtxZu95 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uJcWtxZu95 .collapsed .btn {
  display: flex;
}
.cid-uJcWtxZu95 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJcWtxZu95 .collapsed .navbar-collapse.collapsing,
.cid-uJcWtxZu95 .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uJcWtxZu95 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJcWtxZu95 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uJcWtxZu95 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJcWtxZu95 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJcWtxZu95 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJcWtxZu95 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uJcWtxZu95 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJcWtxZu95 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uJcWtxZu95 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uJcWtxZu95 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJcWtxZu95 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJcWtxZu95 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uJcWtxZu95 .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJcWtxZu95 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uJcWtxZu95 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJcWtxZu95 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJcWtxZu95 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uJcWtxZu95 .collapsed .dropdown-item:before {
  display: none;
}
.cid-uJcWtxZu95 .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uJcWtxZu95 .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uJcWtxZu95 .nav-link:focus {
  outline: none;
}
.cid-uJcWtxZu95 .navbar-toggler {
  position: relative;
}
.cid-uJcWtxZu95 .dropdown-item.active,
.cid-uJcWtxZu95 .dropdown-item:active {
  color: auto;
}
.cid-uJcWtxZu95 .dropdown-item:hover {
  color: #92b73b;
}
.cid-uJcXBcYmEF {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-uJcXBcYmEF .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uJcXBcYmEF .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uJcXBcYmEF .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uJcXBcYmEF .mbr-text {
  color: #6d7a8c;
}
.cid-uJcXBcYmEF .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uJcXBcYmEF .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uJcXBcYmEF .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uJcXBcYmEF .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uJcXBcYmEF .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uJcXBcYmEF .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uJcXBcYmEF .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uJcXBcYmEF .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uJcXBcYmEF .separator,
  .cid-uJcXBcYmEF .sep-holder,
  .cid-uJcXBcYmEF .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uJcXBcYmEF .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uJMA4VAxo8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-uJMA4VAxo8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uJMA4VAxo8 H2 {
  color: #0f004e;
}
.cid-uJMcqdXRD6 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uJMcqdXRD6 .top-part {
  margin-bottom: 70px;
}
.cid-uJMcqdXRD6 .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uJMcqdXRD6 .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uJMcqdXRD6 .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uJMcqdXRD6 .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-item.open .nav-link:focus,
.cid-uJMcqdXRD6 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uJMcqdXRD6 .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-uJMcqdXRD6 .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-link.active {
  border-bottom: 2px solid #92b73b;
  color: #28303f;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-link.active span {
  color: #92b73b;
}
.cid-uJMcqdXRD6 .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-uJMcqdXRD6 .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uJMcqdXRD6 .mbr-text,
  .cid-uJMcqdXRD6 .nav-link {
    text-align: left;
  }
  .cid-uJMcqdXRD6 .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-uJMcqdXRD6 .mbr-section-title,
  .cid-uJMcqdXRD6 .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uJMcqdXRD6 .tab-content {
  margin-top: 44px;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #92b73b;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-uJMcqdXRD6 .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-uJMj8ITi5t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-uJMj8ITi5t h4 {
  letter-spacing: -0.5px;
  color: #130947;
  font-weight: 800;
}
.cid-uJMj8ITi5t p {
  color: #6d7a8c;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-uJMj8ITi5t .mbr-section-title {
  color: #130947;
  margin-bottom: 20px;
  font-weight: 700;
}
.cid-uJMj8ITi5t .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-uJMj8ITi5t .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uJMj8ITi5t .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uJMj8ITi5t .card-box {
  padding-top: 35px;
}
.cid-uJMj8ITi5t .card-box .card-title {
  text-align: center;
  color: #130947;
}
.cid-uJMj8ITi5t .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.cid-uJMj8ITi5t .card-box p {
  text-align: center;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uJMj8ITi5t .card-box p.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uJMj8ITi5t .card-wrapper {
  height: 100%;
  text-align: center;
}
.cid-uJMj8ITi5t .card-img {
  display: inline-block;
  position: relative;
  width: inherit !important;
}
.cid-uJMj8ITi5t .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uJMj8ITi5t .card-img .card-icon {
  background: #4f87fb;
  color: #fff;
  height: 46px;
  width: 46px;
  font-size: 14px;
  line-height: 3.29;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  padding: 0.5rem;
  top: 6px;
  right: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uJMj8ITi5t .card-img .card-icon span {
  z-index: 99;
}
.cid-uJMj8ITi5t .card-img .card-icon::before {
  width: 56px;
  height: 56px;
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: #4f87fb;
  opacity: 0.5;
  z-index: 1;
}
.cid-uJM7P1DEEf {
  padding-top: 120px;
  padding-bottom: 135px;
}
.cid-uJM7P1DEEf .link-align {
  width: 100%;
}
.cid-uJM7P1DEEf .link-wrap {
  display: inline-block;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uJM7P1DEEf .mbr-text,
.cid-uJM7P1DEEf .link-align {
  color: #ffffff;
}
.cid-uJM7P1DEEf .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 100px;
  background-color: #ffffff;
  height: 100px;
  cursor: pointer;
}
.cid-uJM7P1DEEf .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-uJM7P1DEEf .icon-wrap span {
  padding-left: 4px;
}
.cid-uJM7P1DEEf .mbr-media span {
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #000000 !important;
}
.cid-uJM7P1DEEf .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uJM7P1DEEf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uJM7P1DEEf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uJM7P1DEEf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uJM7P1DEEf a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uJM7P1DEEf a.close:hover {
  color: #ffffff;
}
.cid-uJNdvLR8fY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/barco-ib.jpg");
}
.cid-uJNdvLR8fY .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uJNdvLR8fY .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uJNdvLR8fY .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.cid-uJNdvLR8fY .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uJNdvLR8fY .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #ffffff;
}
.cid-uJNdvLR8fY .timelines-container {
  margin-top: 60px;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #92b73b;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uJNdvLR8fY .container-fluid {
  padding: 0 2rem;
}
.cid-uJNdvLR8fY .separline:before,
.cid-uJNdvLR8fY .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #ffffff;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-uJNdvLR8fY .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #ffffff;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-uJNdvLR8fY .container-fluid {
    padding: 0 1rem;
  }
  .cid-uJNdvLR8fY .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-uJNdvLR8fY .separline:before,
  .cid-uJNdvLR8fY .first-separline:before {
    left: -10px !important;
  }
  .cid-uJNdvLR8fY .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-uJNdvLR8fY .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-uJNdvLR8fY .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-uJNdvLR8fY .time-line-date-content p {
    float: left !important;
  }
  .cid-uJNdvLR8fY .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-uJNdvLR8fY .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-uJNdvLR8fY .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  color: #ffffff;
}
.cid-uJNdvLR8fY .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  color: #ffffff;
}
.cid-uKz04muiW0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKz04muiW0 .stats-item {
  padding: 80px 10px;
  background-color: #0f004e;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKz04muiW0 .stats-item:first-child {
  border-radius: 10px 0 0 10px;
}
.cid-uKz04muiW0 .stats-item:last-child {
  border-radius: 0 10px 10px 0;
}
.cid-uKz04muiW0 .stats-item > span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-uKz04muiW0 .mbr-iconfont {
  font-size: 60px;
  align-self: center;
  margin-right: 20px;
}
.cid-uKz04muiW0 .heading {
  color: #ffffff;
  font-weight: 400;
}
.cid-uKz04muiW0 .heading.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.23;
}
.cid-uKz04muiW0 .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
.cid-uKz04muiW0 .counter {
  text-align: left;
  color: #ffffff;
  font-weight: 900;
}
.cid-uKz04muiW0 .counter.display-2 {
  letter-spacing: -0.5px;
  margin-bottom: 0;
  line-height: 1.15;
}
.cid-uKz04muiW0 .mbr-card-title,
.cid-uKz04muiW0 .mbr-iconfont {
  text-align: center;
  color: #ffffff;
  display: block;
}
@media (max-width: 768px) {
  .cid-uKz04muiW0 .stats-item {
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding: 30px 25px;
  }
  .cid-uKz04muiW0 .stats-item:first-child {
    border-radius: 0;
  }
  .cid-uKz04muiW0 .stats-item:last-child {
    border-radius: 0;
  }
}
.cid-uJNBXc0hME {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-uJNBXc0hME .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-uJNBXc0hME .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uJNBXc0hME .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-uJNBXc0hME .contents .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-uJNBXc0hME .contents .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
  letter-spacing: 0;
  line-height: 1.5;
}
.cid-uJNBXc0hME .card-wrapper {
  height: 100%;
}
.cid-uJNBXc0hME .card-wrapper .card-box {
  padding-top: 2rem;
}
.cid-uJNBXc0hME .card-wrapper .card-box .card-title {
  color: #28303f;
  transition: 0.3s all;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-uJNBXc0hME .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  transition: 0.3s all;
}
.cid-uJNBXc0hME .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: -0.5px;
}
.cid-uJNBXc0hME .card-wrapper .card-box .card-subtitle {
  color: #a0a9b6;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-uJNBXc0hME .card-wrapper .card-box .card-subtitle.display-4 {
  font-size: 12px;
}
.cid-uJNBXc0hME .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uJNBXc0hME .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uJNBXc0hME .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-uJNBXc0hME .card-wrapper .card-img {
  position: relative;
}
.cid-uJNBXc0hME .card-wrapper .card-img img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-uJNBXc0hME .card-wrapper .card-img .meta-category {
  background-color: #0f004e;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  bottom: -15px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-uJNBXc0hME .card-wrapper .card-img .meta-category .btn {
  font-weight: 600 !important;
}
.cid-uJNBXc0hME .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-uJNBXc0hME .card-wrapper .mbr-link-btn .btn {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-uJNBXc0hME .card-wrapper .mbr-link-btn .btn.display-4 {
  font-size: 12px;
}
.cid-uJNBXc0hME .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-uJNBXc0hME .btn[class*='-outline'] span {
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  transition: padding 0.3s !important;
}
.cid-uJNBXc0hME .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-uJNBXc0hME .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #4f87fb !important;
  box-shadow: none !important;
}
.cid-uJNBXc0hME .btn[class*='-outline']:active,
.cid-uJNBXc0hME .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-uJNzSPjx7f {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJNzSPjx7f .card-box {
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  min-height: 220px;
  transition: all 0.3s;
}
.cid-uJNzSPjx7f .icon-align-wrapper {
  display: inline-block;
}
@media (min-width: 1400px) {
  .cid-uJNzSPjx7f .card {
    padding: 2rem !important;
  }
}
.cid-uJNzSPjx7f .row {
  justify-content: center;
}
.cid-uJNzSPjx7f .card-title {
  transform: translateY(200px);
  transition: all 0.3s;
  transition-delay: 0.1s;
}
.cid-uJNzSPjx7f .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uJNzSPjx7f .mbr-text {
  opacity: 0;
  transition: all 0.3s;
}
.cid-uJNzSPjx7f .link-icon {
  display: inline-block;
  color: #000000;
  font-size: 1rem;
  justify-content: center;
}
.cid-uJNzSPjx7f .card-wrapper {
  transition: all 0.6s;
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  align-items: center;
  perspective: 300px;
  height: 100%;
  background-size: cover;
}
.cid-uJNzSPjx7f .card-wrapper:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uJNzSPjx7f .card-wrapper {
    padding: 3rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uJNzSPjx7f .card:hover .card-wrapper:after {
    opacity: 1;
    background: #92b73b;
  }
  .cid-uJNzSPjx7f .card:hover .icon-wrapper,
  .cid-uJNzSPjx7f .card:hover .mbr-text {
    opacity: 1;
    transition-delay: 0.1s;
  }
  .cid-uJNzSPjx7f .card:hover .card-title {
    transform: translateY(0px);
    transition-delay: 0s;
  }
}
@media (max-width: 992px) {
  .cid-uJNzSPjx7f .card {
    padding-bottom: 1rem !important;
  }
  .cid-uJNzSPjx7f .card-title {
    transform: translateY(0px);
  }
  .cid-uJNzSPjx7f .card-wrapper:after {
    opacity: 0.7;
    background: #92b73b;
  }
  .cid-uJNzSPjx7f .icon-wrapper,
  .cid-uJNzSPjx7f .mbr-text {
    opacity: 1;
  }
}
.cid-uJNzSPjx7f .card {
  transform-style: preserve-3d;
  perspective: 800px;
}
.cid-uJNzSPjx7f .card1 {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-uJNzSPjx7f .card2 {
  background-image: url("../../../assets/images/04.jpg");
}
.cid-uJNzSPjx7f .mbr-text,
.cid-uJNzSPjx7f .card-box {
  text-align: center;
}
.cid-uJNzSPjx7f .main-subtitle {
  color: #6d7a8c;
}
.cid-uJMyrFOhJt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uJMyrFOhJt .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uJMyrFOhJt .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uJMyrFOhJt .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uJMyrFOhJt .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uJMyrFOhJt .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uJMyrFOhJt .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uJMyrFOhJt .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uJMyrFOhJt .input-group-btn {
  padding-left: 0;
}
.cid-uJMyrFOhJt .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uJMyrFOhJt .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uJMyrFOhJt .mbr-text {
  color: #444;
}
.cid-uJMyrFOhJt h5 {
  margin-bottom: 0;
}
.cid-uJMyrFOhJt .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uJMyrFOhJt .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uJMyrFOhJt .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uJMyrFOhJt .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uJMyrFOhJt .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-uJMyrFOhJt .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uJMyrFOhJt .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uJMyrFOhJt .social-list a:hover {
  opacity: 0.4;
}
.cid-uJMyrFOhJt .media-container-row > div {
  padding: 0px;
}
.cid-uJMyrFOhJt .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uJMyrFOhJt .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uJMyrFOhJt .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uJMyrFOhJt .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uJMyrFOhJt .social-list,
  .cid-uJMyrFOhJt .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uJMyrFOhJt h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uJMyrFOhJt .form-group {
    max-width: 180px;
  }
}
.cid-uJMyrFOhJt .links span {
  color: #9e9e9e;
}
.cid-uJMyrFOhJt .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uJMyrFOhJt .logo-title {
  text-align: center;
}
.cid-uJMyrFOhJt .logo-title,
.cid-uJMyrFOhJt .logo {
  color: #ffffff;
}
.cid-uKWfYutqpA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0c013d;
}
.cid-uKWfYutqpA .links {
  text-align: center;
  color: #ffffff;
}
.cid-uKWfYutqpA p {
  margin: 0;
}
.cid-uKWfYutqpA a {
  color: #ffffff;
}
.cid-uKWfYutqpA a:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uKsB7nawwC .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKsB7nawwC .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKsB7nawwC .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKsB7nawwC .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKsB7nawwC .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKsB7nawwC .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKsB7nawwC .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKsB7nawwC .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKsB7nawwC .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKsB7nawwC .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKsB7nawwC .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKsB7nawwC .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKsB7nawwC .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKsB7nawwC .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKsB7nawwC .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKsB7nawwC a {
  font-style: normal;
}
.cid-uKsB7nawwC .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKsB7nawwC .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKsB7nawwC .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKsB7nawwC .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKsB7nawwC .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKsB7nawwC .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKsB7nawwC .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKsB7nawwC .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKsB7nawwC .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .menu-content-right {
    display: none;
  }
}
.cid-uKsB7nawwC .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKsB7nawwC .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKsB7nawwC .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKsB7nawwC .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKsB7nawwC .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKsB7nawwC .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKsB7nawwC .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKsB7nawwC .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .right-box {
    display: none;
  }
}
.cid-uKsB7nawwC .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKsB7nawwC .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKsB7nawwC .content-text {
  margin-bottom: 0;
}
.cid-uKsB7nawwC .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKsB7nawwC .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKsB7nawwC .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKsB7nawwC .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKsB7nawwC .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKsB7nawwC .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKsB7nawwC .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKsB7nawwC .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKsB7nawwC .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKsB7nawwC .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKsB7nawwC .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKsB7nawwC .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKsB7nawwC .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKsB7nawwC .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKsB7nawwC .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKsB7nawwC .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKsB7nawwC .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKsB7nawwC .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKsB7nawwC .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKsB7nawwC .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKsB7nawwC .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKsB7nawwC .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKsB7nawwC .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKsB7nawwC .menu-content-top.show {
  display: block;
}
.cid-uKsB7nawwC .pre-header-right {
  align-self: center;
}
.cid-uKsB7nawwC .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKsB7nawwC .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKsB7nawwC .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKsB7nawwC .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKsB7nawwC .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKsB7nawwC .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKsB7nawwC .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKsB7nawwC .navbar .menu-content-top {
    display: none;
  }
  .cid-uKsB7nawwC .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKsB7nawwC .dropdown-item:before {
    display: none;
  }
  .cid-uKsB7nawwC .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKsB7nawwC img {
    height: 3.8rem !important;
  }
  .cid-uKsB7nawwC .btn {
    display: flex;
  }
  .cid-uKsB7nawwC button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKsB7nawwC .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKsB7nawwC .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKsB7nawwC .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKsB7nawwC .navbar-collapse.collapsing,
  .cid-uKsB7nawwC .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKsB7nawwC .navbar-collapse.collapsing .navbar-nav,
  .cid-uKsB7nawwC .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKsB7nawwC .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKsB7nawwC .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKsB7nawwC .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKsB7nawwC .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKsB7nawwC .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKsB7nawwC .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKsB7nawwC .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKsB7nawwC .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKsB7nawwC .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKsB7nawwC .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKsB7nawwC .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKsB7nawwC .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKsB7nawwC .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKsB7nawwC .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKsB7nawwC .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKsB7nawwC .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKsB7nawwC .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKsB7nawwC .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKsB7nawwC .navbar-toggler {
    display: none;
  }
}
.cid-uKsB7nawwC .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKsB7nawwC .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKsB7nawwC .navbar-short {
  background: transparent;
}
.cid-uKsB7nawwC .navbar-short .menu-content-top,
.cid-uKsB7nawwC .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKsB7nawwC .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKsB7nawwC .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKsB7nawwC .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKsB7nawwC .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKsB7nawwC .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKsB7nawwC .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKsB7nawwC .dropdown {
  color: #0f004e !important;
}
.cid-uKsB7nawwC .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKsB7nawwC .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKsB7nawwC .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKsB7nawwC .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKsB7nawwC .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKsB7nawwC .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKsB7nawwC .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKsB7nawwC .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKsB7nawwC .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKsB7nawwC button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKsB7nawwC button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsB7nawwC button.navbar-toggler:focus {
  outline: none;
}
.cid-uKsB7nawwC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKsB7nawwC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsB7nawwC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKsB7nawwC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKsB7nawwC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsB7nawwC nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKsB7nawwC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKsB7nawwC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKsB7nawwC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKsB7nawwC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsB7nawwC .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKsB7nawwC .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKsB7nawwC .collapsed .btn {
  display: flex;
}
.cid-uKsB7nawwC .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKsB7nawwC .collapsed .navbar-collapse.collapsing,
.cid-uKsB7nawwC .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKsB7nawwC .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKsB7nawwC .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKsB7nawwC .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKsB7nawwC .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKsB7nawwC .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKsB7nawwC .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKsB7nawwC .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKsB7nawwC .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKsB7nawwC .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKsB7nawwC .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKsB7nawwC .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKsB7nawwC .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKsB7nawwC .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKsB7nawwC .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKsB7nawwC .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKsB7nawwC .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKsB7nawwC .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKsB7nawwC .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKsB7nawwC .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKsB7nawwC .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKsB7nawwC .nav-link:focus {
  outline: none;
}
.cid-uKsB7nawwC .navbar-toggler {
  position: relative;
}
.cid-uKsB7nawwC .dropdown-item.active,
.cid-uKsB7nawwC .dropdown-item:active {
  color: auto;
}
.cid-uKsB7nawwC .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKsBykUFFe {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKsBykUFFe .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uKsBykUFFe .photo-split {
  position: relative;
}
.cid-uKsBykUFFe .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-uKsBykUFFe .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uKsBykUFFe .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uKsBykUFFe .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uKsBykUFFe .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #4f87fb;
  margin-right: 15px;
  z-index: 10;
}
.cid-uKsBykUFFe .wrap-block {
  padding: 3rem 3rem;
}
.cid-uKsBykUFFe .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-uKsBykUFFe .wrap-block .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKsBykUFFe .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uKsBykUFFe .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-uKsBykUFFe .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-uKsBykUFFe .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-uKsBykUFFe .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-uKsBykUFFe .wrap-block .contents h3 {
  color: #130947;
  letter-spacing: -0.5px;
}
.cid-uKsBykUFFe .wrap-block .contents h4 {
  color: #6d7a8c;
}
.cid-uKsBykUFFe .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-uKsBykUFFe .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #ffffff;
  margin-right: 15px;
}
.cid-uKsBykUFFe .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
  width: auto;
}
.cid-uKsBykUFFe .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKsBykUFFe .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #130947;
}
.cid-uKsBykUFFe .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-uKsBykUFFe .photo-split {
    padding: 3rem 3rem;
  }
  .cid-uKsBykUFFe .photo-split .element-outer,
  .cid-uKsBykUFFe .photo-split .element-outer2 {
    display: none;
  }
  .cid-uKsBykUFFe .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-uKsBykUFFe .mbr-section-title,
  .cid-uKsBykUFFe .mbr-section-subtitle,
  .cid-uKsBykUFFe .mbr-text {
    text-align: left !important;
  }
  .cid-uKsBykUFFe .social-list {
    text-align: left !important;
  }
}
.cid-uKsBykUFFe .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-uKsBykUFFe .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-uKsBykUFFe .wrap-block .contents h4,
.cid-uKsBykUFFe .menu-content-right {
  color: #0f004e;
}
.cid-uKsCK4WymX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKsCK4WymX .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKsCK4WymX .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uKsCK4WymX .mbr-section-title {
  margin: 0;
  color: #130947;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-uKsCK4WymX .mbr-section-title.display-2 {
  font-size: 38px;
  line-height: 1.26;
  letter-spacing: -0.5px;
}
.cid-uKsCK4WymX .mbr-section-text {
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKsCK4WymX .mbr-section-text.display-7 {
  font-size: 16px;
}
.cid-uKsCK4WymX .display-2 {
  font-size: 38px;
}
.cid-uKsCK4WymX .wrapper {
  border-radius: 0.25rem;
  padding: 1rem;
  background: #ffffff;
  margin-bottom: 10px;
}
.cid-uKsCK4WymX .wrapper .img {
  margin-bottom: 20px;
}
.cid-uKsCK4WymX .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #4f87fb;
  border-radius: 50%;
}
.cid-uKsCK4WymX .wrapper .mbr-card-title {
  color: #130947;
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cid-uKsCK4WymX .wrapper .mbr-card-title.display-7 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.cid-uKsCK4WymX .wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKsCK4WymX .wrapper .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cid-uKsCK4WymX * {
    text-align: left;
  }
}
.cid-uKsB7oKaXR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-uKsB7oKaXR h4 {
  letter-spacing: -0.5px;
  color: #130947;
  font-weight: 800;
}
.cid-uKsB7oKaXR p {
  color: #6d7a8c;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-uKsB7oKaXR .mbr-section-title {
  color: #130947;
  margin-bottom: 20px;
  font-weight: 700;
}
.cid-uKsB7oKaXR .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-uKsB7oKaXR .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKsB7oKaXR .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uKsB7oKaXR .card-box {
  padding-top: 35px;
}
.cid-uKsB7oKaXR .card-box .card-title {
  text-align: center;
  color: #130947;
}
.cid-uKsB7oKaXR .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.cid-uKsB7oKaXR .card-box p {
  text-align: center;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKsB7oKaXR .card-box p.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uKsB7oKaXR .card-wrapper {
  height: 100%;
  text-align: center;
}
.cid-uKsB7oKaXR .card-img {
  display: inline-block;
  position: relative;
  width: inherit !important;
}
.cid-uKsB7oKaXR .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uKsB7oKaXR .card-img .card-icon {
  background: #4f87fb;
  color: #fff;
  height: 46px;
  width: 46px;
  font-size: 14px;
  line-height: 3.29;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  padding: 0.5rem;
  top: 6px;
  right: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uKsB7oKaXR .card-img .card-icon span {
  z-index: 99;
}
.cid-uKsB7oKaXR .card-img .card-icon::before {
  width: 56px;
  height: 56px;
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: #4f87fb;
  opacity: 0.5;
  z-index: 1;
}
.cid-uKsB7r0s6z {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKsB7r0s6z .card-box {
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  min-height: 220px;
  transition: all 0.3s;
}
.cid-uKsB7r0s6z .icon-align-wrapper {
  display: inline-block;
}
@media (min-width: 1400px) {
  .cid-uKsB7r0s6z .card {
    padding: 2rem !important;
  }
}
.cid-uKsB7r0s6z .row {
  justify-content: center;
}
.cid-uKsB7r0s6z .card-title {
  transform: translateY(200px);
  transition: all 0.3s;
  transition-delay: 0.1s;
}
.cid-uKsB7r0s6z .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uKsB7r0s6z .mbr-text {
  opacity: 0;
  transition: all 0.3s;
}
.cid-uKsB7r0s6z .link-icon {
  display: inline-block;
  color: #000000;
  font-size: 1rem;
  justify-content: center;
}
.cid-uKsB7r0s6z .card-wrapper {
  transition: all 0.6s;
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  align-items: center;
  perspective: 300px;
  height: 100%;
  background-size: cover;
}
.cid-uKsB7r0s6z .card-wrapper:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uKsB7r0s6z .card-wrapper {
    padding: 3rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uKsB7r0s6z .card:hover .card-wrapper:after {
    opacity: 1;
    background: #92b73b;
  }
  .cid-uKsB7r0s6z .card:hover .icon-wrapper,
  .cid-uKsB7r0s6z .card:hover .mbr-text {
    opacity: 1;
    transition-delay: 0.1s;
  }
  .cid-uKsB7r0s6z .card:hover .card-title {
    transform: translateY(0px);
    transition-delay: 0s;
  }
}
@media (max-width: 992px) {
  .cid-uKsB7r0s6z .card {
    padding-bottom: 1rem !important;
  }
  .cid-uKsB7r0s6z .card-title {
    transform: translateY(0px);
  }
  .cid-uKsB7r0s6z .card-wrapper:after {
    opacity: 0.7;
    background: #92b73b;
  }
  .cid-uKsB7r0s6z .icon-wrapper,
  .cid-uKsB7r0s6z .mbr-text {
    opacity: 1;
  }
}
.cid-uKsB7r0s6z .card {
  transform-style: preserve-3d;
  perspective: 800px;
}
.cid-uKsB7r0s6z .card1 {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-uKsB7r0s6z .card2 {
  background-image: url("../../../assets/images/04.jpg");
}
.cid-uKsB7r0s6z .mbr-text,
.cid-uKsB7r0s6z .card-box {
  text-align: center;
}
.cid-uKsB7r0s6z .main-subtitle {
  color: #6d7a8c;
}
.cid-uKsB7rjSYp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKsB7rjSYp .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKsB7rjSYp .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKsB7rjSYp .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKsB7rjSYp .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKsB7rjSYp .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKsB7rjSYp .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKsB7rjSYp .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKsB7rjSYp .input-group-btn {
  padding-left: 0;
}
.cid-uKsB7rjSYp .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKsB7rjSYp .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKsB7rjSYp .mbr-text {
  color: #444;
}
.cid-uKsB7rjSYp h5 {
  margin-bottom: 0;
}
.cid-uKsB7rjSYp .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKsB7rjSYp .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKsB7rjSYp .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKsB7rjSYp .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKsB7rjSYp .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-uKsB7rjSYp .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKsB7rjSYp .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKsB7rjSYp .social-list a:hover {
  opacity: 0.4;
}
.cid-uKsB7rjSYp .media-container-row > div {
  padding: 0px;
}
.cid-uKsB7rjSYp .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKsB7rjSYp .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKsB7rjSYp .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKsB7rjSYp .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKsB7rjSYp .social-list,
  .cid-uKsB7rjSYp .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKsB7rjSYp h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKsB7rjSYp .form-group {
    max-width: 180px;
  }
}
.cid-uKsB7rjSYp .links span {
  color: #9e9e9e;
}
.cid-uKsB7rjSYp .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKsB7rjSYp .logo-title {
  text-align: center;
}
.cid-uKsB7rjSYp .logo-title,
.cid-uKsB7rjSYp .logo {
  color: #ffffff;
}
.cid-uKsFHRiku5 .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKsFHRiku5 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKsFHRiku5 .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKsFHRiku5 .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKsFHRiku5 .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKsFHRiku5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKsFHRiku5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKsFHRiku5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKsFHRiku5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKsFHRiku5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKsFHRiku5 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKsFHRiku5 .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKsFHRiku5 .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKsFHRiku5 .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKsFHRiku5 .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKsFHRiku5 a {
  font-style: normal;
}
.cid-uKsFHRiku5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKsFHRiku5 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKsFHRiku5 .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKsFHRiku5 .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKsFHRiku5 .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKsFHRiku5 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKsFHRiku5 .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKsFHRiku5 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKsFHRiku5 .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .menu-content-right {
    display: none;
  }
}
.cid-uKsFHRiku5 .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKsFHRiku5 .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKsFHRiku5 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKsFHRiku5 .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKsFHRiku5 .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKsFHRiku5 .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKsFHRiku5 .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKsFHRiku5 .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .right-box {
    display: none;
  }
}
.cid-uKsFHRiku5 .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKsFHRiku5 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKsFHRiku5 .content-text {
  margin-bottom: 0;
}
.cid-uKsFHRiku5 .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKsFHRiku5 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKsFHRiku5 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKsFHRiku5 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKsFHRiku5 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKsFHRiku5 .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKsFHRiku5 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKsFHRiku5 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKsFHRiku5 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKsFHRiku5 .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKsFHRiku5 .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKsFHRiku5 .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKsFHRiku5 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKsFHRiku5 .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKsFHRiku5 .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKsFHRiku5 .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKsFHRiku5 .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKsFHRiku5 .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKsFHRiku5 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKsFHRiku5 .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKsFHRiku5 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKsFHRiku5 .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKsFHRiku5 .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKsFHRiku5 .menu-content-top.show {
  display: block;
}
.cid-uKsFHRiku5 .pre-header-right {
  align-self: center;
}
.cid-uKsFHRiku5 .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKsFHRiku5 .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKsFHRiku5 .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKsFHRiku5 .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKsFHRiku5 .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKsFHRiku5 .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKsFHRiku5 .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKsFHRiku5 .navbar .menu-content-top {
    display: none;
  }
  .cid-uKsFHRiku5 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKsFHRiku5 .dropdown-item:before {
    display: none;
  }
  .cid-uKsFHRiku5 .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKsFHRiku5 img {
    height: 3.8rem !important;
  }
  .cid-uKsFHRiku5 .btn {
    display: flex;
  }
  .cid-uKsFHRiku5 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKsFHRiku5 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKsFHRiku5 .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKsFHRiku5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKsFHRiku5 .navbar-collapse.collapsing,
  .cid-uKsFHRiku5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKsFHRiku5 .navbar-collapse.collapsing .navbar-nav,
  .cid-uKsFHRiku5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKsFHRiku5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKsFHRiku5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKsFHRiku5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKsFHRiku5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKsFHRiku5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKsFHRiku5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKsFHRiku5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKsFHRiku5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKsFHRiku5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKsFHRiku5 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKsFHRiku5 .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKsFHRiku5 .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKsFHRiku5 .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKsFHRiku5 .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKsFHRiku5 .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKsFHRiku5 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKsFHRiku5 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKsFHRiku5 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKsFHRiku5 .navbar-toggler {
    display: none;
  }
}
.cid-uKsFHRiku5 .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKsFHRiku5 .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKsFHRiku5 .navbar-short {
  background: transparent;
}
.cid-uKsFHRiku5 .navbar-short .menu-content-top,
.cid-uKsFHRiku5 .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKsFHRiku5 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKsFHRiku5 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKsFHRiku5 .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKsFHRiku5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKsFHRiku5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKsFHRiku5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKsFHRiku5 .dropdown {
  color: #0f004e !important;
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKsFHRiku5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKsFHRiku5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKsFHRiku5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKsFHRiku5 .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKsFHRiku5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKsFHRiku5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKsFHRiku5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKsFHRiku5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKsFHRiku5 button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKsFHRiku5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsFHRiku5 button.navbar-toggler:focus {
  outline: none;
}
.cid-uKsFHRiku5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKsFHRiku5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsFHRiku5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKsFHRiku5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKsFHRiku5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsFHRiku5 nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKsFHRiku5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKsFHRiku5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKsFHRiku5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKsFHRiku5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKsFHRiku5 .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKsFHRiku5 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKsFHRiku5 .collapsed .btn {
  display: flex;
}
.cid-uKsFHRiku5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKsFHRiku5 .collapsed .navbar-collapse.collapsing,
.cid-uKsFHRiku5 .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKsFHRiku5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKsFHRiku5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKsFHRiku5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKsFHRiku5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKsFHRiku5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKsFHRiku5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKsFHRiku5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKsFHRiku5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKsFHRiku5 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKsFHRiku5 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKsFHRiku5 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKsFHRiku5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKsFHRiku5 .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKsFHRiku5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKsFHRiku5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKsFHRiku5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKsFHRiku5 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKsFHRiku5 .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKsFHRiku5 .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKsFHRiku5 .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKsFHRiku5 .nav-link:focus {
  outline: none;
}
.cid-uKsFHRiku5 .navbar-toggler {
  position: relative;
}
.cid-uKsFHRiku5 .dropdown-item.active,
.cid-uKsFHRiku5 .dropdown-item:active {
  color: auto;
}
.cid-uKsFHRiku5 .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKtTsbplen {
  padding-top: 225px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/industrial-engineer-hard-hat-high-vis-vest-working.jpeg");
}
.cid-uKtTsbplen .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKtTsbplen .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKtTsbplen .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKtTsbplen .mbr-text {
  color: #6d7a8c;
}
.cid-uKtTsbplen .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKtTsbplen .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKtTsbplen .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKtTsbplen .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKtTsbplen .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKtTsbplen .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKtTsbplen .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKtTsbplen .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKtTsbplen .separator,
  .cid-uKtTsbplen .sep-holder,
  .cid-uKtTsbplen .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKtTsbplen .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKwRPIndBt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f7fa;
}
.cid-uKwRPIndBt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uKwRPIndBt H2 {
  color: #0f004e;
}
.cid-uKvX8LpuAO {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKvX8LpuAO .mbr-text {
  color: #777d74;
}
.cid-uKwT7wq6MA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKwT7wq6MA .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.cid-uKwT7wq6MA .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0 1.4rem;
}
.cid-uKwT7wq6MA .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #0f004e;
  font-size: 0.8rem;
}
.cid-uKwT7wq6MA .link,
.cid-uKwT7wq6MA .link-wrap {
  color: #555555;
}
.cid-uKwT7wq6MA img {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uKwT7wq6MA .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-uKwT7wq6MA .link-wrap {
    align-items: center;
  }
}
.cid-uKwV5EKL4q {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/construction-worker-blue-hard-hat-is-looking-tablet.jpg");
}
.cid-uKwV5EKL4q .mbr-text {
  color: #716c80;
}
.cid-uKwV5EKL4q .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-uKwV5EKL4q p {
  margin: 0;
}
.cid-uKwV5EKL4q .mbr-iconfont {
  transition: all 0.3s;
  color: #86affe !important;
  font-size: 2.8rem !important;
}
.cid-uKwV5EKL4q .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-uKwV5EKL4q .card:hover .mbr-iconfont {
  color: #0f004e !important;
}
.cid-uKwV5EKL4q .card-title,
.cid-uKwV5EKL4q .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-uKwV5EKL4q .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-uKwV5EKL4q .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-uKwV5EKL4q .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-uKwV5EKL4q .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-uKwV5EKL4q .card-img span {
    margin-right: 0rem;
  }
  .cid-uKwV5EKL4q .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-uKwV5EKL4q .card-img {
  width: auto;
}
.cid-uKsFHSzMgb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-uKsFHSzMgb h4 {
  letter-spacing: -0.5px;
  color: #130947;
  font-weight: 800;
}
.cid-uKsFHSzMgb p {
  color: #6d7a8c;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-uKsFHSzMgb .mbr-section-title {
  color: #130947;
  margin-bottom: 20px;
  font-weight: 700;
}
.cid-uKsFHSzMgb .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-uKsFHSzMgb .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKsFHSzMgb .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uKsFHSzMgb .card-box {
  padding-top: 35px;
}
.cid-uKsFHSzMgb .card-box .card-title {
  text-align: center;
  color: #130947;
}
.cid-uKsFHSzMgb .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.cid-uKsFHSzMgb .card-box p {
  text-align: center;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKsFHSzMgb .card-box p.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uKsFHSzMgb .card-wrapper {
  height: 100%;
  text-align: center;
}
.cid-uKsFHSzMgb .card-img {
  display: inline-block;
  position: relative;
  width: inherit !important;
}
.cid-uKsFHSzMgb .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uKsFHSzMgb .card-img .card-icon {
  background: #4f87fb;
  color: #fff;
  height: 46px;
  width: 46px;
  font-size: 14px;
  line-height: 3.29;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  padding: 0.5rem;
  top: 6px;
  right: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uKsFHSzMgb .card-img .card-icon span {
  z-index: 99;
}
.cid-uKsFHSzMgb .card-img .card-icon::before {
  width: 56px;
  height: 56px;
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: #4f87fb;
  opacity: 0.5;
  z-index: 1;
}
.cid-uKsFHTlL2V {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKsFHTlL2V .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKsFHTlL2V .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKsFHTlL2V .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKsFHTlL2V .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKsFHTlL2V .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKsFHTlL2V .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKsFHTlL2V .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKsFHTlL2V .input-group-btn {
  padding-left: 0;
}
.cid-uKsFHTlL2V .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKsFHTlL2V .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKsFHTlL2V .mbr-text {
  color: #444;
}
.cid-uKsFHTlL2V h5 {
  margin-bottom: 0;
}
.cid-uKsFHTlL2V .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKsFHTlL2V .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKsFHTlL2V .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKsFHTlL2V .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKsFHTlL2V .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-uKsFHTlL2V .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKsFHTlL2V .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKsFHTlL2V .social-list a:hover {
  opacity: 0.4;
}
.cid-uKsFHTlL2V .media-container-row > div {
  padding: 0px;
}
.cid-uKsFHTlL2V .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKsFHTlL2V .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKsFHTlL2V .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKsFHTlL2V .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKsFHTlL2V .social-list,
  .cid-uKsFHTlL2V .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKsFHTlL2V h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKsFHTlL2V .form-group {
    max-width: 180px;
  }
}
.cid-uKsFHTlL2V .links span {
  color: #9e9e9e;
}
.cid-uKsFHTlL2V .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKsFHTlL2V .logo-title {
  text-align: center;
}
.cid-uKsFHTlL2V .logo-title,
.cid-uKsFHTlL2V .logo {
  color: #ffffff;
}
.cid-uKwYKELhbO .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKwYKELhbO .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKwYKELhbO .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKwYKELhbO .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKwYKELhbO .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwYKELhbO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKwYKELhbO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKwYKELhbO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKwYKELhbO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKwYKELhbO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKwYKELhbO .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKwYKELhbO .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKwYKELhbO .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKwYKELhbO .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKwYKELhbO .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKwYKELhbO a {
  font-style: normal;
}
.cid-uKwYKELhbO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKwYKELhbO .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKwYKELhbO .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKwYKELhbO .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKwYKELhbO .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKwYKELhbO .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKwYKELhbO .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwYKELhbO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKwYKELhbO .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .menu-content-right {
    display: none;
  }
}
.cid-uKwYKELhbO .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKwYKELhbO .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKwYKELhbO .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKwYKELhbO .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKwYKELhbO .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKwYKELhbO .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKwYKELhbO .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKwYKELhbO .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .right-box {
    display: none;
  }
}
.cid-uKwYKELhbO .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKwYKELhbO .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKwYKELhbO .content-text {
  margin-bottom: 0;
}
.cid-uKwYKELhbO .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKwYKELhbO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKwYKELhbO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKwYKELhbO .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKwYKELhbO .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKwYKELhbO .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKwYKELhbO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKwYKELhbO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKwYKELhbO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKwYKELhbO .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKwYKELhbO .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKwYKELhbO .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKwYKELhbO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKwYKELhbO .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKwYKELhbO .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKwYKELhbO .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKwYKELhbO .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKwYKELhbO .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKwYKELhbO .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKwYKELhbO .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKwYKELhbO .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKwYKELhbO .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKwYKELhbO .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKwYKELhbO .menu-content-top.show {
  display: block;
}
.cid-uKwYKELhbO .pre-header-right {
  align-self: center;
}
.cid-uKwYKELhbO .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKwYKELhbO .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKwYKELhbO .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKwYKELhbO .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKwYKELhbO .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKwYKELhbO .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKwYKELhbO .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKwYKELhbO .navbar .menu-content-top {
    display: none;
  }
  .cid-uKwYKELhbO .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKwYKELhbO .dropdown-item:before {
    display: none;
  }
  .cid-uKwYKELhbO .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKwYKELhbO img {
    height: 3.8rem !important;
  }
  .cid-uKwYKELhbO .btn {
    display: flex;
  }
  .cid-uKwYKELhbO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKwYKELhbO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKwYKELhbO .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKwYKELhbO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKwYKELhbO .navbar-collapse.collapsing,
  .cid-uKwYKELhbO .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKwYKELhbO .navbar-collapse.collapsing .navbar-nav,
  .cid-uKwYKELhbO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKwYKELhbO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKwYKELhbO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKwYKELhbO .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKwYKELhbO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKwYKELhbO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKwYKELhbO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKwYKELhbO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKwYKELhbO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKwYKELhbO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKwYKELhbO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKwYKELhbO .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKwYKELhbO .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKwYKELhbO .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKwYKELhbO .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKwYKELhbO .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKwYKELhbO .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKwYKELhbO .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKwYKELhbO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKwYKELhbO .navbar-toggler {
    display: none;
  }
}
.cid-uKwYKELhbO .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKwYKELhbO .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKwYKELhbO .navbar-short {
  background: transparent;
}
.cid-uKwYKELhbO .navbar-short .menu-content-top,
.cid-uKwYKELhbO .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKwYKELhbO .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwYKELhbO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKwYKELhbO .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKwYKELhbO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKwYKELhbO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKwYKELhbO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKwYKELhbO .dropdown {
  color: #0f004e !important;
}
.cid-uKwYKELhbO .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKwYKELhbO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKwYKELhbO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKwYKELhbO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKwYKELhbO .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKwYKELhbO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKwYKELhbO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKwYKELhbO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKwYKELhbO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKwYKELhbO button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKwYKELhbO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwYKELhbO button.navbar-toggler:focus {
  outline: none;
}
.cid-uKwYKELhbO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKwYKELhbO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwYKELhbO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKwYKELhbO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKwYKELhbO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwYKELhbO nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKwYKELhbO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKwYKELhbO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKwYKELhbO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKwYKELhbO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwYKELhbO .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKwYKELhbO .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKwYKELhbO .collapsed .btn {
  display: flex;
}
.cid-uKwYKELhbO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKwYKELhbO .collapsed .navbar-collapse.collapsing,
.cid-uKwYKELhbO .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKwYKELhbO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKwYKELhbO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKwYKELhbO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKwYKELhbO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKwYKELhbO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKwYKELhbO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKwYKELhbO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKwYKELhbO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKwYKELhbO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKwYKELhbO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKwYKELhbO .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKwYKELhbO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKwYKELhbO .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKwYKELhbO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKwYKELhbO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKwYKELhbO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKwYKELhbO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKwYKELhbO .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKwYKELhbO .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKwYKELhbO .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKwYKELhbO .nav-link:focus {
  outline: none;
}
.cid-uKwYKELhbO .navbar-toggler {
  position: relative;
}
.cid-uKwYKELhbO .dropdown-item.active,
.cid-uKwYKELhbO .dropdown-item:active {
  color: auto;
}
.cid-uKwYKELhbO .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKwYKFMfq8 {
  padding-top: 225px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/diseno-de-collage-de-logistica-y-transportes.jpeg");
}
.cid-uKwYKFMfq8 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKwYKFMfq8 .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKwYKFMfq8 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKwYKFMfq8 .mbr-text {
  color: #6d7a8c;
}
.cid-uKwYKFMfq8 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKwYKFMfq8 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKwYKFMfq8 .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKwYKFMfq8 .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKwYKFMfq8 .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKwYKFMfq8 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKwYKFMfq8 .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKwYKFMfq8 .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKwYKFMfq8 .separator,
  .cid-uKwYKFMfq8 .sep-holder,
  .cid-uKwYKFMfq8 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKwYKFMfq8 .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKwYKHHqNI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKwYKHHqNI .mbr-text {
  color: #777d74;
}
.cid-uKx69qRqxC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0f004e;
}
.cid-uKx69qRqxC .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uKx69qRqxC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKx69qRqxC img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uKx69qRqxC img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uKx69qRqxC img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uKx69qRqxC .text-wrapper {
    padding: 2rem;
  }
}
.cid-uKx69qRqxC .mbr-section-subtitle {
  color: #fa4529;
}
.cid-uKx69qRqxC .mbr-text {
  color: #ffffff;
}
.cid-uKx69qRqxC .mbr-section-title {
  color: #ffffff;
}
.cid-uKxbuqGyG8 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uKxbuqGyG8 .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-uKxbuqGyG8 .container {
  max-width: 1500px;
}
.cid-uKxbuqGyG8 .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-uKxbuqGyG8 .container {
    padding: 0 4rem;
  }
}
.cid-uKxbuqGyG8 .mbr-text,
.cid-uKxbuqGyG8 .mbr-section-btn {
  color: #0f004e;
}
.cid-uKxbuqGyG8 .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-uKxbuqGyG8 .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-uKxbuqGyG8 .align-left {
    text-align: center;
  }
  .cid-uKxbuqGyG8 .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-uKxbuqGyG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKxbuqGyG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKxbuqGyG8 H1 {
  color: #0f004e;
}
.cid-uKwYKJtyrD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-uKwYKJtyrD h4 {
  letter-spacing: -0.5px;
  color: #130947;
  font-weight: 800;
}
.cid-uKwYKJtyrD p {
  color: #6d7a8c;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-uKwYKJtyrD .mbr-section-title {
  color: #130947;
  margin-bottom: 20px;
  font-weight: 700;
}
.cid-uKwYKJtyrD .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-uKwYKJtyrD .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKwYKJtyrD .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uKwYKJtyrD .card-box {
  padding-top: 35px;
}
.cid-uKwYKJtyrD .card-box .card-title {
  text-align: center;
  color: #130947;
}
.cid-uKwYKJtyrD .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.cid-uKwYKJtyrD .card-box p {
  text-align: center;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKwYKJtyrD .card-box p.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uKwYKJtyrD .card-wrapper {
  height: 100%;
  text-align: center;
}
.cid-uKwYKJtyrD .card-img {
  display: inline-block;
  position: relative;
  width: inherit !important;
}
.cid-uKwYKJtyrD .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uKwYKJtyrD .card-img .card-icon {
  background: #4f87fb;
  color: #fff;
  height: 46px;
  width: 46px;
  font-size: 14px;
  line-height: 3.29;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  padding: 0.5rem;
  top: 6px;
  right: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uKwYKJtyrD .card-img .card-icon span {
  z-index: 99;
}
.cid-uKwYKJtyrD .card-img .card-icon::before {
  width: 56px;
  height: 56px;
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: #4f87fb;
  opacity: 0.5;
  z-index: 1;
}
.cid-uKwYKKdadY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKwYKKdadY .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKwYKKdadY .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKwYKKdadY .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKwYKKdadY .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKwYKKdadY .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKwYKKdadY .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKwYKKdadY .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKwYKKdadY .input-group-btn {
  padding-left: 0;
}
.cid-uKwYKKdadY .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKwYKKdadY .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKwYKKdadY .mbr-text {
  color: #444;
}
.cid-uKwYKKdadY h5 {
  margin-bottom: 0;
}
.cid-uKwYKKdadY .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKwYKKdadY .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKwYKKdadY .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKwYKKdadY .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKwYKKdadY .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-uKwYKKdadY .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKwYKKdadY .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKwYKKdadY .social-list a:hover {
  opacity: 0.4;
}
.cid-uKwYKKdadY .media-container-row > div {
  padding: 0px;
}
.cid-uKwYKKdadY .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKwYKKdadY .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKwYKKdadY .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKwYKKdadY .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKwYKKdadY .social-list,
  .cid-uKwYKKdadY .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKwYKKdadY h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKwYKKdadY .form-group {
    max-width: 180px;
  }
}
.cid-uKwYKKdadY .links span {
  color: #9e9e9e;
}
.cid-uKwYKKdadY .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKwYKKdadY .logo-title {
  text-align: center;
}
.cid-uKwYKKdadY .logo-title,
.cid-uKwYKKdadY .logo {
  color: #ffffff;
}
.cid-uKxeke73ME .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKxeke73ME .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKxeke73ME .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKxeke73ME .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKxeke73ME .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxeke73ME .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKxeke73ME .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKxeke73ME .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKxeke73ME .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKxeke73ME .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKxeke73ME .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKxeke73ME .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKxeke73ME .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKxeke73ME .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKxeke73ME .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKxeke73ME a {
  font-style: normal;
}
.cid-uKxeke73ME .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKxeke73ME .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKxeke73ME .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKxeke73ME .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKxeke73ME .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKxeke73ME .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKxeke73ME .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxeke73ME .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKxeke73ME .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .menu-content-right {
    display: none;
  }
}
.cid-uKxeke73ME .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKxeke73ME .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKxeke73ME .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKxeke73ME .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKxeke73ME .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKxeke73ME .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKxeke73ME .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKxeke73ME .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .right-box {
    display: none;
  }
}
.cid-uKxeke73ME .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKxeke73ME .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKxeke73ME .content-text {
  margin-bottom: 0;
}
.cid-uKxeke73ME .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKxeke73ME .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKxeke73ME .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKxeke73ME .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKxeke73ME .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKxeke73ME .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKxeke73ME .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKxeke73ME .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKxeke73ME .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKxeke73ME .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKxeke73ME .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKxeke73ME .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKxeke73ME .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKxeke73ME .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKxeke73ME .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKxeke73ME .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKxeke73ME .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKxeke73ME .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKxeke73ME .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKxeke73ME .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKxeke73ME .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKxeke73ME .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKxeke73ME .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKxeke73ME .menu-content-top.show {
  display: block;
}
.cid-uKxeke73ME .pre-header-right {
  align-self: center;
}
.cid-uKxeke73ME .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKxeke73ME .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKxeke73ME .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKxeke73ME .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKxeke73ME .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKxeke73ME .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKxeke73ME .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKxeke73ME .navbar .menu-content-top {
    display: none;
  }
  .cid-uKxeke73ME .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKxeke73ME .dropdown-item:before {
    display: none;
  }
  .cid-uKxeke73ME .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKxeke73ME img {
    height: 3.8rem !important;
  }
  .cid-uKxeke73ME .btn {
    display: flex;
  }
  .cid-uKxeke73ME button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKxeke73ME .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKxeke73ME .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKxeke73ME .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKxeke73ME .navbar-collapse.collapsing,
  .cid-uKxeke73ME .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKxeke73ME .navbar-collapse.collapsing .navbar-nav,
  .cid-uKxeke73ME .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKxeke73ME .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKxeke73ME .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKxeke73ME .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKxeke73ME .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKxeke73ME .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKxeke73ME .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKxeke73ME .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKxeke73ME .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKxeke73ME .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKxeke73ME .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKxeke73ME .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKxeke73ME .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKxeke73ME .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKxeke73ME .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKxeke73ME .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKxeke73ME .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKxeke73ME .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKxeke73ME .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKxeke73ME .navbar-toggler {
    display: none;
  }
}
.cid-uKxeke73ME .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKxeke73ME .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKxeke73ME .navbar-short {
  background: transparent;
}
.cid-uKxeke73ME .navbar-short .menu-content-top,
.cid-uKxeke73ME .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKxeke73ME .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxeke73ME .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKxeke73ME .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKxeke73ME .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKxeke73ME .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxeke73ME .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKxeke73ME .dropdown {
  color: #0f004e !important;
}
.cid-uKxeke73ME .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKxeke73ME .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKxeke73ME .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKxeke73ME .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKxeke73ME .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKxeke73ME .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKxeke73ME .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKxeke73ME .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKxeke73ME .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKxeke73ME button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKxeke73ME button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxeke73ME button.navbar-toggler:focus {
  outline: none;
}
.cid-uKxeke73ME button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKxeke73ME button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxeke73ME button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKxeke73ME button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKxeke73ME button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxeke73ME nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKxeke73ME nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKxeke73ME nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKxeke73ME nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKxeke73ME nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxeke73ME .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKxeke73ME .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKxeke73ME .collapsed .btn {
  display: flex;
}
.cid-uKxeke73ME .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKxeke73ME .collapsed .navbar-collapse.collapsing,
.cid-uKxeke73ME .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKxeke73ME .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKxeke73ME .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKxeke73ME .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKxeke73ME .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKxeke73ME .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKxeke73ME .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKxeke73ME .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKxeke73ME .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKxeke73ME .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKxeke73ME .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKxeke73ME .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxeke73ME .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKxeke73ME .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKxeke73ME .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKxeke73ME .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKxeke73ME .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKxeke73ME .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKxeke73ME .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKxeke73ME .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKxeke73ME .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKxeke73ME .nav-link:focus {
  outline: none;
}
.cid-uKxeke73ME .navbar-toggler {
  position: relative;
}
.cid-uKxeke73ME .dropdown-item.active,
.cid-uKxeke73ME .dropdown-item:active {
  color: auto;
}
.cid-uKxeke73ME .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKxekeLFzF {
  padding-top: 225px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/team-work-employees-warehouse.jpeg");
}
.cid-uKxekeLFzF .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKxekeLFzF .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKxekeLFzF .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKxekeLFzF .mbr-text {
  color: #6d7a8c;
}
.cid-uKxekeLFzF .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKxekeLFzF .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKxekeLFzF .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKxekeLFzF .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKxekeLFzF .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKxekeLFzF .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKxekeLFzF .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKxekeLFzF .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKxekeLFzF .separator,
  .cid-uKxekeLFzF .sep-holder,
  .cid-uKxekeLFzF .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKxekeLFzF .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKxekfhB9v {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKxekfhB9v .mbr-text {
  color: #777d74;
}
.cid-uKxFIROzM3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKxFIROzM3 .mbr-text {
    text-align: center;
  }
}
.cid-uKxFIROzM3 .container-fluid {
  padding: 0;
}
.cid-uKxFIROzM3 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-uKxFIROzM3 img {
  height: 100%;
  object-fit: cover;
}
.cid-uKxFIROzM3 .mbr-figure {
  height: 100%;
}
.cid-uKxFIROzM3 .col-lg-6 {
  padding: 0;
}
.cid-uKxFIROzM3 .row {
  margin: 0;
}
.cid-uKxekgzya1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-uKxekgzya1 h4 {
  letter-spacing: -0.5px;
  color: #130947;
  font-weight: 800;
}
.cid-uKxekgzya1 p {
  color: #6d7a8c;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-uKxekgzya1 .mbr-section-title {
  color: #130947;
  margin-bottom: 20px;
  font-weight: 700;
}
.cid-uKxekgzya1 .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-uKxekgzya1 .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKxekgzya1 .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uKxekgzya1 .card-box {
  padding-top: 35px;
}
.cid-uKxekgzya1 .card-box .card-title {
  text-align: center;
  color: #130947;
}
.cid-uKxekgzya1 .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.cid-uKxekgzya1 .card-box p {
  text-align: center;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKxekgzya1 .card-box p.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uKxekgzya1 .card-wrapper {
  height: 100%;
  text-align: center;
}
.cid-uKxekgzya1 .card-img {
  display: inline-block;
  position: relative;
  width: inherit !important;
}
.cid-uKxekgzya1 .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uKxekgzya1 .card-img .card-icon {
  background: #4f87fb;
  color: #fff;
  height: 46px;
  width: 46px;
  font-size: 14px;
  line-height: 3.29;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  padding: 0.5rem;
  top: 6px;
  right: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uKxekgzya1 .card-img .card-icon span {
  z-index: 99;
}
.cid-uKxekgzya1 .card-img .card-icon::before {
  width: 56px;
  height: 56px;
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: #4f87fb;
  opacity: 0.5;
  z-index: 1;
}
.cid-uKxekh8gME {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKxekh8gME .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKxekh8gME .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKxekh8gME .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKxekh8gME .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKxekh8gME .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKxekh8gME .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKxekh8gME .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKxekh8gME .input-group-btn {
  padding-left: 0;
}
.cid-uKxekh8gME .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKxekh8gME .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKxekh8gME .mbr-text {
  color: #444;
}
.cid-uKxekh8gME h5 {
  margin-bottom: 0;
}
.cid-uKxekh8gME .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKxekh8gME .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKxekh8gME .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKxekh8gME .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKxekh8gME .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-uKxekh8gME .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKxekh8gME .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKxekh8gME .social-list a:hover {
  opacity: 0.4;
}
.cid-uKxekh8gME .media-container-row > div {
  padding: 0px;
}
.cid-uKxekh8gME .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKxekh8gME .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKxekh8gME .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKxekh8gME .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKxekh8gME .social-list,
  .cid-uKxekh8gME .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKxekh8gME h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKxekh8gME .form-group {
    max-width: 180px;
  }
}
.cid-uKxekh8gME .links span {
  color: #9e9e9e;
}
.cid-uKxekh8gME .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKxekh8gME .logo-title {
  text-align: center;
}
.cid-uKxekh8gME .logo-title,
.cid-uKxekh8gME .logo {
  color: #ffffff;
}
.cid-uKxJJT5vad .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKxJJT5vad .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKxJJT5vad .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKxJJT5vad .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKxJJT5vad .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxJJT5vad .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKxJJT5vad .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKxJJT5vad .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKxJJT5vad .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKxJJT5vad .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKxJJT5vad .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKxJJT5vad .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKxJJT5vad .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKxJJT5vad .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKxJJT5vad .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKxJJT5vad a {
  font-style: normal;
}
.cid-uKxJJT5vad .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKxJJT5vad .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKxJJT5vad .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKxJJT5vad .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKxJJT5vad .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKxJJT5vad .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKxJJT5vad .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxJJT5vad .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKxJJT5vad .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .menu-content-right {
    display: none;
  }
}
.cid-uKxJJT5vad .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKxJJT5vad .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKxJJT5vad .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKxJJT5vad .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKxJJT5vad .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKxJJT5vad .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKxJJT5vad .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKxJJT5vad .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .right-box {
    display: none;
  }
}
.cid-uKxJJT5vad .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKxJJT5vad .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKxJJT5vad .content-text {
  margin-bottom: 0;
}
.cid-uKxJJT5vad .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKxJJT5vad .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKxJJT5vad .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKxJJT5vad .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKxJJT5vad .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKxJJT5vad .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKxJJT5vad .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKxJJT5vad .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKxJJT5vad .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKxJJT5vad .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKxJJT5vad .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKxJJT5vad .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKxJJT5vad .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKxJJT5vad .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKxJJT5vad .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKxJJT5vad .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKxJJT5vad .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKxJJT5vad .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKxJJT5vad .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKxJJT5vad .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKxJJT5vad .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKxJJT5vad .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKxJJT5vad .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKxJJT5vad .menu-content-top.show {
  display: block;
}
.cid-uKxJJT5vad .pre-header-right {
  align-self: center;
}
.cid-uKxJJT5vad .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKxJJT5vad .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKxJJT5vad .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKxJJT5vad .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKxJJT5vad .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKxJJT5vad .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKxJJT5vad .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKxJJT5vad .navbar .menu-content-top {
    display: none;
  }
  .cid-uKxJJT5vad .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKxJJT5vad .dropdown-item:before {
    display: none;
  }
  .cid-uKxJJT5vad .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKxJJT5vad img {
    height: 3.8rem !important;
  }
  .cid-uKxJJT5vad .btn {
    display: flex;
  }
  .cid-uKxJJT5vad button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKxJJT5vad .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKxJJT5vad .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKxJJT5vad .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKxJJT5vad .navbar-collapse.collapsing,
  .cid-uKxJJT5vad .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKxJJT5vad .navbar-collapse.collapsing .navbar-nav,
  .cid-uKxJJT5vad .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKxJJT5vad .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKxJJT5vad .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKxJJT5vad .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKxJJT5vad .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKxJJT5vad .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKxJJT5vad .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKxJJT5vad .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKxJJT5vad .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKxJJT5vad .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKxJJT5vad .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKxJJT5vad .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKxJJT5vad .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKxJJT5vad .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKxJJT5vad .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKxJJT5vad .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKxJJT5vad .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKxJJT5vad .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKxJJT5vad .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKxJJT5vad .navbar-toggler {
    display: none;
  }
}
.cid-uKxJJT5vad .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKxJJT5vad .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKxJJT5vad .navbar-short {
  background: transparent;
}
.cid-uKxJJT5vad .navbar-short .menu-content-top,
.cid-uKxJJT5vad .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKxJJT5vad .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxJJT5vad .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKxJJT5vad .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKxJJT5vad .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKxJJT5vad .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxJJT5vad .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKxJJT5vad .dropdown {
  color: #0f004e !important;
}
.cid-uKxJJT5vad .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKxJJT5vad .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKxJJT5vad .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKxJJT5vad .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKxJJT5vad .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKxJJT5vad .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKxJJT5vad .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKxJJT5vad .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKxJJT5vad .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKxJJT5vad button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKxJJT5vad button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxJJT5vad button.navbar-toggler:focus {
  outline: none;
}
.cid-uKxJJT5vad button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKxJJT5vad button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxJJT5vad button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKxJJT5vad button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKxJJT5vad button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxJJT5vad nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKxJJT5vad nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKxJJT5vad nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKxJJT5vad nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKxJJT5vad nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxJJT5vad .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKxJJT5vad .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKxJJT5vad .collapsed .btn {
  display: flex;
}
.cid-uKxJJT5vad .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKxJJT5vad .collapsed .navbar-collapse.collapsing,
.cid-uKxJJT5vad .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKxJJT5vad .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKxJJT5vad .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKxJJT5vad .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKxJJT5vad .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKxJJT5vad .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKxJJT5vad .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKxJJT5vad .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKxJJT5vad .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKxJJT5vad .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKxJJT5vad .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKxJJT5vad .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxJJT5vad .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKxJJT5vad .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKxJJT5vad .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKxJJT5vad .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKxJJT5vad .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKxJJT5vad .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKxJJT5vad .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKxJJT5vad .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKxJJT5vad .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKxJJT5vad .nav-link:focus {
  outline: none;
}
.cid-uKxJJT5vad .navbar-toggler {
  position: relative;
}
.cid-uKxJJT5vad .dropdown-item.active,
.cid-uKxJJT5vad .dropdown-item:active {
  color: auto;
}
.cid-uKxJJT5vad .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKxJJTLsM2 {
  padding-top: 225px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/personas-que-trabajan-con-dispositivos-operados-por-ia.jpeg");
}
.cid-uKxJJTLsM2 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKxJJTLsM2 .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKxJJTLsM2 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKxJJTLsM2 .mbr-text {
  color: #6d7a8c;
}
.cid-uKxJJTLsM2 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKxJJTLsM2 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKxJJTLsM2 .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKxJJTLsM2 .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKxJJTLsM2 .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKxJJTLsM2 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKxJJTLsM2 .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKxJJTLsM2 .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKxJJTLsM2 .separator,
  .cid-uKxJJTLsM2 .sep-holder,
  .cid-uKxJJTLsM2 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKxJJTLsM2 .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKxJJUlpLP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKxJJUlpLP .mbr-text {
  color: #777d74;
}
.cid-uKxJJUKV8B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKxJJUKV8B .mbr-text {
    text-align: center;
  }
}
.cid-uKxJJUKV8B .container-fluid {
  padding: 0;
}
.cid-uKxJJUKV8B .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-uKxJJUKV8B img {
  height: 100%;
  object-fit: cover;
}
.cid-uKxJJUKV8B .mbr-figure {
  height: 100%;
}
.cid-uKxJJUKV8B .col-lg-6 {
  padding: 0;
}
.cid-uKxJJUKV8B .row {
  margin: 0;
}
.cid-uKxJJVcPpe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f7fa;
}
.cid-uKxJJVcPpe h4 {
  letter-spacing: -0.5px;
  color: #130947;
  font-weight: 800;
}
.cid-uKxJJVcPpe p {
  color: #6d7a8c;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-uKxJJVcPpe .mbr-section-title {
  color: #130947;
  margin-bottom: 20px;
  font-weight: 700;
}
.cid-uKxJJVcPpe .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-uKxJJVcPpe .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKxJJVcPpe .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uKxJJVcPpe .card-box {
  padding-top: 35px;
}
.cid-uKxJJVcPpe .card-box .card-title {
  text-align: center;
  color: #130947;
}
.cid-uKxJJVcPpe .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.cid-uKxJJVcPpe .card-box p {
  text-align: center;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKxJJVcPpe .card-box p.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uKxJJVcPpe .card-wrapper {
  height: 100%;
  text-align: center;
}
.cid-uKxJJVcPpe .card-img {
  display: inline-block;
  position: relative;
  width: inherit !important;
}
.cid-uKxJJVcPpe .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uKxJJVcPpe .card-img .card-icon {
  background: #4f87fb;
  color: #fff;
  height: 46px;
  width: 46px;
  font-size: 14px;
  line-height: 3.29;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  padding: 0.5rem;
  top: 6px;
  right: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uKxJJVcPpe .card-img .card-icon span {
  z-index: 99;
}
.cid-uKxJJVcPpe .card-img .card-icon::before {
  width: 56px;
  height: 56px;
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: #4f87fb;
  opacity: 0.5;
  z-index: 1;
}
.cid-uKxJJVMuxy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKxJJVMuxy .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKxJJVMuxy .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKxJJVMuxy .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKxJJVMuxy .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKxJJVMuxy .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKxJJVMuxy .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKxJJVMuxy .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKxJJVMuxy .input-group-btn {
  padding-left: 0;
}
.cid-uKxJJVMuxy .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKxJJVMuxy .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKxJJVMuxy .mbr-text {
  color: #444;
}
.cid-uKxJJVMuxy h5 {
  margin-bottom: 0;
}
.cid-uKxJJVMuxy .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKxJJVMuxy .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKxJJVMuxy .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKxJJVMuxy .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKxJJVMuxy .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-uKxJJVMuxy .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKxJJVMuxy .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKxJJVMuxy .social-list a:hover {
  opacity: 0.4;
}
.cid-uKxJJVMuxy .media-container-row > div {
  padding: 0px;
}
.cid-uKxJJVMuxy .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKxJJVMuxy .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKxJJVMuxy .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKxJJVMuxy .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKxJJVMuxy .social-list,
  .cid-uKxJJVMuxy .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKxJJVMuxy h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKxJJVMuxy .form-group {
    max-width: 180px;
  }
}
.cid-uKxJJVMuxy .links span {
  color: #9e9e9e;
}
.cid-uKxJJVMuxy .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKxJJVMuxy .logo-title {
  text-align: center;
}
.cid-uKxJJVMuxy .logo-title,
.cid-uKxJJVMuxy .logo {
  color: #ffffff;
}
.cid-uKxWO206W3 .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKxWO206W3 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKxWO206W3 .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKxWO206W3 .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKxWO206W3 .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxWO206W3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKxWO206W3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKxWO206W3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKxWO206W3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKxWO206W3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKxWO206W3 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKxWO206W3 .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKxWO206W3 .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKxWO206W3 .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKxWO206W3 .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKxWO206W3 a {
  font-style: normal;
}
.cid-uKxWO206W3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKxWO206W3 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKxWO206W3 .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKxWO206W3 .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKxWO206W3 .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKxWO206W3 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKxWO206W3 .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxWO206W3 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKxWO206W3 .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .menu-content-right {
    display: none;
  }
}
.cid-uKxWO206W3 .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKxWO206W3 .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKxWO206W3 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKxWO206W3 .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKxWO206W3 .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKxWO206W3 .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKxWO206W3 .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKxWO206W3 .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .right-box {
    display: none;
  }
}
.cid-uKxWO206W3 .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKxWO206W3 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKxWO206W3 .content-text {
  margin-bottom: 0;
}
.cid-uKxWO206W3 .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKxWO206W3 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKxWO206W3 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKxWO206W3 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKxWO206W3 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKxWO206W3 .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKxWO206W3 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKxWO206W3 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKxWO206W3 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKxWO206W3 .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKxWO206W3 .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKxWO206W3 .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKxWO206W3 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKxWO206W3 .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKxWO206W3 .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKxWO206W3 .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKxWO206W3 .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKxWO206W3 .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKxWO206W3 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKxWO206W3 .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKxWO206W3 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKxWO206W3 .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKxWO206W3 .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKxWO206W3 .menu-content-top.show {
  display: block;
}
.cid-uKxWO206W3 .pre-header-right {
  align-self: center;
}
.cid-uKxWO206W3 .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKxWO206W3 .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKxWO206W3 .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKxWO206W3 .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKxWO206W3 .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKxWO206W3 .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKxWO206W3 .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKxWO206W3 .navbar .menu-content-top {
    display: none;
  }
  .cid-uKxWO206W3 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKxWO206W3 .dropdown-item:before {
    display: none;
  }
  .cid-uKxWO206W3 .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKxWO206W3 img {
    height: 3.8rem !important;
  }
  .cid-uKxWO206W3 .btn {
    display: flex;
  }
  .cid-uKxWO206W3 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKxWO206W3 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKxWO206W3 .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKxWO206W3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKxWO206W3 .navbar-collapse.collapsing,
  .cid-uKxWO206W3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKxWO206W3 .navbar-collapse.collapsing .navbar-nav,
  .cid-uKxWO206W3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKxWO206W3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKxWO206W3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKxWO206W3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKxWO206W3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKxWO206W3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKxWO206W3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKxWO206W3 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKxWO206W3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKxWO206W3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKxWO206W3 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKxWO206W3 .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKxWO206W3 .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKxWO206W3 .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKxWO206W3 .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKxWO206W3 .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKxWO206W3 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKxWO206W3 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKxWO206W3 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKxWO206W3 .navbar-toggler {
    display: none;
  }
}
.cid-uKxWO206W3 .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKxWO206W3 .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKxWO206W3 .navbar-short {
  background: transparent;
}
.cid-uKxWO206W3 .navbar-short .menu-content-top,
.cid-uKxWO206W3 .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKxWO206W3 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKxWO206W3 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKxWO206W3 .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKxWO206W3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKxWO206W3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxWO206W3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKxWO206W3 .dropdown {
  color: #0f004e !important;
}
.cid-uKxWO206W3 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKxWO206W3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKxWO206W3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKxWO206W3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKxWO206W3 .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKxWO206W3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKxWO206W3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKxWO206W3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKxWO206W3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKxWO206W3 button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKxWO206W3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxWO206W3 button.navbar-toggler:focus {
  outline: none;
}
.cid-uKxWO206W3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKxWO206W3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxWO206W3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKxWO206W3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKxWO206W3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxWO206W3 nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKxWO206W3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKxWO206W3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKxWO206W3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKxWO206W3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKxWO206W3 .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKxWO206W3 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKxWO206W3 .collapsed .btn {
  display: flex;
}
.cid-uKxWO206W3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKxWO206W3 .collapsed .navbar-collapse.collapsing,
.cid-uKxWO206W3 .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKxWO206W3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKxWO206W3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKxWO206W3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKxWO206W3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKxWO206W3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKxWO206W3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKxWO206W3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKxWO206W3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKxWO206W3 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKxWO206W3 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKxWO206W3 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxWO206W3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKxWO206W3 .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKxWO206W3 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKxWO206W3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKxWO206W3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKxWO206W3 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKxWO206W3 .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKxWO206W3 .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKxWO206W3 .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKxWO206W3 .nav-link:focus {
  outline: none;
}
.cid-uKxWO206W3 .navbar-toggler {
  position: relative;
}
.cid-uKxWO206W3 .dropdown-item.active,
.cid-uKxWO206W3 .dropdown-item:active {
  color: auto;
}
.cid-uKxWO206W3 .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKyqbPFtj3 {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/empresario-feliz-usando-tableta-digital-y-leyendo-algo-mientras-trabaja-en-la-oficina.jpeg");
}
.cid-uKyqbPFtj3 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKyqbPFtj3 .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKyqbPFtj3 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKyqbPFtj3 .mbr-text {
  color: #6d7a8c;
}
.cid-uKyqbPFtj3 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKyqbPFtj3 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKyqbPFtj3 .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKyqbPFtj3 .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKyqbPFtj3 .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKyqbPFtj3 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKyqbPFtj3 .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKyqbPFtj3 .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKyqbPFtj3 .separator,
  .cid-uKyqbPFtj3 .sep-holder,
  .cid-uKyqbPFtj3 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKyqbPFtj3 .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKy97olIkb {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKy97olIkb .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uKy97olIkb .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-uKy97olIkb textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-uKy97olIkb .form-row {
    flex-direction: column;
  }
}
.cid-uKy97olIkb h4 {
  margin-bottom: 2rem;
}
.cid-uKy97olIkb .form-control,
.cid-uKy97olIkb .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-uKy97olIkb .form-control,
.cid-uKy97olIkb .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uKy97olIkb .form-control::-webkit-input-placeholder,
.cid-uKy97olIkb .field-input::-webkit-input-placeholder,
.cid-uKy97olIkb .form-control::-webkit-input-placeholder,
.cid-uKy97olIkb .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-uKy97olIkb .form-control:-moz-placeholder,
.cid-uKy97olIkb .field-input:-moz-placeholder,
.cid-uKy97olIkb .form-control:-moz-placeholder,
.cid-uKy97olIkb .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-uKy97olIkb .form-control:hover,
.cid-uKy97olIkb .field-input:hover,
.cid-uKy97olIkb .form-control:focus,
.cid-uKy97olIkb .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-uKy97olIkb .form-control:hover::-webkit-input-placeholder,
.cid-uKy97olIkb .field-input:hover::-webkit-input-placeholder,
.cid-uKy97olIkb .form-control:focus::-webkit-input-placeholder,
.cid-uKy97olIkb .field-input:focus::-webkit-input-placeholder,
.cid-uKy97olIkb .form-control:hover::-webkit-input-placeholder,
.cid-uKy97olIkb .field-input:hover::-webkit-input-placeholder,
.cid-uKy97olIkb .form-control:focus::-webkit-input-placeholder,
.cid-uKy97olIkb .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-uKy97olIkb .form-control:hover:-moz-placeholder,
.cid-uKy97olIkb .field-input:hover:-moz-placeholder,
.cid-uKy97olIkb .form-control:focus:-moz-placeholder,
.cid-uKy97olIkb .field-input:focus:-moz-placeholder,
.cid-uKy97olIkb .form-control:hover:-moz-placeholder,
.cid-uKy97olIkb .field-input:hover:-moz-placeholder,
.cid-uKy97olIkb .form-control:focus:-moz-placeholder,
.cid-uKy97olIkb .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-uKy97olIkb .jq-number__spin:hover,
.cid-uKy97olIkb .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uKy97olIkb .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uKy97olIkb .jq-selectbox li,
.cid-uKy97olIkb .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-uKy97olIkb .jq-selectbox li:hover,
.cid-uKy97olIkb .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-uKy97olIkb .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uKy97olIkb .jq-number__spin.minus:hover:after,
.cid-uKy97olIkb .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-uKy97olIkb .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uKy97olIkb .jq-number__spin.minus:after,
.cid-uKy97olIkb .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-uKy97olIkb input::-webkit-clear-button {
  display: none;
}
.cid-uKy97olIkb input::-webkit-inner-spin-button {
  display: none;
}
.cid-uKy97olIkb input::-webkit-outer-spin-button {
  display: none;
}
.cid-uKy97olIkb input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uKy97olIkb H4 {
  color: #103178;
}
.cid-uKxWO4oHZI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKxWO4oHZI .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKxWO4oHZI .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKxWO4oHZI .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKxWO4oHZI .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKxWO4oHZI .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKxWO4oHZI .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKxWO4oHZI .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKxWO4oHZI .input-group-btn {
  padding-left: 0;
}
.cid-uKxWO4oHZI .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKxWO4oHZI .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKxWO4oHZI .mbr-text {
  color: #444;
}
.cid-uKxWO4oHZI h5 {
  margin-bottom: 0;
}
.cid-uKxWO4oHZI .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKxWO4oHZI .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKxWO4oHZI .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKxWO4oHZI .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKxWO4oHZI .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-uKxWO4oHZI .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKxWO4oHZI .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKxWO4oHZI .social-list a:hover {
  opacity: 0.4;
}
.cid-uKxWO4oHZI .media-container-row > div {
  padding: 0px;
}
.cid-uKxWO4oHZI .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKxWO4oHZI .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKxWO4oHZI .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKxWO4oHZI .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKxWO4oHZI .social-list,
  .cid-uKxWO4oHZI .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKxWO4oHZI h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKxWO4oHZI .form-group {
    max-width: 180px;
  }
}
.cid-uKxWO4oHZI .links span {
  color: #9e9e9e;
}
.cid-uKxWO4oHZI .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKxWO4oHZI .logo-title {
  text-align: center;
}
.cid-uKxWO4oHZI .logo-title,
.cid-uKxWO4oHZI .logo {
  color: #ffffff;
}
.cid-uKyrdopB3I .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKyrdopB3I .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKyrdopB3I .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKyrdopB3I .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKyrdopB3I .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyrdopB3I .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKyrdopB3I .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKyrdopB3I .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyrdopB3I .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKyrdopB3I .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyrdopB3I .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKyrdopB3I .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKyrdopB3I .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKyrdopB3I .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKyrdopB3I .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKyrdopB3I a {
  font-style: normal;
}
.cid-uKyrdopB3I .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKyrdopB3I .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKyrdopB3I .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKyrdopB3I .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKyrdopB3I .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKyrdopB3I .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKyrdopB3I .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyrdopB3I .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKyrdopB3I .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .menu-content-right {
    display: none;
  }
}
.cid-uKyrdopB3I .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKyrdopB3I .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKyrdopB3I .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKyrdopB3I .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKyrdopB3I .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKyrdopB3I .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKyrdopB3I .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKyrdopB3I .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .right-box {
    display: none;
  }
}
.cid-uKyrdopB3I .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyrdopB3I .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKyrdopB3I .content-text {
  margin-bottom: 0;
}
.cid-uKyrdopB3I .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKyrdopB3I .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKyrdopB3I .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKyrdopB3I .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKyrdopB3I .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKyrdopB3I .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKyrdopB3I .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKyrdopB3I .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKyrdopB3I .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKyrdopB3I .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKyrdopB3I .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKyrdopB3I .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKyrdopB3I .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKyrdopB3I .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKyrdopB3I .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyrdopB3I .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyrdopB3I .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKyrdopB3I .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKyrdopB3I .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKyrdopB3I .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyrdopB3I .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyrdopB3I .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKyrdopB3I .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKyrdopB3I .menu-content-top.show {
  display: block;
}
.cid-uKyrdopB3I .pre-header-right {
  align-self: center;
}
.cid-uKyrdopB3I .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKyrdopB3I .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKyrdopB3I .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKyrdopB3I .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKyrdopB3I .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKyrdopB3I .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKyrdopB3I .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKyrdopB3I .navbar .menu-content-top {
    display: none;
  }
  .cid-uKyrdopB3I .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKyrdopB3I .dropdown-item:before {
    display: none;
  }
  .cid-uKyrdopB3I .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKyrdopB3I img {
    height: 3.8rem !important;
  }
  .cid-uKyrdopB3I .btn {
    display: flex;
  }
  .cid-uKyrdopB3I button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKyrdopB3I .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKyrdopB3I .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKyrdopB3I .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKyrdopB3I .navbar-collapse.collapsing,
  .cid-uKyrdopB3I .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKyrdopB3I .navbar-collapse.collapsing .navbar-nav,
  .cid-uKyrdopB3I .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKyrdopB3I .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKyrdopB3I .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKyrdopB3I .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKyrdopB3I .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKyrdopB3I .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKyrdopB3I .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKyrdopB3I .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKyrdopB3I .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKyrdopB3I .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKyrdopB3I .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKyrdopB3I .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKyrdopB3I .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKyrdopB3I .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyrdopB3I .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyrdopB3I .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKyrdopB3I .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKyrdopB3I .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKyrdopB3I .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKyrdopB3I .navbar-toggler {
    display: none;
  }
}
.cid-uKyrdopB3I .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKyrdopB3I .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKyrdopB3I .navbar-short {
  background: transparent;
}
.cid-uKyrdopB3I .navbar-short .menu-content-top,
.cid-uKyrdopB3I .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKyrdopB3I .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyrdopB3I .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKyrdopB3I .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKyrdopB3I .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKyrdopB3I .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyrdopB3I .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKyrdopB3I .dropdown {
  color: #0f004e !important;
}
.cid-uKyrdopB3I .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyrdopB3I .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKyrdopB3I .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKyrdopB3I .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKyrdopB3I .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKyrdopB3I .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKyrdopB3I .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKyrdopB3I .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKyrdopB3I .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKyrdopB3I button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKyrdopB3I button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyrdopB3I button.navbar-toggler:focus {
  outline: none;
}
.cid-uKyrdopB3I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKyrdopB3I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyrdopB3I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyrdopB3I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyrdopB3I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyrdopB3I nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKyrdopB3I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKyrdopB3I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyrdopB3I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyrdopB3I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyrdopB3I .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyrdopB3I .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKyrdopB3I .collapsed .btn {
  display: flex;
}
.cid-uKyrdopB3I .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKyrdopB3I .collapsed .navbar-collapse.collapsing,
.cid-uKyrdopB3I .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKyrdopB3I .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKyrdopB3I .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKyrdopB3I .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKyrdopB3I .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKyrdopB3I .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKyrdopB3I .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKyrdopB3I .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKyrdopB3I .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKyrdopB3I .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKyrdopB3I .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKyrdopB3I .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyrdopB3I .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKyrdopB3I .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyrdopB3I .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKyrdopB3I .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKyrdopB3I .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKyrdopB3I .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKyrdopB3I .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKyrdopB3I .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKyrdopB3I .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKyrdopB3I .nav-link:focus {
  outline: none;
}
.cid-uKyrdopB3I .navbar-toggler {
  position: relative;
}
.cid-uKyrdopB3I .dropdown-item.active,
.cid-uKyrdopB3I .dropdown-item:active {
  color: auto;
}
.cid-uKyrdopB3I .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKyrdp8TYQ {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/sonriendo-equipo-de-pie-en-la-sala.jpeg");
}
.cid-uKyrdp8TYQ .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKyrdp8TYQ .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKyrdp8TYQ .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKyrdp8TYQ .mbr-text {
  color: #6d7a8c;
}
.cid-uKyrdp8TYQ .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKyrdp8TYQ .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKyrdp8TYQ .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKyrdp8TYQ .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKyrdp8TYQ .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKyrdp8TYQ .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKyrdp8TYQ .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKyrdp8TYQ .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKyrdp8TYQ .separator,
  .cid-uKyrdp8TYQ .sep-holder,
  .cid-uKyrdp8TYQ .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKyrdp8TYQ .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKyrdpKyQw {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKyrdpKyQw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uKyrdpKyQw .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-uKyrdpKyQw textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-uKyrdpKyQw .form-row {
    flex-direction: column;
  }
}
.cid-uKyrdpKyQw h4 {
  margin-bottom: 2rem;
}
.cid-uKyrdpKyQw .form-control,
.cid-uKyrdpKyQw .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-uKyrdpKyQw .form-control,
.cid-uKyrdpKyQw .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uKyrdpKyQw .form-control::-webkit-input-placeholder,
.cid-uKyrdpKyQw .field-input::-webkit-input-placeholder,
.cid-uKyrdpKyQw .form-control::-webkit-input-placeholder,
.cid-uKyrdpKyQw .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-uKyrdpKyQw .form-control:-moz-placeholder,
.cid-uKyrdpKyQw .field-input:-moz-placeholder,
.cid-uKyrdpKyQw .form-control:-moz-placeholder,
.cid-uKyrdpKyQw .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-uKyrdpKyQw .form-control:hover,
.cid-uKyrdpKyQw .field-input:hover,
.cid-uKyrdpKyQw .form-control:focus,
.cid-uKyrdpKyQw .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-uKyrdpKyQw .form-control:hover::-webkit-input-placeholder,
.cid-uKyrdpKyQw .field-input:hover::-webkit-input-placeholder,
.cid-uKyrdpKyQw .form-control:focus::-webkit-input-placeholder,
.cid-uKyrdpKyQw .field-input:focus::-webkit-input-placeholder,
.cid-uKyrdpKyQw .form-control:hover::-webkit-input-placeholder,
.cid-uKyrdpKyQw .field-input:hover::-webkit-input-placeholder,
.cid-uKyrdpKyQw .form-control:focus::-webkit-input-placeholder,
.cid-uKyrdpKyQw .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-uKyrdpKyQw .form-control:hover:-moz-placeholder,
.cid-uKyrdpKyQw .field-input:hover:-moz-placeholder,
.cid-uKyrdpKyQw .form-control:focus:-moz-placeholder,
.cid-uKyrdpKyQw .field-input:focus:-moz-placeholder,
.cid-uKyrdpKyQw .form-control:hover:-moz-placeholder,
.cid-uKyrdpKyQw .field-input:hover:-moz-placeholder,
.cid-uKyrdpKyQw .form-control:focus:-moz-placeholder,
.cid-uKyrdpKyQw .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-uKyrdpKyQw .jq-number__spin:hover,
.cid-uKyrdpKyQw .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uKyrdpKyQw .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uKyrdpKyQw .jq-selectbox li,
.cid-uKyrdpKyQw .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-uKyrdpKyQw .jq-selectbox li:hover,
.cid-uKyrdpKyQw .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-uKyrdpKyQw .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uKyrdpKyQw .jq-number__spin.minus:hover:after,
.cid-uKyrdpKyQw .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-uKyrdpKyQw .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uKyrdpKyQw .jq-number__spin.minus:after,
.cid-uKyrdpKyQw .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-uKyrdpKyQw input::-webkit-clear-button {
  display: none;
}
.cid-uKyrdpKyQw input::-webkit-inner-spin-button {
  display: none;
}
.cid-uKyrdpKyQw input::-webkit-outer-spin-button {
  display: none;
}
.cid-uKyrdpKyQw input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uKyrdpKyQw H4 {
  color: #103178;
}
.cid-uKyrdqIOtY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKyrdqIOtY .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKyrdqIOtY .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKyrdqIOtY .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKyrdqIOtY .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKyrdqIOtY .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKyrdqIOtY .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKyrdqIOtY .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKyrdqIOtY .input-group-btn {
  padding-left: 0;
}
.cid-uKyrdqIOtY .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKyrdqIOtY .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKyrdqIOtY .mbr-text {
  color: #444;
}
.cid-uKyrdqIOtY h5 {
  margin-bottom: 0;
}
.cid-uKyrdqIOtY .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKyrdqIOtY .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKyrdqIOtY .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKyrdqIOtY .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKyrdqIOtY .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-uKyrdqIOtY .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKyrdqIOtY .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKyrdqIOtY .social-list a:hover {
  opacity: 0.4;
}
.cid-uKyrdqIOtY .media-container-row > div {
  padding: 0px;
}
.cid-uKyrdqIOtY .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKyrdqIOtY .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKyrdqIOtY .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKyrdqIOtY .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKyrdqIOtY .social-list,
  .cid-uKyrdqIOtY .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKyrdqIOtY h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKyrdqIOtY .form-group {
    max-width: 180px;
  }
}
.cid-uKyrdqIOtY .links span {
  color: #9e9e9e;
}
.cid-uKyrdqIOtY .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKyrdqIOtY .logo-title {
  text-align: center;
}
.cid-uKyrdqIOtY .logo-title,
.cid-uKyrdqIOtY .logo {
  color: #ffffff;
}
.cid-uKyyTJugla .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKyyTJugla .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKyyTJugla .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKyyTJugla .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKyyTJugla .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyyTJugla .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKyyTJugla .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKyyTJugla .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyyTJugla .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKyyTJugla .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyyTJugla .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKyyTJugla .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKyyTJugla .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKyyTJugla .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKyyTJugla .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKyyTJugla a {
  font-style: normal;
}
.cid-uKyyTJugla .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKyyTJugla .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKyyTJugla .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKyyTJugla .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKyyTJugla .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKyyTJugla .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKyyTJugla .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyyTJugla .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKyyTJugla .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .menu-content-right {
    display: none;
  }
}
.cid-uKyyTJugla .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKyyTJugla .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKyyTJugla .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKyyTJugla .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKyyTJugla .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKyyTJugla .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKyyTJugla .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKyyTJugla .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .right-box {
    display: none;
  }
}
.cid-uKyyTJugla .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyyTJugla .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKyyTJugla .content-text {
  margin-bottom: 0;
}
.cid-uKyyTJugla .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKyyTJugla .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKyyTJugla .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKyyTJugla .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKyyTJugla .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKyyTJugla .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKyyTJugla .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKyyTJugla .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKyyTJugla .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKyyTJugla .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKyyTJugla .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKyyTJugla .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKyyTJugla .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKyyTJugla .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKyyTJugla .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyyTJugla .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyyTJugla .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKyyTJugla .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKyyTJugla .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKyyTJugla .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyyTJugla .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyyTJugla .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKyyTJugla .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKyyTJugla .menu-content-top.show {
  display: block;
}
.cid-uKyyTJugla .pre-header-right {
  align-self: center;
}
.cid-uKyyTJugla .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKyyTJugla .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKyyTJugla .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKyyTJugla .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKyyTJugla .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKyyTJugla .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKyyTJugla .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKyyTJugla .navbar .menu-content-top {
    display: none;
  }
  .cid-uKyyTJugla .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKyyTJugla .dropdown-item:before {
    display: none;
  }
  .cid-uKyyTJugla .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKyyTJugla img {
    height: 3.8rem !important;
  }
  .cid-uKyyTJugla .btn {
    display: flex;
  }
  .cid-uKyyTJugla button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKyyTJugla .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKyyTJugla .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKyyTJugla .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKyyTJugla .navbar-collapse.collapsing,
  .cid-uKyyTJugla .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKyyTJugla .navbar-collapse.collapsing .navbar-nav,
  .cid-uKyyTJugla .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKyyTJugla .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKyyTJugla .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKyyTJugla .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKyyTJugla .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKyyTJugla .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKyyTJugla .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKyyTJugla .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKyyTJugla .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKyyTJugla .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKyyTJugla .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKyyTJugla .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKyyTJugla .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKyyTJugla .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyyTJugla .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyyTJugla .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKyyTJugla .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKyyTJugla .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKyyTJugla .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKyyTJugla .navbar-toggler {
    display: none;
  }
}
.cid-uKyyTJugla .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKyyTJugla .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKyyTJugla .navbar-short {
  background: transparent;
}
.cid-uKyyTJugla .navbar-short .menu-content-top,
.cid-uKyyTJugla .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKyyTJugla .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyyTJugla .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKyyTJugla .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKyyTJugla .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKyyTJugla .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyyTJugla .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKyyTJugla .dropdown {
  color: #0f004e !important;
}
.cid-uKyyTJugla .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyyTJugla .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKyyTJugla .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKyyTJugla .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKyyTJugla .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKyyTJugla .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKyyTJugla .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKyyTJugla .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKyyTJugla .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKyyTJugla button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKyyTJugla button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyyTJugla button.navbar-toggler:focus {
  outline: none;
}
.cid-uKyyTJugla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKyyTJugla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyyTJugla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyyTJugla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyyTJugla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyyTJugla nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKyyTJugla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKyyTJugla nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyyTJugla nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyyTJugla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyyTJugla .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyyTJugla .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKyyTJugla .collapsed .btn {
  display: flex;
}
.cid-uKyyTJugla .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKyyTJugla .collapsed .navbar-collapse.collapsing,
.cid-uKyyTJugla .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKyyTJugla .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKyyTJugla .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKyyTJugla .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKyyTJugla .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKyyTJugla .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKyyTJugla .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKyyTJugla .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKyyTJugla .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKyyTJugla .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKyyTJugla .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKyyTJugla .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyyTJugla .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKyyTJugla .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyyTJugla .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKyyTJugla .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKyyTJugla .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKyyTJugla .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKyyTJugla .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKyyTJugla .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKyyTJugla .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKyyTJugla .nav-link:focus {
  outline: none;
}
.cid-uKyyTJugla .navbar-toggler {
  position: relative;
}
.cid-uKyyTJugla .dropdown-item.active,
.cid-uKyyTJugla .dropdown-item:active {
  color: auto;
}
.cid-uKyyTJugla .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKyyTKrXmm {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/trabajador-leyendo-noticias-con-la-tableta.jpeg");
}
.cid-uKyyTKrXmm .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKyyTKrXmm .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKyyTKrXmm .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKyyTKrXmm .mbr-text {
  color: #6d7a8c;
}
.cid-uKyyTKrXmm .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKyyTKrXmm .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKyyTKrXmm .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKyyTKrXmm .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKyyTKrXmm .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKyyTKrXmm .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKyyTKrXmm .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKyyTKrXmm .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKyyTKrXmm .separator,
  .cid-uKyyTKrXmm .sep-holder,
  .cid-uKyyTKrXmm .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKyyTKrXmm .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKyziilAHB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKyziilAHB .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-uKyziilAHB .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uKyziilAHB .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-uKyziilAHB .contents .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-uKyziilAHB .contents .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
  letter-spacing: 0;
  line-height: 1.5;
}
.cid-uKyziilAHB .card-wrapper {
  height: 100%;
}
.cid-uKyziilAHB .card-wrapper .card-box {
  padding-top: 2rem;
}
.cid-uKyziilAHB .card-wrapper .card-box .card-title {
  color: #28303f;
  transition: 0.3s all;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-uKyziilAHB .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  transition: 0.3s all;
}
.cid-uKyziilAHB .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: -0.5px;
}
.cid-uKyziilAHB .card-wrapper .card-box .card-subtitle {
  color: #a0a9b6;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-uKyziilAHB .card-wrapper .card-box .card-subtitle.display-4 {
  font-size: 12px;
}
.cid-uKyziilAHB .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uKyziilAHB .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uKyziilAHB .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-uKyziilAHB .card-wrapper .card-img {
  position: relative;
}
.cid-uKyziilAHB .card-wrapper .card-img img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-uKyziilAHB .card-wrapper .card-img .meta-category {
  background-color: #0f004e;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  bottom: -15px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-uKyziilAHB .card-wrapper .card-img .meta-category .btn {
  font-weight: 600 !important;
}
.cid-uKyziilAHB .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-uKyziilAHB .card-wrapper .mbr-link-btn .btn {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-uKyziilAHB .card-wrapper .mbr-link-btn .btn.display-4 {
  font-size: 12px;
}
.cid-uKyziilAHB .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-uKyziilAHB .btn[class*='-outline'] span {
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  transition: padding 0.3s !important;
}
.cid-uKyziilAHB .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-uKyziilAHB .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #4f87fb !important;
  box-shadow: none !important;
}
.cid-uKyziilAHB .btn[class*='-outline']:active,
.cid-uKyziilAHB .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-uKyyTOrTwS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKyyTOrTwS .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKyyTOrTwS .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKyyTOrTwS .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKyyTOrTwS .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKyyTOrTwS .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKyyTOrTwS .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKyyTOrTwS .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKyyTOrTwS .input-group-btn {
  padding-left: 0;
}
.cid-uKyyTOrTwS .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKyyTOrTwS .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKyyTOrTwS .mbr-text {
  color: #444;
}
.cid-uKyyTOrTwS h5 {
  margin-bottom: 0;
}
.cid-uKyyTOrTwS .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKyyTOrTwS .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKyyTOrTwS .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKyyTOrTwS .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKyyTOrTwS .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-uKyyTOrTwS .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKyyTOrTwS .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKyyTOrTwS .social-list a:hover {
  opacity: 0.4;
}
.cid-uKyyTOrTwS .media-container-row > div {
  padding: 0px;
}
.cid-uKyyTOrTwS .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKyyTOrTwS .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKyyTOrTwS .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKyyTOrTwS .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKyyTOrTwS .social-list,
  .cid-uKyyTOrTwS .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKyyTOrTwS h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKyyTOrTwS .form-group {
    max-width: 180px;
  }
}
.cid-uKyyTOrTwS .links span {
  color: #9e9e9e;
}
.cid-uKyyTOrTwS .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKyyTOrTwS .logo-title {
  text-align: center;
}
.cid-uKyyTOrTwS .logo-title,
.cid-uKyyTOrTwS .logo {
  color: #ffffff;
}
.cid-uKyzEBZNi5 .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKyzEBZNi5 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKyzEBZNi5 .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKyzEBZNi5 .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKyzEBZNi5 .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyzEBZNi5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKyzEBZNi5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKyzEBZNi5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyzEBZNi5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKyzEBZNi5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyzEBZNi5 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKyzEBZNi5 .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKyzEBZNi5 .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKyzEBZNi5 .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKyzEBZNi5 .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKyzEBZNi5 a {
  font-style: normal;
}
.cid-uKyzEBZNi5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKyzEBZNi5 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKyzEBZNi5 .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKyzEBZNi5 .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKyzEBZNi5 .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKyzEBZNi5 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKyzEBZNi5 .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyzEBZNi5 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKyzEBZNi5 .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .menu-content-right {
    display: none;
  }
}
.cid-uKyzEBZNi5 .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKyzEBZNi5 .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKyzEBZNi5 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKyzEBZNi5 .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKyzEBZNi5 .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKyzEBZNi5 .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKyzEBZNi5 .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKyzEBZNi5 .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .right-box {
    display: none;
  }
}
.cid-uKyzEBZNi5 .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyzEBZNi5 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKyzEBZNi5 .content-text {
  margin-bottom: 0;
}
.cid-uKyzEBZNi5 .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKyzEBZNi5 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKyzEBZNi5 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKyzEBZNi5 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKyzEBZNi5 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKyzEBZNi5 .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKyzEBZNi5 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKyzEBZNi5 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKyzEBZNi5 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKyzEBZNi5 .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKyzEBZNi5 .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKyzEBZNi5 .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKyzEBZNi5 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKyzEBZNi5 .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKyzEBZNi5 .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyzEBZNi5 .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyzEBZNi5 .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKyzEBZNi5 .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKyzEBZNi5 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKyzEBZNi5 .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyzEBZNi5 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyzEBZNi5 .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKyzEBZNi5 .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKyzEBZNi5 .menu-content-top.show {
  display: block;
}
.cid-uKyzEBZNi5 .pre-header-right {
  align-self: center;
}
.cid-uKyzEBZNi5 .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKyzEBZNi5 .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKyzEBZNi5 .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKyzEBZNi5 .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKyzEBZNi5 .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKyzEBZNi5 .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKyzEBZNi5 .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKyzEBZNi5 .navbar .menu-content-top {
    display: none;
  }
  .cid-uKyzEBZNi5 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKyzEBZNi5 .dropdown-item:before {
    display: none;
  }
  .cid-uKyzEBZNi5 .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKyzEBZNi5 img {
    height: 3.8rem !important;
  }
  .cid-uKyzEBZNi5 .btn {
    display: flex;
  }
  .cid-uKyzEBZNi5 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKyzEBZNi5 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKyzEBZNi5 .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKyzEBZNi5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKyzEBZNi5 .navbar-collapse.collapsing,
  .cid-uKyzEBZNi5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKyzEBZNi5 .navbar-collapse.collapsing .navbar-nav,
  .cid-uKyzEBZNi5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKyzEBZNi5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKyzEBZNi5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKyzEBZNi5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKyzEBZNi5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKyzEBZNi5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKyzEBZNi5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKyzEBZNi5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKyzEBZNi5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKyzEBZNi5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKyzEBZNi5 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKyzEBZNi5 .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKyzEBZNi5 .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKyzEBZNi5 .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyzEBZNi5 .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyzEBZNi5 .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKyzEBZNi5 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKyzEBZNi5 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKyzEBZNi5 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKyzEBZNi5 .navbar-toggler {
    display: none;
  }
}
.cid-uKyzEBZNi5 .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKyzEBZNi5 .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKyzEBZNi5 .navbar-short {
  background: transparent;
}
.cid-uKyzEBZNi5 .navbar-short .menu-content-top,
.cid-uKyzEBZNi5 .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKyzEBZNi5 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyzEBZNi5 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKyzEBZNi5 .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKyzEBZNi5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKyzEBZNi5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyzEBZNi5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKyzEBZNi5 .dropdown {
  color: #0f004e !important;
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyzEBZNi5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKyzEBZNi5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKyzEBZNi5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKyzEBZNi5 .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKyzEBZNi5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKyzEBZNi5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKyzEBZNi5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKyzEBZNi5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKyzEBZNi5 button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKyzEBZNi5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyzEBZNi5 button.navbar-toggler:focus {
  outline: none;
}
.cid-uKyzEBZNi5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKyzEBZNi5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyzEBZNi5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyzEBZNi5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyzEBZNi5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyzEBZNi5 nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKyzEBZNi5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKyzEBZNi5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyzEBZNi5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyzEBZNi5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyzEBZNi5 .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyzEBZNi5 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKyzEBZNi5 .collapsed .btn {
  display: flex;
}
.cid-uKyzEBZNi5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.collapsing,
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKyzEBZNi5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKyzEBZNi5 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKyzEBZNi5 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKyzEBZNi5 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyzEBZNi5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKyzEBZNi5 .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyzEBZNi5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKyzEBZNi5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKyzEBZNi5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKyzEBZNi5 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKyzEBZNi5 .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKyzEBZNi5 .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKyzEBZNi5 .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKyzEBZNi5 .nav-link:focus {
  outline: none;
}
.cid-uKyzEBZNi5 .navbar-toggler {
  position: relative;
}
.cid-uKyzEBZNi5 .dropdown-item.active,
.cid-uKyzEBZNi5 .dropdown-item:active {
  color: auto;
}
.cid-uKyzEBZNi5 .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKyzECRmvk {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/sonriendo-equipo-de-pie-en-la-sala.jpeg");
}
.cid-uKyzECRmvk .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKyzECRmvk .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKyzECRmvk .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKyzECRmvk .mbr-text {
  color: #6d7a8c;
}
.cid-uKyzECRmvk .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKyzECRmvk .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKyzECRmvk .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKyzECRmvk .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKyzECRmvk .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKyzECRmvk .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKyzECRmvk .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKyzECRmvk .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKyzECRmvk .separator,
  .cid-uKyzECRmvk .sep-holder,
  .cid-uKyzECRmvk .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKyzECRmvk .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKyBJObxHn {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uKyBJObxHn .container,
.cid-uKyBJObxHn .container-fluid {
  pointer-events: none;
  z-index: 1;
}
.cid-uKyBJObxHn .icon__wrap,
.cid-uKyBJObxHn .mbr-section-title,
.cid-uKyBJObxHn .mbr-text,
.cid-uKyBJObxHn .items__block,
.cid-uKyBJObxHn .mbr-section-btn,
.cid-uKyBJObxHn .image {
  pointer-events: all;
}
.cid-uKyBJObxHn .image {
  text-align: center;
}
.cid-uKyBJObxHn .image img {
  max-height: 700px;
  width: 72%;
  object-fit: cover;
}
.cid-uKyBJObxHn .mbr-section-title {
  color: #233d63;
  margin-bottom: 40px;
}
.cid-uKyBJObxHn .mbr-section-title .verline {
  margin: 0 15px;
  display: inline-block;
  height: 3px;
  border-radius: 5px;
  width: 100px;
  vertical-align: middle;
  background-color: currentColor;
}
.cid-uKyBJObxHn .mbr-text {
  margin-bottom: 40px;
}
.cid-uKyBJObxHn .items__block .item .mbr-iconfont {
  color: #e6ecf2;
  margin-right: 10px;
  font-size: 14px;
}
.cid-uKyBJObxHn .mbr-section-btn {
  margin-top: 55px;
}
.cid-uKyBJObxHn .icon__block {
  background: linear-gradient(135deg, rgba(255, 100, 0, 0.54) 0%, rgba(255, 100, 0, 0.85) 60%, #ff6400 100%);
}
.cid-uKyBJObxHn .icon__wrap {
  width: 100%;
  margin-bottom: 23px;
}
.cid-uKyBJObxHn .icon__wrap .icon__block {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 10px;
}
.cid-uKyBJObxHn .icon__wrap .icon__block::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-45deg);
}
.cid-uKyBJObxHn .icon__wrap .icon__block::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
}
.cid-uKyBJObxHn .icon__wrap .icon__block .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  position: relative;
  z-index: 10;
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-uKyBJObxHn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKyBJObxHn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKyzEEKN9o {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKyzEEKN9o .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKyzEEKN9o .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKyzEEKN9o .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKyzEEKN9o .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKyzEEKN9o .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKyzEEKN9o .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKyzEEKN9o .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKyzEEKN9o .input-group-btn {
  padding-left: 0;
}
.cid-uKyzEEKN9o .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKyzEEKN9o .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKyzEEKN9o .mbr-text {
  color: #444;
}
.cid-uKyzEEKN9o h5 {
  margin-bottom: 0;
}
.cid-uKyzEEKN9o .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKyzEEKN9o .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKyzEEKN9o .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKyzEEKN9o .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKyzEEKN9o .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-uKyzEEKN9o .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKyzEEKN9o .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKyzEEKN9o .social-list a:hover {
  opacity: 0.4;
}
.cid-uKyzEEKN9o .media-container-row > div {
  padding: 0px;
}
.cid-uKyzEEKN9o .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKyzEEKN9o .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKyzEEKN9o .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKyzEEKN9o .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKyzEEKN9o .social-list,
  .cid-uKyzEEKN9o .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKyzEEKN9o h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKyzEEKN9o .form-group {
    max-width: 180px;
  }
}
.cid-uKyzEEKN9o .links span {
  color: #9e9e9e;
}
.cid-uKyzEEKN9o .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKyzEEKN9o .logo-title {
  text-align: center;
}
.cid-uKyzEEKN9o .logo-title,
.cid-uKyzEEKN9o .logo {
  color: #ffffff;
}
.cid-uKyEesAjZS .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKyEesAjZS .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKyEesAjZS .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKyEesAjZS .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKyEesAjZS .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyEesAjZS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKyEesAjZS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKyEesAjZS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyEesAjZS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKyEesAjZS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKyEesAjZS .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKyEesAjZS .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKyEesAjZS .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKyEesAjZS .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKyEesAjZS .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKyEesAjZS a {
  font-style: normal;
}
.cid-uKyEesAjZS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKyEesAjZS .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKyEesAjZS .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKyEesAjZS .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKyEesAjZS .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKyEesAjZS .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKyEesAjZS .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyEesAjZS .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKyEesAjZS .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .menu-content-right {
    display: none;
  }
}
.cid-uKyEesAjZS .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKyEesAjZS .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKyEesAjZS .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKyEesAjZS .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKyEesAjZS .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uKyEesAjZS .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKyEesAjZS .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKyEesAjZS .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .right-box {
    display: none;
  }
}
.cid-uKyEesAjZS .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyEesAjZS .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKyEesAjZS .content-text {
  margin-bottom: 0;
}
.cid-uKyEesAjZS .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKyEesAjZS .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKyEesAjZS .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKyEesAjZS .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKyEesAjZS .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKyEesAjZS .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKyEesAjZS .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKyEesAjZS .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKyEesAjZS .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKyEesAjZS .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKyEesAjZS .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKyEesAjZS .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKyEesAjZS .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKyEesAjZS .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKyEesAjZS .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyEesAjZS .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyEesAjZS .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKyEesAjZS .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKyEesAjZS .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKyEesAjZS .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKyEesAjZS .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKyEesAjZS .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKyEesAjZS .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKyEesAjZS .menu-content-top.show {
  display: block;
}
.cid-uKyEesAjZS .pre-header-right {
  align-self: center;
}
.cid-uKyEesAjZS .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKyEesAjZS .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uKyEesAjZS .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uKyEesAjZS .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKyEesAjZS .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKyEesAjZS .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKyEesAjZS .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKyEesAjZS .navbar .menu-content-top {
    display: none;
  }
  .cid-uKyEesAjZS .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKyEesAjZS .dropdown-item:before {
    display: none;
  }
  .cid-uKyEesAjZS .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKyEesAjZS img {
    height: 3.8rem !important;
  }
  .cid-uKyEesAjZS .btn {
    display: flex;
  }
  .cid-uKyEesAjZS button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKyEesAjZS .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKyEesAjZS .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKyEesAjZS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKyEesAjZS .navbar-collapse.collapsing,
  .cid-uKyEesAjZS .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKyEesAjZS .navbar-collapse.collapsing .navbar-nav,
  .cid-uKyEesAjZS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKyEesAjZS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKyEesAjZS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKyEesAjZS .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKyEesAjZS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKyEesAjZS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKyEesAjZS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKyEesAjZS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKyEesAjZS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKyEesAjZS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKyEesAjZS .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKyEesAjZS .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKyEesAjZS .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKyEesAjZS .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyEesAjZS .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKyEesAjZS .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKyEesAjZS .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKyEesAjZS .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKyEesAjZS .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKyEesAjZS .navbar-toggler {
    display: none;
  }
}
.cid-uKyEesAjZS .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKyEesAjZS .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKyEesAjZS .navbar-short {
  background: transparent;
}
.cid-uKyEesAjZS .navbar-short .menu-content-top,
.cid-uKyEesAjZS .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKyEesAjZS .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKyEesAjZS .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKyEesAjZS .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKyEesAjZS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKyEesAjZS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyEesAjZS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKyEesAjZS .dropdown {
  color: #0f004e !important;
}
.cid-uKyEesAjZS .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKyEesAjZS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKyEesAjZS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKyEesAjZS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uKyEesAjZS .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKyEesAjZS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKyEesAjZS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKyEesAjZS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKyEesAjZS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKyEesAjZS button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKyEesAjZS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyEesAjZS button.navbar-toggler:focus {
  outline: none;
}
.cid-uKyEesAjZS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKyEesAjZS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyEesAjZS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyEesAjZS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKyEesAjZS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyEesAjZS nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKyEesAjZS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKyEesAjZS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyEesAjZS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKyEesAjZS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKyEesAjZS .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyEesAjZS .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKyEesAjZS .collapsed .btn {
  display: flex;
}
.cid-uKyEesAjZS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKyEesAjZS .collapsed .navbar-collapse.collapsing,
.cid-uKyEesAjZS .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKyEesAjZS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKyEesAjZS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKyEesAjZS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKyEesAjZS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKyEesAjZS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKyEesAjZS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKyEesAjZS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKyEesAjZS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKyEesAjZS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uKyEesAjZS .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKyEesAjZS .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKyEesAjZS .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKyEesAjZS .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKyEesAjZS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKyEesAjZS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKyEesAjZS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKyEesAjZS .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKyEesAjZS .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKyEesAjZS .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKyEesAjZS .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKyEesAjZS .nav-link:focus {
  outline: none;
}
.cid-uKyEesAjZS .navbar-toggler {
  position: relative;
}
.cid-uKyEesAjZS .dropdown-item.active,
.cid-uKyEesAjZS .dropdown-item:active {
  color: auto;
}
.cid-uKyEesAjZS .dropdown-item:hover {
  color: #92b73b;
}
.cid-uKyEetmrfZ {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/sonriendo-equipo-de-pie-en-la-sala.jpeg");
}
.cid-uKyEetmrfZ .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uKyEetmrfZ .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uKyEetmrfZ .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uKyEetmrfZ .mbr-text {
  color: #6d7a8c;
}
.cid-uKyEetmrfZ .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uKyEetmrfZ .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uKyEetmrfZ .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uKyEetmrfZ .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uKyEetmrfZ .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uKyEetmrfZ .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uKyEetmrfZ .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uKyEetmrfZ .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uKyEetmrfZ .separator,
  .cid-uKyEetmrfZ .sep-holder,
  .cid-uKyEetmrfZ .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uKyEetmrfZ .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uKyGJFnflv {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKyGJFnflv .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uKyGJFnflv .row {
    flex-direction: column-reverse;
  }
  .cid-uKyGJFnflv .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uKyGJFnflv .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uKyGJFnflv .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uKyGJFnflv .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-uKyGJFnflv .card-title {
  color: #36187d;
}
.cid-uKyGJFnflv .mbr-text,
.cid-uKyGJFnflv .mbr-section-btn {
  color: #6c758f;
}
.cid-uKyGJFnflv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKyGJFnflv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBE7mFu6T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0f004e;
}
.cid-uKBE7mFu6T .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uKBE7mFu6T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKBE7mFu6T img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uKBE7mFu6T img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uKBE7mFu6T img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uKBE7mFu6T .text-wrapper {
    padding: 2rem;
  }
}
.cid-uKBE7mFu6T .mbr-section-subtitle {
  color: #fa4529;
}
.cid-uKBE7mFu6T .mbr-text {
  color: #ffffff;
}
.cid-uKBE7mFu6T .mbr-section-title {
  color: #ffffff;
}
.cid-uKyHMHtaei {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f5f7fa;
}
.cid-uKyHMHtaei .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uKyHMHtaei .card-wrapper {
  min-height: 220px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 3rem 2rem;
  background: #0f004e;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uKyHMHtaei .card-wrapper:hover {
  background: #92b73b;
}
.cid-uKyHMHtaei .card-wrapper:hover .link {
  color: #ffffff;
}
.cid-uKyHMHtaei .card-wrapper:hover .link:before {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uKyHMHtaei .card-wrapper {
    background: #92b73b;
  }
  .cid-uKyHMHtaei .card-wrapper .link {
    color: #ffffff;
  }
  .cid-uKyHMHtaei .card-wrapper .link:before {
    color: #ffffff;
  }
}
.cid-uKyHMHtaei .card-title {
  color: #ffffff;
}
.cid-uKyHMHtaei .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uKyHMHtaei .link {
  padding-right: 2.5rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  width: fit-content;
}
.cid-uKyHMHtaei .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1.2rem;
  color: #92b73b;
  width: 30px;
  font-weight: 700;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  font-family: 'Moririse2' !important;
  content: "\e909";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-uKyHMHtaei .link,
.cid-uKyHMHtaei .link-wrap {
  color: #3098f3;
}
.cid-uKyHMHtaei .link-wrap2 {
  display: inline-block;
  width: 100%;
}
.cid-uKyHMHtaei .link2 {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-uKyHMHtaei .link2:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #0f004e;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-uKyHMHtaei .link2:hover:before {
  background: #6d7a8c;
}
.cid-uKyHMHtaei .mbr-section-title {
  text-align: center;
}
.cid-uKyHMHtaei .mbr-section-subtitle {
  text-align: center;
}
.cid-uKyJW3gnYX {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/male-and-female-business-people-working-on-tablet-in-office-1500x1000.jpeg");
}
.cid-uKyJW3gnYX .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-uKyJW3gnYX .align-center {
    text-align: center;
  }
}
.cid-uKyX0aGKy2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/conservacion-ambiental-jardin-ninos-1500x1000.jpg");
}
.cid-uKyX0aGKy2 .card-text,
.cid-uKyX0aGKy2 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uKyX0aGKy2 .main,
.cid-uKyX0aGKy2 .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #f4f8fa;
}
.cid-uKyX0aGKy2 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uKyX0aGKy2 .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uKyX0aGKy2 .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKyX0aGKy2 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKyX0aGKy2 .text-element {
  padding: 3rem 2rem;
}
.cid-uKyX0aGKy2 .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-uKyX0aGKy2 .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-uKyX0aGKy2 .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uKyX0aGKy2 .main-reverse {
    flex-direction: row;
    -webkit-flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-uKyX0aGKy2 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-uKyX0aGKy2 .image-element,
  .cid-uKyX0aGKy2 .text-element {
    margin-bottom: 0;
  }
  .cid-uKyX0aGKy2 .main:first-child {
    padding-top: 0;
  }
}
.cid-uKyX0aGKy2 .mbr-title,
.cid-uKyX0aGKy2 .card-img {
  color: #0f004e;
}
.cid-uKyX0aGKy2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKyZnrdL8e {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKyZnrdL8e img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-uKyZnrdL8e .mbr-section-title {
  text-align: left;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uKyZnrdL8e .mbr-text {
  color: #6d7a8c;
  line-height: 1.5;
}
.cid-uKyZnrdL8e .mbr-list {
  margin-top: 35px;
  color: #6d7a8c;
}
.cid-uKyZnrdL8e .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uKyZnrdL8e .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-uKyEeuJAeX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uKyEeuJAeX .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uKyEeuJAeX .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uKyEeuJAeX .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uKyEeuJAeX .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uKyEeuJAeX .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uKyEeuJAeX .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uKyEeuJAeX .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uKyEeuJAeX .input-group-btn {
  padding-left: 0;
}
.cid-uKyEeuJAeX .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uKyEeuJAeX .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uKyEeuJAeX .mbr-text {
  color: #444;
}
.cid-uKyEeuJAeX h5 {
  margin-bottom: 0;
}
.cid-uKyEeuJAeX .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uKyEeuJAeX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKyEeuJAeX .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uKyEeuJAeX .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uKyEeuJAeX .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-uKyEeuJAeX .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKyEeuJAeX .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKyEeuJAeX .social-list a:hover {
  opacity: 0.4;
}
.cid-uKyEeuJAeX .media-container-row > div {
  padding: 0px;
}
.cid-uKyEeuJAeX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uKyEeuJAeX .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uKyEeuJAeX .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKyEeuJAeX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uKyEeuJAeX .social-list,
  .cid-uKyEeuJAeX .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uKyEeuJAeX h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uKyEeuJAeX .form-group {
    max-width: 180px;
  }
}
.cid-uKyEeuJAeX .links span {
  color: #9e9e9e;
}
.cid-uKyEeuJAeX .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKyEeuJAeX .logo-title {
  text-align: center;
}
.cid-uKyEeuJAeX .logo-title,
.cid-uKyEeuJAeX .logo {
  color: #ffffff;
}
.cid-uL5FX82jCU .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uL5FX82jCU .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uL5FX82jCU .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uL5FX82jCU .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uL5FX82jCU .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uL5FX82jCU .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uL5FX82jCU .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uL5FX82jCU .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uL5FX82jCU .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uL5FX82jCU .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uL5FX82jCU .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uL5FX82jCU .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uL5FX82jCU .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uL5FX82jCU .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uL5FX82jCU .navbar-fixed-top.opened {
  position: relative;
}
.cid-uL5FX82jCU a {
  font-style: normal;
}
.cid-uL5FX82jCU .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uL5FX82jCU .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uL5FX82jCU .nav-item .nav-link {
  color: #ffffff;
}
.cid-uL5FX82jCU .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uL5FX82jCU .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uL5FX82jCU .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uL5FX82jCU .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uL5FX82jCU .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uL5FX82jCU .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .menu-content-right {
    display: none;
  }
}
.cid-uL5FX82jCU .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uL5FX82jCU .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uL5FX82jCU .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uL5FX82jCU .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uL5FX82jCU .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #0f004e;
}
.cid-uL5FX82jCU .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uL5FX82jCU .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uL5FX82jCU .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .right-box {
    display: none;
  }
}
.cid-uL5FX82jCU .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uL5FX82jCU .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uL5FX82jCU .content-text {
  margin-bottom: 0;
}
.cid-uL5FX82jCU .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uL5FX82jCU .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0f004e;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uL5FX82jCU .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uL5FX82jCU .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uL5FX82jCU .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uL5FX82jCU .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uL5FX82jCU .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uL5FX82jCU .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uL5FX82jCU .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uL5FX82jCU .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uL5FX82jCU .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uL5FX82jCU .nav-dropdown .link {
  font-weight: 600;
}
.cid-uL5FX82jCU .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uL5FX82jCU .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uL5FX82jCU .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uL5FX82jCU .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uL5FX82jCU .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uL5FX82jCU .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uL5FX82jCU .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uL5FX82jCU .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uL5FX82jCU .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uL5FX82jCU .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uL5FX82jCU .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uL5FX82jCU .menu-content-top.show {
  display: block;
}
.cid-uL5FX82jCU .pre-header-right {
  align-self: center;
}
.cid-uL5FX82jCU .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uL5FX82jCU .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #0f004e;
}
.cid-uL5FX82jCU .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uL5FX82jCU .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uL5FX82jCU .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uL5FX82jCU .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uL5FX82jCU .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uL5FX82jCU .navbar .menu-content-top {
    display: none;
  }
  .cid-uL5FX82jCU .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uL5FX82jCU .dropdown-item:before {
    display: none;
  }
  .cid-uL5FX82jCU .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uL5FX82jCU img {
    height: 3.8rem !important;
  }
  .cid-uL5FX82jCU .btn {
    display: flex;
  }
  .cid-uL5FX82jCU button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uL5FX82jCU .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uL5FX82jCU .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uL5FX82jCU .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uL5FX82jCU .navbar-collapse.collapsing,
  .cid-uL5FX82jCU .navbar-collapse.show {
    display: block !important;
  }
  .cid-uL5FX82jCU .navbar-collapse.collapsing .navbar-nav,
  .cid-uL5FX82jCU .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uL5FX82jCU .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uL5FX82jCU .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uL5FX82jCU .navbar-collapse.collapsing .navbar-buttons,
  .cid-uL5FX82jCU .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uL5FX82jCU .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uL5FX82jCU .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uL5FX82jCU .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uL5FX82jCU .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uL5FX82jCU .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uL5FX82jCU .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uL5FX82jCU .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uL5FX82jCU .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uL5FX82jCU .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uL5FX82jCU .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uL5FX82jCU .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uL5FX82jCU .navbar {
    display: block;
    padding: 0;
  }
  .cid-uL5FX82jCU .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uL5FX82jCU .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uL5FX82jCU .navbar-toggler {
    display: none;
  }
}
.cid-uL5FX82jCU .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uL5FX82jCU .menu-area-wrapper .menu-area {
  background-color: #0f004e;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uL5FX82jCU .navbar-short {
  background: transparent;
}
.cid-uL5FX82jCU .navbar-short .menu-content-top,
.cid-uL5FX82jCU .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uL5FX82jCU .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uL5FX82jCU .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uL5FX82jCU .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uL5FX82jCU .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uL5FX82jCU .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uL5FX82jCU .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uL5FX82jCU .dropdown {
  color: #0f004e !important;
}
.cid-uL5FX82jCU .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0f004e;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #0f004e !important;
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #92b73b;
  color: #ffffff;
}
.cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uL5FX82jCU .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uL5FX82jCU .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL5FX82jCU .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uL5FX82jCU .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uL5FX82jCU .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uL5FX82jCU .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uL5FX82jCU .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uL5FX82jCU .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uL5FX82jCU button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uL5FX82jCU button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uL5FX82jCU button.navbar-toggler:focus {
  outline: none;
}
.cid-uL5FX82jCU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uL5FX82jCU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uL5FX82jCU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uL5FX82jCU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uL5FX82jCU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uL5FX82jCU nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uL5FX82jCU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uL5FX82jCU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uL5FX82jCU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uL5FX82jCU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uL5FX82jCU .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uL5FX82jCU .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uL5FX82jCU .collapsed .btn {
  display: flex;
}
.cid-uL5FX82jCU .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uL5FX82jCU .collapsed .navbar-collapse.collapsing,
.cid-uL5FX82jCU .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uL5FX82jCU .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uL5FX82jCU .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uL5FX82jCU .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uL5FX82jCU .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uL5FX82jCU .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uL5FX82jCU .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uL5FX82jCU .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uL5FX82jCU .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uL5FX82jCU .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 3.5rem);
  }
  .cid-uL5FX82jCU .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uL5FX82jCU .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uL5FX82jCU .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uL5FX82jCU .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uL5FX82jCU .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uL5FX82jCU .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uL5FX82jCU .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uL5FX82jCU .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uL5FX82jCU .collapsed .dropdown-item:before {
  display: none;
}
.cid-uL5FX82jCU .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uL5FX82jCU .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uL5FX82jCU .nav-link:focus {
  outline: none;
}
.cid-uL5FX82jCU .navbar-toggler {
  position: relative;
}
.cid-uL5FX82jCU .dropdown-item.active,
.cid-uL5FX82jCU .dropdown-item:active {
  color: auto;
}
.cid-uL5FX82jCU .dropdown-item:hover {
  color: #92b73b;
}
.cid-uL5FX8kLrb {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/13093.jpeg");
}
.cid-uL5FX8kLrb .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uL5FX8kLrb .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-uL5FX8kLrb .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uL5FX8kLrb .mbr-text {
  color: #6d7a8c;
}
.cid-uL5FX8kLrb .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-uL5FX8kLrb .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-uL5FX8kLrb .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-uL5FX8kLrb .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 22%;
}
.cid-uL5FX8kLrb .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 22%;
}
.cid-uL5FX8kLrb .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-uL5FX8kLrb .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-uL5FX8kLrb .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-uL5FX8kLrb .separator,
  .cid-uL5FX8kLrb .sep-holder,
  .cid-uL5FX8kLrb .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uL5FX8kLrb .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-uL5GIJd7Ir {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uL5GIJd7Ir .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uL5GIJd7Ir .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uL5GIJd7Ir .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uL5GIJd7Ir .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uL5GIJd7Ir .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uL5GIJd7Ir .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uL5GIJd7Ir .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uL5GIJd7Ir .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uL5GIJd7Ir .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uL5GIJd7Ir .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uL5GIJd7Ir .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uL5GIJd7Ir .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uL5GIJd7Ir .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uL5GIJd7Ir .list-block {
  position: relative;
}
.cid-uL5GIJd7Ir .list-block h4,
.cid-uL5GIJd7Ir .list-block p {
  padding-left: 4.5rem;
}
.cid-uL5GIJd7Ir .card-img {
  display: block;
}
.cid-uL5GIJd7Ir input,
.cid-uL5GIJd7Ir textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uL5GIJd7Ir input:focus,
.cid-uL5GIJd7Ir textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uL5GIJd7Ir .form-control,
.cid-uL5GIJd7Ir .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uL5GIJd7Ir .form-control:hover,
.cid-uL5GIJd7Ir .field-input:hover,
.cid-uL5GIJd7Ir .form-control:focus,
.cid-uL5GIJd7Ir .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uL5GIJd7Ir input::-webkit-input-placeholder,
.cid-uL5GIJd7Ir textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uL5GIJd7Ir input:-moz-placeholder,
.cid-uL5GIJd7Ir textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uL5GIJd7Ir .jq-selectbox li,
.cid-uL5GIJd7Ir .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uL5GIJd7Ir .jq-selectbox li:hover,
.cid-uL5GIJd7Ir .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uL5GIJd7Ir .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uL5GIJd7Ir .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uL5GIJd7Ir .mbr-form {
  max-width: 550px;
}
.cid-uL5GIJd7Ir .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uL5GIJd7Ir .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uL5GIJd7Ir .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uL5GIJd7Ir .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uL5GIJd7Ir .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uL5GIJd7Ir .mbr-form textarea {
  min-height: 100px;
}
.cid-uL5GIJd7Ir .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #0f004e;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uL5GIJd7Ir .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uL5GIJd7Ir .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uL5GIJd7Ir .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uL5GIJd7Ir .mbr-section-title,
  .cid-uL5GIJd7Ir .content-title,
  .cid-uL5GIJd7Ir .mbr-section-btn {
    text-align: left;
  }
}
.cid-uL5I4a2db7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uL5I4a2db7 .top-part {
  margin-bottom: 70px;
}
.cid-uL5I4a2db7 .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uL5I4a2db7 .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uL5I4a2db7 .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uL5I4a2db7 .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uL5I4a2db7 .nav-tabs .nav-item.open .nav-link:focus,
.cid-uL5I4a2db7 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uL5I4a2db7 .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-uL5I4a2db7 .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-uL5I4a2db7 .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-uL5I4a2db7 .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-uL5I4a2db7 .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-uL5I4a2db7 .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-uL5I4a2db7 .nav-tabs .nav-link.active {
  border-bottom: 2px solid #4f87fb;
  color: #28303f;
}
.cid-uL5I4a2db7 .nav-tabs .nav-link.active span {
  color: #4f87fb;
}
.cid-uL5I4a2db7 .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-uL5I4a2db7 .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uL5I4a2db7 .mbr-text,
  .cid-uL5I4a2db7 .nav-link {
    text-align: left;
  }
  .cid-uL5I4a2db7 .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-uL5I4a2db7 .mbr-section-title,
  .cid-uL5I4a2db7 .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uL5I4a2db7 .tab-content {
  margin-top: 44px;
}
.cid-uL5I4a2db7 .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-uL5I4a2db7 .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-uL5GQ2BiF1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uL5GQ2BiF1 .mbr-section-title {
  margin-bottom: 30px;
  color: #130947;
}
.cid-uL5GQ2BiF1 .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uL5GQ2BiF1 .google-map {
  height: 30rem;
  position: relative;
  width: 100%;
}
.cid-uL5GQ2BiF1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uL5GQ2BiF1 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uL5GQ2BiF1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uL5GQ2BiF1 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-uL5GQ2BiF1 .map-placeholder {
  display: none;
}
.cid-uL5GQ2BiF1 h4 {
  padding-top: 5rem;
  color: #767676;
  text-align: center;
}
.cid-uL5FX8SsVZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0f004e;
}
.cid-uL5FX8SsVZ .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uL5FX8SsVZ .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uL5FX8SsVZ .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uL5FX8SsVZ .btn-primary {
  border: 1px solid #0f004e !important;
}
.cid-uL5FX8SsVZ .btn-primary:hover {
  border: 1px solid #0f004e !important;
}
.cid-uL5FX8SsVZ .stripe {
  border-bottom: 1px solid #92b73b;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uL5FX8SsVZ .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uL5FX8SsVZ .input-group-btn {
  padding-left: 0;
}
.cid-uL5FX8SsVZ .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uL5FX8SsVZ .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uL5FX8SsVZ .mbr-text {
  color: #444;
}
.cid-uL5FX8SsVZ h5 {
  margin-bottom: 0;
}
.cid-uL5FX8SsVZ .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uL5FX8SsVZ .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uL5FX8SsVZ .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uL5FX8SsVZ .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uL5FX8SsVZ .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-uL5FX8SsVZ .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uL5FX8SsVZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uL5FX8SsVZ .social-list a:hover {
  opacity: 0.4;
}
.cid-uL5FX8SsVZ .media-container-row > div {
  padding: 0px;
}
.cid-uL5FX8SsVZ .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uL5FX8SsVZ .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-uL5FX8SsVZ .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uL5FX8SsVZ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uL5FX8SsVZ .social-list,
  .cid-uL5FX8SsVZ .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uL5FX8SsVZ h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uL5FX8SsVZ .form-group {
    max-width: 180px;
  }
}
.cid-uL5FX8SsVZ .links span {
  color: #9e9e9e;
}
.cid-uL5FX8SsVZ .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uL5FX8SsVZ .logo-title {
  text-align: center;
}
.cid-uL5FX8SsVZ .logo-title,
.cid-uL5FX8SsVZ .logo {
  color: #ffffff;
}
