.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4d73b4 !important;
}
.bg-success {
  background-color: #073b4c !important;
}
.bg-info {
  background-color: #22a5e5 !important;
}
.bg-warning {
  background-color: #fafafa !important;
}
.bg-danger {
  background-color: #232323 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4d73b4 !important;
  border-color: #4d73b4 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #324c78 !important;
  border-color: #324c78 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #324c78 !important;
  border-color: #324c78 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
  color: #727272 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c7c7c7 !important;
  border-color: #c7c7c7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #727272 !important;
  background-color: #c7c7c7 !important;
  border-color: #c7c7c7 !important;
}
.btn-info,
.btn-info:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success,
.btn-success:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #4d73b4;
  color: #4d73b4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #324c78 !important;
  background-color: transparent!important;
  border-color: #324c78 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4d73b4 !important;
  border-color: #4d73b4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f2f2f2;
  color: #f2f2f2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c7c7c7 !important;
  background-color: transparent!important;
  border-color: #c7c7c7 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #727272 !important;
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #22a5e5;
  color: #22a5e5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: #13709e !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #073b4c;
  color: #073b4c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4d73b4 !important;
}
.text-secondary {
  color: #f2f2f2 !important;
}
.text-success {
  color: #073b4c !important;
}
.text-info {
  color: #22a5e5 !important;
}
.text-warning {
  color: #fafafa !important;
}
.text-danger {
  color: #232323 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2e456d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #bfbfbf !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #116690 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #c7c7c7 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4d73b4;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #22a5e5;
}
.alert-warning {
  background-color: #fafafa;
}
.alert-danger {
  background-color: #232323;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4d73b4;
  border-color: #4d73b4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4d73b4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a7bada;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4ac6ee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9effa;
}
.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: #d5d5d5;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4d73b4 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4d73b4;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4d73b4;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4d73b4;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4d73b4;
  border-bottom-color: #4d73b4;
}
.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: #4d73b4 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f2f2f2 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234d73b4' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uQYbz8o96p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uQYbz8o96p .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uQYbz8o96p nav.navbar {
  position: fixed;
}
.cid-uQYbz8o96p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQYbz8o96p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQYbz8o96p .dropdown-item:hover,
.cid-uQYbz8o96p .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-uQYbz8o96p .dropdown-item:hover span {
  color: white;
}
.cid-uQYbz8o96p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQYbz8o96p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQYbz8o96p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQYbz8o96p .nav-link {
  position: relative;
}
.cid-uQYbz8o96p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .container {
    flex-wrap: nowrap;
  }
}
.cid-uQYbz8o96p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown-menu,
.cid-uQYbz8o96p .navbar.opened {
  background: #0f1b3d !important;
}
.cid-uQYbz8o96p .nav-item:focus,
.cid-uQYbz8o96p .nav-link:focus {
  outline: none;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQYbz8o96p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQYbz8o96p .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.opened {
  transition: all 0.3s;
}
.cid-uQYbz8o96p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQYbz8o96p .navbar .navbar-logo img {
  width: auto;
}
.cid-uQYbz8o96p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar.collapsed {
  justify-content: center;
}
.cid-uQYbz8o96p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQYbz8o96p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQYbz8o96p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQYbz8o96p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQYbz8o96p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQYbz8o96p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQYbz8o96p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQYbz8o96p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQYbz8o96p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQYbz8o96p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQYbz8o96p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQYbz8o96p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQYbz8o96p .navbar.navbar-short {
  min-height: 80px;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQYbz8o96p .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQYbz8o96p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQYbz8o96p .dropdown-item.active,
.cid-uQYbz8o96p .dropdown-item:active {
  background-color: transparent;
}
.cid-uQYbz8o96p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQYbz8o96p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQYbz8o96p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQYbz8o96p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQYbz8o96p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQYbz8o96p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQYbz8o96p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQYbz8o96p .navbar {
    height: 70px;
  }
  .cid-uQYbz8o96p .navbar.opened {
    height: auto;
  }
  .cid-uQYbz8o96p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vi2cnT8jv1 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/banner-pagina-13-2000x1000.webp");
}
@media (max-width: 991px) {
  .cid-vi2cnT8jv1 .mbr-section-title,
  .cid-vi2cnT8jv1 .mbr-section-subtitle,
  .cid-vi2cnT8jv1 .mbr-section-btn,
  .cid-vi2cnT8jv1 .mbr-text {
    text-align: center;
  }
}
.cid-vi2cnT8jv1 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-vi2cnT8jv1 .mbr-text,
.cid-vi2cnT8jv1 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-vi2cnT8jv1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vgMJkP3pZo {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vgMJkP3pZo .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-vgMJkP3pZo .card-box {
  z-index: 3;
  position: relative;
}
.cid-vgMJkP3pZo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #22a5e5;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-vgMJkP3pZo .mbr-iconfont-big {
  font-size: 16rem;
  color: #22a5e5;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-vgMJkP3pZo .card-title,
.cid-vgMJkP3pZo .card-text {
  transition: all 0.3s;
}
.cid-vgMJkP3pZo .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #0f1b3d;
  transition: all 0.3s;
}
.cid-vgMJkP3pZo .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-vgMJkP3pZo .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-vgMJkP3pZo .card-title,
.cid-vgMJkP3pZo .iconfont-wrapper {
  color: #ffffff;
}
.cid-vgMJkP3pZo .card-text {
  color: #bbbbbb;
}
.cid-vgMJkP3pZo .mbr-section-title {
  color: #4d73b4;
}
.cid-vgMJkP3pZo .mbr-section-subtitle {
  color: #475569;
}
.cid-vgMJkP3pZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgMJkP3pZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi1DL10dQB {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vi1DL10dQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi1DL10dQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vi1DL10dQB .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-vi1DL10dQB .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vi1DL10dQB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vi1DL10dQB .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-vi1DL10dQB .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-vi1DL10dQB .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-vi1DL10dQB .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-vi1DL10dQB .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-vi1DL10dQB .app-video-wrapper img {
  background-color: #ffffff;
  padding: 4px;
}
.cid-vi1DL10dQB .media-content,
.cid-vi1DL10dQB .mbr-figure {
  align-self: center;
}
.cid-vi1DL10dQB .mbr-figure {
  overflow: hidden;
}
.cid-vi1DL10dQB .card {
  background-color: #000000;
  background-color: #ffffff;
  padding: 4px;
}
.cid-vi1DL10dQB .icon-title {
  color: #bff747;
}
.cid-vi1DL10dQB .mbr-text {
  color: #000000;
}
.cid-vi1DL10dQB .mbr-number {
  color: #22a5e5;
}
.cid-vi1DL10dQB .card-text,
.cid-vi1DL10dQB .item .mbr-section-btn {
  color: #475569;
}
.cid-vjBVxkcDab {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vjBVxkcDab .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-vjBVxkcDab .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-vjBVxkcDab .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-vjBVxkcDab .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-vjBVxkcDab .container {
    padding: 0 24px;
  }
}
.cid-vjBVxkcDab .content-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vjBVxkcDab .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vjBVxkcDab .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-vjBVxkcDab .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vjBVxkcDab .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  max-width: 45%;
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjBVxkcDab .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vjBVxkcDab .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 545px;
  max-width: 545px;
}
@media (max-width: 767px) {
  .cid-vjBVxkcDab .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vjBVxkcDab .embla__slide .slide-content {
  width: 100%;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper {
  padding: 48px;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0f1b3d;
  border-radius: 2rem !important;
}
@media (max-width: 992px) {
  .cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper {
    padding: 24px;
    min-height: auto;
    height: 100%;
  }
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .card-box {
  margin-bottom: 32px;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .card-box .desc-wrap .item-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .card-box .desc-wrap .item-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .tags-wrapper .tags-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .tags-wrapper .tags-wrap .tag-wrap {
  display: inline-flex;
  align-items: center;
  margin: 0 0 8px 32px;
  transition: all 0.3s ease-in-out;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .tags-wrapper .tags-wrap .tag-wrap:first-child {
  margin-left: 0;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .tags-wrapper .tags-wrap .tag-wrap:hover,
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .tags-wrapper .tags-wrap .tag-wrap:focus {
  opacity: .5;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .tags-wrapper .tags-wrap .tag-wrap .mbr-iconfont {
  display: block;
  color: #ffffff;
  font-size: 20px;
  margin-right: 8px;
}
.cid-vjBVxkcDab .embla__slide .slide-content .item-wrapper .tags-wrapper .tags-wrap .tag-wrap .item-tag {
  margin-bottom: 0;
}
.cid-vjBVxkcDab .embla__button--next,
.cid-vjBVxkcDab .embla__button--prev {
  display: flex;
}
.cid-vjBVxkcDab .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #f2f2f2 !important;
  color: #4d73b4 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vjBVxkcDab .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vjBVxkcDab .embla__button:hover {
  opacity: .5 !important;
}
.cid-vjBVxkcDab .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-vjBVxkcDab .embla__button.embla__button--next {
  right: 0;
}
.cid-vjBVxkcDab .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-vjBVxkcDab .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vjBVxkcDab .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vjBVxkcDab .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vjBVxkcDab .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vjBVxkcDab .mbr-section-title {
  color: #18212d;
  text-align: center;
}
.cid-vjBVxkcDab .mbr-desc,
.cid-vjBVxkcDab .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-vjBVxkcDab .mbr-text,
.cid-vjBVxkcDab .text-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-vjBVxkcDab .item-desc {
  color: #ffffff;
}
.cid-vjBVxkcDab .item-title {
  color: #22a5e5;
}
.cid-vjBVxkcDab .item-text {
  color: #ffffff;
}
.cid-vjBVxkcDab .item-tag {
  color: #ffffff;
}
.cid-vjBVxkcDab .item-text,
.cid-vjBVxkcDab .mbr-section-btn {
  color: #ffffff;
}
.cid-vgMIbVHfwn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vgMIbVHfwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgMIbVHfwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgMIbVHfwn .items-wrapper {
  margin: 0 -30px;
}
.cid-vgMIbVHfwn .item {
  padding: 0 30px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vgMIbVHfwn .item {
    margin-bottom: 40px;
  }
  .cid-vgMIbVHfwn .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vgMIbVHfwn .item .item-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-vgMIbVHfwn .item .item-wrapper .icon-wrapper .icon-wrap {
  background-image: linear-gradient(40deg, #22a5e5 0%, #ffffff 45%, #22a5e5 100%);
  box-shadow: 0 6px 30px -12px #22a5e5;
  display: inline-flex;
  padding: 2px;
}
.cid-vgMIbVHfwn .item .item-wrapper .icon-wrapper .icon-wrap .mbr-iconfont {
  padding: 16px;
  font-size: 36px;
  background-color: #ffffff;
}
.cid-vgMIbVHfwn .item .item-wrapper .item-title {
  margin-bottom: 6px;
}
.cid-vgMIbVHfwn .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vgMIbVHfwn .item .item-wrapper .mbr-section-btn {
  margin-top: 10px;
  width: 100%;
}
.cid-vgMIbVHfwn .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
  width: 100%;
}
.cid-vgMIbVHfwn .item-title {
  color: #ffffff;
}
.cid-vgMIbVHfwn .item-text {
  color: #9ba9c4;
}
.cid-vgMIbVHfwn .item-title,
.cid-vgMIbVHfwn .mbr-section-btn,
.cid-vgMIbVHfwn .icon-wrapper {
  color: #4d73b4;
}
.cid-vgMIbVHfwn .item-text,
.cid-vgMIbVHfwn .text-wrap {
  color: #475569;
}
.cid-vjD2ZXBBr2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vjD2ZXBBr2 .card-wrapper {
  display: flex;
  padding-bottom: 2rem;
}
.cid-vjD2ZXBBr2 .card-wrapper:hover .card-title {
  color: #f2f2f2;
}
.cid-vjD2ZXBBr2 img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}
.cid-vjD2ZXBBr2 .main-sub-title {
  background: #e7e7fb;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-vjD2ZXBBr2 .wrapper {
  background: #0f1b3d;
  padding: 5rem;
  border-radius: 8px;
}
@media (max-width: 1600px) {
  .cid-vjD2ZXBBr2 .wrapper {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vjD2ZXBBr2 .wrapper {
    padding: 3rem 1rem;
  }
}
.cid-vjD2ZXBBr2 .card-number {
  padding-right: 1rem;
  text-align: center;
  min-width: 60px;
  color: #22a5e5;
}
.cid-vjD2ZXBBr2 .card-title {
  transition: all 0.3s;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vjD2ZXBBr2 .card-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .cid-vjD2ZXBBr2 span {
    padding: 0!important;
    margin-bottom: 1rem;
  }
  .cid-vjD2ZXBBr2 .col2 .card-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-vjD2ZXBBr2 .main-text {
  color: #ffffff;
}
.cid-vjD2ZXBBr2 .card-text {
  color: #ffffff;
}
.cid-vjD2ZXBBr2 .main-sub-title,
.cid-vjD2ZXBBr2 .align-wrapper {
  color: #33358c;
}
.cid-vjD2ZXBBr2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjD2ZXBBr2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjD2ZXBBr2 .main-title {
  color: #22a5e5;
}
.cid-vk5fOmeCRe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vk5fOmeCRe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vk5fOmeCRe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vk5fOmeCRe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vk5fOmeCRe .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-vk5fOmeCRe .items-wrap {
  justify-content: center;
  margin: 0 -10px;
}
.cid-vk5fOmeCRe .items-wrap .item {
  padding: 0 10px;
  margin-bottom: 32px;
}
.cid-vk5fOmeCRe .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-vk5fOmeCRe .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vk5fOmeCRe .btn-wrapper {
  margin-top: -2%;
}
.cid-vk5fOmeCRe .mbr-section-title {
  color: #4d73b4;
  text-align: left;
}
.cid-vk5fOmeCRe .item-title {
  color: #000000;
}
.cid-vk5fOmeCRe .item-text {
  color: #475569;
  text-align: center;
}
.cid-vi1SZKihLs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-vi1SZKihLs .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-vi1SZKihLs .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-vi1SZKihLs .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-vi1SZKihLs .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-vi1SZKihLs .container {
    padding: 0 16px;
  }
}
.cid-vi1SZKihLs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vi1SZKihLs .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vi1SZKihLs .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-vi1SZKihLs .embla__button--next,
.cid-vi1SZKihLs .embla__button--prev {
  display: flex;
}
.cid-vi1SZKihLs .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vi1SZKihLs .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vi1SZKihLs .embla__button:hover {
  opacity: .7 !important;
}
.cid-vi1SZKihLs .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-vi1SZKihLs .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-vi1SZKihLs .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-vi1SZKihLs .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-vi1SZKihLs .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-vi1SZKihLs .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-vi1SZKihLs .embla {
  position: relative;
  width: 100%;
}
.cid-vi1SZKihLs .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vi1SZKihLs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vi1SZKihLs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vi1SZKihLs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vi1SZKihLs .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-vidO1Fq5Qy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vidO1Fq5Qy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vidO1Fq5Qy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vidO1Fq5Qy .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-vidO1Fq5Qy .row {
    flex-wrap: wrap;
  }
}
.cid-vidO1Fq5Qy .col-text {
  width: 50%;
}
@media (max-width: 767px) {
  .cid-vidO1Fq5Qy .col-text {
    width: 100%;
  }
}
.cid-vidO1Fq5Qy .text-wrapper {
  max-width: 500px;
  padding: 16px 0;
}
@media (max-width: 991px) {
  .cid-vidO1Fq5Qy .text-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 10px 8%;
  }
}
@media (max-width: 767px) {
  .cid-vidO1Fq5Qy .text-wrapper {
    padding: 0;
  }
}
.cid-vidO1Fq5Qy .mbr-section-title {
  color: #272727;
  opacity: 0.4;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .cid-vidO1Fq5Qy .mbr-section-title {
    margin-bottom: 8px;
  }
}
.cid-vidO1Fq5Qy .mbr-section-subtitle {
  color: #4d73b4;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-vidO1Fq5Qy .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .cid-vidO1Fq5Qy .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-vidO1Fq5Qy .mbr-text {
  color: #272727;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vidO1Fq5Qy .mbr-text {
    max-width: 290px;
  }
}
@media (max-width: 767px) {
  .cid-vidO1Fq5Qy .mbr-text {
    max-width: 350px;
  }
}
@media (max-width: 575px) {
  .cid-vidO1Fq5Qy .mbr-text {
    max-width: 100%;
  }
}
.cid-vidO1Fq5Qy .mbr-section-btn {
  margin-top: 20px;
}
.cid-vidO1Fq5Qy .col-img {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-vidO1Fq5Qy .col-img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vidO1Fq5Qy .col-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-vidO1Fq5Qy .image-wrapper {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vidO1Fq5Qy .image-wrapper {
    width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cid-vidO1Fq5Qy .image-wrapper {
    width: 100%;
  }
}
.cid-vidO1Fq5Qy .image-wrapper img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-vidO1Fq5Qy .image-wrapper img {
    max-width: 100%;
  }
}
.cid-vidO1Fq5Qy .mbr-text,
.cid-vidO1Fq5Qy .mbr-section-btn {
  color: #475569;
}
.cid-vjC4cMbddX {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #0f1b3d;
}
.cid-vjC4cMbddX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjC4cMbddX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjC4cMbddX .row {
  justify-content: center;
}
.cid-vjC4cMbddX .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-vjC4cMbddX .row {
    padding: 0 12px;
  }
}
.cid-vjC4cMbddX .item-wrap {
  z-index: 1;
}
.cid-vjC4cMbddX .title-wrapper {
  max-width: 46.5rem;
  margin: 0 auto 34px;
}
@media (max-width: 992px) {
  .cid-vjC4cMbddX .title-wrapper {
    margin-bottom: 28px;
  }
}
.cid-vjC4cMbddX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjC4cMbddX .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-vjC4cMbddX .mbr-text ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-vjC4cMbddX .mbr-text ul {
    display: block;
    text-align: center;
  }
}
.cid-vjC4cMbddX .mbr-text ul li {
  margin: 0 12px 26px;
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.cid-vjC4cMbddX .mbr-text ul li::before {
  content: "✔";
  display: block;
  position: absolute;
  width: 16px;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  padding-top: 3px;
}
@media (max-width: 992px) {
  .cid-vjC4cMbddX .mbr-text ul li::before {
    display: none;
  }
}
.cid-vjC4cMbddX .mbr-section-btn {
  max-width: 46.5rem;
  margin: 0 auto;
}
.cid-vjC4cMbddX .mbr-section-title {
  color: #181818;
}
.cid-vjC4cMbddX .mbr-text,
.cid-vjC4cMbddX .mbr-iconfont {
  color: #ffffff;
}
.cid-vjC4cMbddX .mbr-section-title,
.cid-vjC4cMbddX .mbr-section-btn {
  text-align: center;
}
.cid-vjC4cMbddX .mbr-text,
.cid-vjC4cMbddX .mbr-iconfont UL {
  text-align: left;
}
.cid-vjCcXUQwgj {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vjCcXUQwgj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjCcXUQwgj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjCcXUQwgj .items-wrapper {
  margin: 0 -24px;
}
.cid-vjCcXUQwgj .items-wrapper .card {
  padding: 0 24px;
}
.cid-vjCcXUQwgj .content-wrapper {
  position: sticky;
  top: 72px;
}
@media (max-width: 992px) {
  .cid-vjCcXUQwgj .content-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vjCcXUQwgj .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vjCcXUQwgj .content-wrapper .mbr-section-btn {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.cid-vjCcXUQwgj .item:first-child .item-wrapper {
  padding: 24px 0 48px;
}
@media (max-width: 992px) {
  .cid-vjCcXUQwgj .item:first-child .item-wrapper {
    padding: 0 0 24px;
  }
}
.cid-vjCcXUQwgj .item .item-wrapper {
  padding: 48px 0;
  border-bottom: 1px solid #14334b;
  border-radius: 0 !important;
  display: grid;
  gap: 48px;
  grid-template-columns: .9fr 1fr;
}
@media (max-width: 992px) {
  .cid-vjCcXUQwgj .item .item-wrapper {
    display: block;
    padding: 24px 0;
  }
}
.cid-vjCcXUQwgj .item .item-wrapper .item-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjCcXUQwgj .item .item-wrapper .item-title {
    margin-bottom: 12px;
  }
}
.cid-vjCcXUQwgj .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vjCcXUQwgj .item .item-wrapper .card-box .item-btn {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.cid-vjCcXUQwgj .btn-wrapper {
  margin-top: -5%;
}
.cid-vjCcXUQwgj .mbr-section-title {
  color: #14334b;
}
.cid-vjCcXUQwgj .item-title {
  color: #22a5e5;
}
.cid-vjCcXUQwgj .item-text {
  color: #14334b;
}
.cid-vjCcXUQwgj .mbr-section-title,
.cid-vjCcXUQwgj .main-btn {
  color: #4d73b4;
}
.cid-vjCcXUQwgj .item-text,
.cid-vjCcXUQwgj .item-btn {
  color: #475569;
}
.cid-vjCS14zdxG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vjCS14zdxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjCS14zdxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjCS14zdxG .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vjCS14zdxG .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-vjCS14zdxG .content-wrapper {
  margin: 0 -8px;
}
.cid-vjCS14zdxG .content-wrapper .card {
  padding: 0 8px;
}
.cid-vjCS14zdxG .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vjCS14zdxG .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vjCS14zdxG .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vjCS14zdxG .image-wrapper img {
    height: 300px;
  }
}
.cid-vjCS14zdxG .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-vjCS14zdxG .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-vjCS14zdxG .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0f1b3d;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-vjCS14zdxG .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vjCS14zdxG .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-vjCS14zdxG .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vjCS14zdxG .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-vjCS14zdxG .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #22a5e5;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-vjCS14zdxG .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-vjCS14zdxG .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-vjCS14zdxG .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-vjCS14zdxG .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vjCS14zdxG .mbr-section-title {
  color: #4d73b4;
  text-align: left;
}
.cid-vjCS14zdxG .card-title {
  color: #2c2c26;
}
.cid-vjCS14zdxG .card-text {
  color: #ffffff;
}
.cid-vjCS14zdxG .card-title,
.cid-vjCS14zdxG .iconfont-wrap {
  color: #ffffff;
}
.cid-vjCS14zdxG .mbr-section-title DIV {
  text-align: left;
}
.cid-vjCv4nyNaq {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vjCv4nyNaq .card-wrapper {
  border-radius: 0;
  border: 1px solid #dddfe0;
  padding: 2rem;
}
.cid-vjCv4nyNaq .card-title {
  font-weight: 600;
}
.cid-vjCv4nyNaq .card-img {
  text-align: left;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-vjCv4nyNaq .card-img span {
  border: 2px solid #22a5e5;
  padding: 15.5px;
  border-radius: 70px;
  text-align: center;
  color: #22a5e5;
  font-size: 35px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-vjCv4nyNaq .card {
    margin-bottom: 2rem;
  }
}
.cid-vjCv4nyNaq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjCv4nyNaq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjCv4nyNaq .card-wrapper .card-box .card-title,
.cid-vjCv4nyNaq .card-wrapper .card-box .card-img,
.cid-vjCv4nyNaq .card-wrapper .card-box .mbr-section-btn {
  color: #4d73b4;
}
.cid-vjCv4nyNaq .card-wrapper .card-box .mbr-text,
.cid-vjCv4nyNaq .card-wrapper .card-box .mbr-section-btn,
.cid-vjCv4nyNaq .card-wrapper .card-box .card-img {
  color: #475569;
}
.cid-vjCv4nyNaq .title .mbr-section-title,
.cid-vjCv4nyNaq .title .mbr-section-btn {
  color: #4d73b4;
  text-align: left;
}
.cid-uQY8lCIWAW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uQY8lCIWAW .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uQY8lCIWAW .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQY8lCIWAW .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uQY8lCIWAW .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQY8lCIWAW .container {
    padding: 0 16px;
  }
}
.cid-uQY8lCIWAW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uQY8lCIWAW .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQY8lCIWAW .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-uQY8lCIWAW .embla__button--next,
.cid-uQY8lCIWAW .embla__button--prev {
  display: flex;
}
.cid-uQY8lCIWAW .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uQY8lCIWAW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQY8lCIWAW .embla__button:hover {
  opacity: .7 !important;
}
.cid-uQY8lCIWAW .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-uQY8lCIWAW .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uQY8lCIWAW .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-uQY8lCIWAW .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-uQY8lCIWAW .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uQY8lCIWAW .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-uQY8lCIWAW .embla {
  position: relative;
  width: 100%;
}
.cid-uQY8lCIWAW .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uQY8lCIWAW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQY8lCIWAW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQY8lCIWAW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uQY8lCIWAW .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-vgMF7OBi28 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vgMF7OBi28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgMF7OBi28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgMF7OBi28 .content-container {
  display: flex;
  width: 100%;
}
.cid-vgMF7OBi28 .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-vgMF7OBi28 .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-vgMF7OBi28 .mbr-section-title {
  color: #112B6D;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-vgMF7OBi28 .mbr-text {
  color: #475569;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-vgMF7OBi28 .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-vgMF7OBi28 .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-vgMF7OBi28 .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-vgOlTAiJb1 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vgOlTAiJb1 .row {
  display: flex;
  align-items: center;
}
.cid-vgOlTAiJb1 .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 8px;
}
.cid-vgOlTAiJb1 .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
}
.cid-vgOlTAiJb1 .mbr-text {
  color: #00284E;
  opacity: 0.8;
  padding-bottom: 20px;
  padding-top: 10px;
  margin-bottom: 0;
}
.cid-vgOlTAiJb1 .mbr-section-btn {
  margin-top: 20px;
}
.cid-vgOlTAiJb1 .mbr-section-btn .btn-secondary:hover,
.cid-vgOlTAiJb1 .mbr-section-btn .btn-primary:hover {
  color: #ffffff !important;
  background-color: #073b4c !important;
}
.cid-vgOlTAiJb1 .mbr-section-btn .btn {
  min-height: 55px;
  padding: 10px 45px;
}
.cid-vgOlTAiJb1 .mbr-section-btn .btn:before {
  display: none;
}
.cid-vgOlTAiJb1 .mbr-section-btn .btn:hover:before {
  display: none;
}
@media (max-width: 767px) {
  .cid-vgOlTAiJb1 .image-wrapper {
    margin-top: 40px;
  }
}
.cid-vgOlTAiJb1 .image-wrapper img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vgOlTAiJb1 .image-wrapper img {
    padding-left: 5%;
  }
}
.cid-vgOlTAiJb1 .list {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 0;
  margin-top: 16px;
  width: 100%;
}
.cid-vgOlTAiJb1 .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.cid-vgOlTAiJb1 .icon-wrapper {
  display: flex;
  margin-right: 20px;
}
.cid-vgOlTAiJb1 .icon-wrapper span {
  color: #0066ff;
  font-size: 13px;
}
.cid-vgOlTAiJb1 .list-item-text {
  flex-grow: 1;
  color: #475569;
}
.cid-vgOlTAiJb1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgOlTAiJb1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgOlTAiJb1 .mbr-section-title,
.cid-vgOlTAiJb1 .mbr-section-btn {
  color: #4d73b4;
}
.cid-vjCSvjTsHa {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjCSvjTsHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjCSvjTsHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vjCSvjTsHa .container {
    padding: 0 22px;
  }
}
.cid-vjCSvjTsHa .row {
  justify-content: space-between;
}
.cid-vjCSvjTsHa .row .card {
  justify-content: center;
}
.cid-vjCSvjTsHa .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vjCSvjTsHa .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-vjCSvjTsHa .item:last-child .item-wrapper .card-box {
  border: none;
}
.cid-vjCSvjTsHa .item .item-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vjCSvjTsHa .item .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vjCSvjTsHa .item .item-wrapper .icon-wrapper {
    margin-top: 55px;
  }
}
.cid-vjCSvjTsHa .item .item-wrapper .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  width: 64px;
  height: 64px;
  color: #22a5e5;
  margin-right: 55px;
}
.cid-vjCSvjTsHa .item .item-wrapper .card-box {
  padding: 55px 0;
  border-bottom: 1px solid #d4d3d3;
}
@media (max-width: 992px) {
  .cid-vjCSvjTsHa .item .item-wrapper .card-box {
    padding: 16px 0 55px;
  }
}
.cid-vjCSvjTsHa .item .item-wrapper .card-box .card-title {
  margin-bottom: 16px;
}
.cid-vjCSvjTsHa .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-vjCSvjTsHa .mbr-section-title {
  color: #000000;
}
.cid-vjCSvjTsHa .mbr-text {
  color: #475569;
}
.cid-vjCSvjTsHa .card-title {
  color: #ff5753;
}
.cid-vjCSvjTsHa .card-text {
  color: #000000;
}
.cid-vjCSvjTsHa .mbr-section-title,
.cid-vjCSvjTsHa .mbr-section-btn {
  color: #4d73b4;
}
.cid-vjCSvjTsHa .card-title,
.cid-vjCSvjTsHa .iconfont-wrapper {
  color: #475569;
}
.cid-vjCLtlv5fu {
  padding-top: 100px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/gemini-generated-image-j9yrcdj9yrcdj9yr-1790x2400.webp");
}
.cid-vjCLtlv5fu .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vjCLtlv5fu .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-vjCLtlv5fu .mbr-section-title {
  margin: 0;
}
.cid-vjCLtlv5fu .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-vjCLtlv5fu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjCLtlv5fu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjCLtlv5fu H1 {
  text-align: center;
}
.cid-vjCLtlv5fu H3 {
  text-align: center;
}
.cid-vic3Wubu8q {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-vic3Wubu8q .carousel {
  z-index: 2;
  position: relative;
}
.cid-vic3Wubu8q .user {
  padding: 0 !important;
}
.cid-vic3Wubu8q .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #4d73b4;
  opacity: 0.5;
}
.cid-vic3Wubu8q .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-vic3Wubu8q .carousel-item.active,
.cid-vic3Wubu8q .carousel-item-next,
.cid-vic3Wubu8q .carousel-item-prev {
  display: flex;
}
.cid-vic3Wubu8q .user_name {
  margin: 0;
}
.cid-vic3Wubu8q .carousel-controls a {
  font-size: 2rem;
}
.cid-vic3Wubu8q .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #3d626c;
  background: transparent;
  opacity: 0.5;
}
.cid-vic3Wubu8q .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-vic3Wubu8q ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-vic3Wubu8q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #3d626c;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-vic3Wubu8q .carousel-indicators li:hover {
  opacity: 1;
}
.cid-vic3Wubu8q .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-vic3Wubu8q .user_text {
  color: #475569;
  text-align: left;
}
.cid-vic3Wubu8q .user_desk {
  color: #767676;
}
.cid-vic3Wubu8q .user_desk,
.cid-vic3Wubu8q .carousel-item {
  text-align: left;
  color: #22a5e5;
}
.cid-vic3Wubu8q .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-vic3Wubu8q .carousel-indicators {
    margin: auto;
    justify-content: center !important;
  }
}
.cid-vic3Wubu8q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vic3Wubu8q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vic3Wubu8q .title,
.cid-vic3Wubu8q .line-align {
  color: #4d73b4;
}
.cid-v7GbAqEPnd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7GbAqEPnd .item:focus,
.cid-v7GbAqEPnd span:focus {
  outline: none;
}
.cid-v7GbAqEPnd .item {
  cursor: pointer;
}
.cid-v7GbAqEPnd .grid-container {
  grid-row-gap: 10px;
}
.cid-v7GbAqEPnd .grid-container-1,
.cid-v7GbAqEPnd .grid-container-2,
.cid-v7GbAqEPnd .grid-container-3 {
  gap: 0 10px;
}
.cid-v7GbAqEPnd .mbr-section-title {
  margin-bottom: 40px;
  color: #4d73b4;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v7GbAqEPnd .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v7GbAqEPnd .content-head {
  max-width: 800px;
}
.cid-v7GbAqEPnd .container,
.cid-v7GbAqEPnd .container-fluid {
  overflow: hidden;
}
.cid-v7GbAqEPnd .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-v7GbAqEPnd .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7GbAqEPnd .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-v7GbAqEPnd .grid-item img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .cid-v7GbAqEPnd .grid-item img {
    min-width: 35vw;
    height: 140px;
  }
}
.cid-v7GbAqEPnd .grid-container-1,
.cid-v7GbAqEPnd .grid-container-2,
.cid-v7GbAqEPnd .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-v7GbAqEPnd .grid-container-1 {
  align-items: flex-end;
}
.cid-v7GbAqEPnd .grid-container-2 {
  align-items: flex-start;
}
.cid-vjC38MWwke {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vjC38MWwke .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjC38MWwke .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjC38MWwke .row {
  margin: 0 -20px;
}
.cid-vjC38MWwke .row .card {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-vjC38MWwke .content-wrapper {
    margin-bottom: 16px;
  }
}
.cid-vjC38MWwke .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-vjC38MWwke .content-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vjC38MWwke .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vjC38MWwke .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vjC38MWwke .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vjC38MWwke .panel-group .card {
  position: relative;
  padding: 8px 0 12px;
  border-bottom: 1px solid #0f1b3d;
  transition: all .3s ease;
  border-radius: 0 !important;
}
.cid-vjC38MWwke .panel-group .card:hover {
  border-bottom: 1px solid #0f1b3d;
}
.cid-vjC38MWwke .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vjC38MWwke .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0 12px;
}
@media (max-width: 992px) {
  .cid-vjC38MWwke .panel-group .card .card-header .panel-title {
    padding: 8px 0 4px;
  }
}
.cid-vjC38MWwke .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-vjC38MWwke .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-vjC38MWwke .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  color: #0f1b3d;
}
.cid-vjC38MWwke .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-vjC38MWwke .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-vjC38MWwke .panel-group .card .panel-collapse .panel-body .panel-text {
    margin-bottom: 4px;
  }
}
.cid-vjC38MWwke .mbr-label {
  color: #a8a8a8;
}
.cid-vjC38MWwke .mbr-section-title {
  color: #ffffff;
}
.cid-vjC38MWwke .mbr-text {
  color: #ffffff;
}
.cid-vjC38MWwke .panel-title-edit {
  color: #4d73b4;
}
.cid-vjC38MWwke .panel-text {
  color: #a8a8a8;
}
.cid-vjC38MWwke .mbr-section-title,
.cid-vjC38MWwke .mbr-section-btn {
  text-align: left;
  color: #4d73b4;
}
.cid-vjC38MWwke .panel-text,
.cid-vjC38MWwke .panel-body {
  color: #475569;
}
.cid-v5ul3NTHpO {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v5ul3NTHpO .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5ul3NTHpO .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v5ul3NTHpO .mbr-section-title {
  margin: 0;
}
.cid-v5ul3NTHpO .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5ul3NTHpO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ul3NTHpO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ul3NTHpO H1 {
  text-align: center;
}
.cid-v5ul3NTHpO H3 {
  text-align: center;
}
.cid-uAPEe6H8TU {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uAPEe6H8TU .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAPEe6H8TU .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAPEe6H8TU .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uAPEe6H8TU .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAPEe6H8TU .container {
    padding: 0 16px;
  }
}
.cid-uAPEe6H8TU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uAPEe6H8TU .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAPEe6H8TU .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-uAPEe6H8TU .embla__button--next,
.cid-uAPEe6H8TU .embla__button--prev {
  display: flex;
}
.cid-uAPEe6H8TU .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uAPEe6H8TU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAPEe6H8TU .embla__button:hover {
  opacity: .7 !important;
}
.cid-uAPEe6H8TU .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-uAPEe6H8TU .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uAPEe6H8TU .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-uAPEe6H8TU .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-uAPEe6H8TU .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uAPEe6H8TU .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-uAPEe6H8TU .embla {
  position: relative;
  width: 100%;
}
.cid-uAPEe6H8TU .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uAPEe6H8TU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAPEe6H8TU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAPEe6H8TU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAPEe6H8TU .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-vjC4Yxy4J6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #0f1b3d;
}
.cid-vjC4Yxy4J6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjC4Yxy4J6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vjC4Yxy4J6 .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vjC4Yxy4J6 .title-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vjC4Yxy4J6 .title-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-vjC4Yxy4J6 .title-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjC4Yxy4J6 .title-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row {
  margin: 0;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group .form-control {
  background-color: #ffffff;
  padding: 8px 20px;
  box-shadow: none;
  border: 2px solid transparent !important;
  margin-bottom: 20px;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #0f1b3d;
  opacity: .5;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #22a5e5 !important;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group textarea {
  min-height: 140px;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #0f1b3d;
  border-color: #0f1b3d;
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-vjC4Yxy4J6 .form-wrap .dragArea.row .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-vjC4Yxy4J6 .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vjC4Yxy4J6 .mbr-label {
  color: #22a5e5;
}
.cid-vjC4Yxy4J6 .mbr-section-title {
  color: #ffffff;
}
.cid-vjC4Yxy4J6 label {
  color: #ffffff;
}
.cid-uAOSp3vMHt {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-uAOSp3vMHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOSp3vMHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAOSp3vMHt .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAOSp3vMHt .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAOSp3vMHt .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:hover,
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAOSp3vMHt .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uAOSp3vMHt .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .text-wrapper {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list,
.cid-uAOSp3vMHt .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-uAOSp3vMHt .mbr-desc,
.cid-uAOSp3vMHt .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .mbr-section-btn {
  color: #ffffff;
}
.cid-uQYbz8o96p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uQYbz8o96p .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uQYbz8o96p nav.navbar {
  position: fixed;
}
.cid-uQYbz8o96p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQYbz8o96p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQYbz8o96p .dropdown-item:hover,
.cid-uQYbz8o96p .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-uQYbz8o96p .dropdown-item:hover span {
  color: white;
}
.cid-uQYbz8o96p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQYbz8o96p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQYbz8o96p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQYbz8o96p .nav-link {
  position: relative;
}
.cid-uQYbz8o96p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .container {
    flex-wrap: nowrap;
  }
}
.cid-uQYbz8o96p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown-menu,
.cid-uQYbz8o96p .navbar.opened {
  background: #0f1b3d !important;
}
.cid-uQYbz8o96p .nav-item:focus,
.cid-uQYbz8o96p .nav-link:focus {
  outline: none;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQYbz8o96p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQYbz8o96p .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.opened {
  transition: all 0.3s;
}
.cid-uQYbz8o96p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQYbz8o96p .navbar .navbar-logo img {
  width: auto;
}
.cid-uQYbz8o96p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar.collapsed {
  justify-content: center;
}
.cid-uQYbz8o96p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQYbz8o96p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQYbz8o96p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQYbz8o96p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQYbz8o96p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQYbz8o96p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQYbz8o96p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQYbz8o96p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQYbz8o96p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQYbz8o96p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQYbz8o96p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQYbz8o96p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQYbz8o96p .navbar.navbar-short {
  min-height: 80px;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQYbz8o96p .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQYbz8o96p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQYbz8o96p .dropdown-item.active,
.cid-uQYbz8o96p .dropdown-item:active {
  background-color: transparent;
}
.cid-uQYbz8o96p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQYbz8o96p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQYbz8o96p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQYbz8o96p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQYbz8o96p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQYbz8o96p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQYbz8o96p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQYbz8o96p .navbar {
    height: 70px;
  }
  .cid-uQYbz8o96p .navbar.opened {
    height: auto;
  }
  .cid-uQYbz8o96p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBhNGnXc6W {
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-image: url("../../../assets/images/concepto-de-tecnologia-futurista-4-2000x1369.webp");
}
.cid-uBhNGnXc6W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhNGnXc6W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBhNGnXc6W .container {
    padding: 0 24px;
  }
}
.cid-uBhNGnXc6W .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uBhNGnXc6W .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBhNGnXc6W .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBhNGnXc6W .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uBhNGnXc6W .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBhNGnXc6W .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBhNGnXc6W .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #6abbe0 0%, transparent 100%);
}
.cid-uBhNGnXc6W .content-wrapper .mbr-section-btn .btn:hover,
.cid-uBhNGnXc6W .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #43aacc !important;
  border-color: #43aacc !important;
}
.cid-uBhNGnXc6W .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uBhNGnXc6W .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uBhNGnXc6W .decor-wrapper .decor_1 {
  background-color: #4967af;
}
.cid-uBhNGnXc6W .decor-wrapper .decor_2 {
  background-color: #36b9c8;
}
.cid-uBhNGnXc6W .decor-wrapper .decor_3 {
  background-color: #4967af;
}
.cid-uBhNGnXc6W .decor-wrapper .decor_4 {
  background-color: #36b9c8;
}
.cid-uBhNGnXc6W .mbr-section-title {
  color: #141414;
}
.cid-uBhNGnXc6W .mbr-section-subtitle {
  color: #141414;
  text-align: right;
}
.cid-uBhNGnXc6W .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uBhNGnXc6W .mbr-text {
  color: #fafafa;
  text-align: right;
}
.cid-uBhNGnXc6W .mbr-section-title,
.cid-uBhNGnXc6W .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBhNGold2t {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBhNGold2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhNGold2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhNGold2t .text-primary {
  background-color: #073b4c;
}
.cid-uBhNGold2t .mbr-section-title {
  color: #232323;
}
.cid-uBhNGoFabx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uBhNGoFabx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhNGoFabx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhNGoFabx .items-wrap {
  justify-content: space-between;
}
.cid-uBhNGoFabx .content-wrapper {
  padding: 96px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uBhNGoFabx .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper {
    padding: 26px 22px 22px;
  }
}
.cid-uBhNGoFabx .content-wrapper .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uBhNGoFabx .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-uBhNGoFabx .content-wrapper .title-wrapper .title-wrap .logo-wrap {
  margin-right: 68px;
}
.cid-uBhNGoFabx .content-wrapper .title-wrapper .title-wrap .logo-wrap img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
}
@media (max-width: 1440px) {
  .cid-uBhNGoFabx .content-wrapper .title-wrapper .title-wrap .logo-wrap {
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .title-wrapper .title-wrap .logo-wrap {
    margin-right: 0;
    margin-bottom: 22px;
  }
}
.cid-uBhNGoFabx .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBhNGoFabx .content-wrapper .tabs-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .tabs-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uBhNGoFabx .content-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBhNGoFabx .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 12px 12px 0;
}
.cid-uBhNGoFabx .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #4d73b4;
  padding: 11px 32px;
  border: none;
  background-color: #f5f5fb;
  transition: all 0.3s ease-in-out;
}
.cid-uBhNGoFabx .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #4d73b4;
  color: #f5f5fb;
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content {
    display: block;
  }
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .list-wrapper {
  width: 50%;
  padding-right: 60px;
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .list-wrapper {
    padding-right: 0;
    width: 100%;
  }
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list {
  margin-bottom: 32px;
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list .item-wrap::marker {
  font-weight: 700;
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .image-wrap {
  width: 50%;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .image-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .image-wrap img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBhNGoFabx .content-wrapper .tab-content .tab-pane .item-content .image-wrap img {
    height: 350px;
  }
}
.cid-uBhNGoFabx .mbr-section-title {
  color: #191c25;
}
.cid-uBhNGoFabx .list {
  color: #191c25;
}
.cid-uBhNGoFabx .list,
.cid-uBhNGoFabx .item-wrap {
  color: #232323;
}
.cid-uR8M0qjCc0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uR8M0qjCc0 .mbr-text {
  color: #c1c1c1;
}
.cid-uR8M0qjCc0 H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-uR8LZKOb8q {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR8LZKOb8q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8LZKOb8q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8LZKOb8q .row {
  justify-content: center;
}
.cid-uR8LZKOb8q .title-wrapper {
  margin-bottom: 32px;
}
.cid-uR8LZKOb8q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uR8LZKOb8q .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uR8LZKOb8q .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffffff;
  z-index: -1;
}
.cid-uR8LZKOb8q .mbr-figure iframe {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uR8LZKOb8q .video-block {
    margin-bottom: 24px;
  }
}
.cid-uR8LZKOb8q .mbr-figure__img {
  object-fit: cover;
}
.cid-uR8LZKOb8q .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-v5FKfObQyi {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v5FKfObQyi .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5FKfObQyi .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v5FKfObQyi .mbr-section-title {
  margin: 0;
}
.cid-v5FKfObQyi .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5FKfObQyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FKfObQyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5FKfObQyi H1 {
  text-align: center;
}
.cid-v5FKfObQyi H3 {
  text-align: center;
}
.cid-uBhNGp8cLV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-uBhNGp8cLV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhNGp8cLV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uBhNGp8cLV .container {
    padding: 0 16px;
  }
}
.cid-uBhNGp8cLV .row {
  position: relative;
  justify-content: space-between;
}
.cid-uBhNGp8cLV .row .card {
  justify-content: space-between;
}
.cid-uBhNGp8cLV .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uBhNGp8cLV .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBhNGp8cLV .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uBhNGp8cLV .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBhNGp8cLV .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uBhNGp8cLV .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-uBhNGp8cLV .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uBhNGp8cLV .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBhNGp8cLV .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-uBhNGp8cLV .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-uBhNGp8cLV .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-uBhNGp8cLV .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-uBhNGp8cLV .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uBhNGp8cLV .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-uBhNGp8cLV .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-uBhNGp8cLV .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uBhNGp8cLV .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uBhNGp8cLV .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #4967af;
}
.cid-uBhNGp8cLV .dragArea.row .form-group .form-control:hover,
.cid-uBhNGp8cLV .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uBhNGp8cLV .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-uBhNGp8cLV .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-uBhNGp8cLV .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uBhNGp8cLV .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-uBhNGp8cLV .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uBhNGp8cLV .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-uBhNGp8cLV .mbr-section-title {
  color: #000000;
}
.cid-uBhNGp8cLV .mbr-text {
  color: #000000;
}
.cid-uBhNGp8cLV .mbr-contact {
  color: #000000;
}
.cid-uBhNGp8cLV label {
  color: #000000;
}
.cid-uBhNGp8cLV .mbr-section-title,
.cid-uBhNGp8cLV .mbr-section-btn {
  color: #4d73b4;
}
.cid-uBhNGpx1P1 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-uBhNGpx1P1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhNGpx1P1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhNGpx1P1 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBhNGpx1P1 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uBhNGpx1P1 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBhNGpx1P1 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uBhNGpx1P1 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBhNGpx1P1 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBhNGpx1P1 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBhNGpx1P1 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uBhNGpx1P1 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uBhNGpx1P1 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uBhNGpx1P1 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uBhNGpx1P1 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBhNGpx1P1 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uBhNGpx1P1 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBhNGpx1P1 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBhNGpx1P1 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBhNGpx1P1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBhNGpx1P1 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBhNGpx1P1 .list-wrapper .list .item-wrap:hover,
.cid-uBhNGpx1P1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uBhNGpx1P1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBhNGpx1P1 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBhNGpx1P1 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBhNGpx1P1 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBhNGpx1P1 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uBhNGpx1P1 .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uBhNGpx1P1 .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-uBhNGpx1P1 .mbr-text,
.cid-uBhNGpx1P1 .text-wrapper {
  color: #9aa0a6;
}
.cid-uBhNGpx1P1 .list {
  color: #9aa0a6;
}
.cid-uBhNGpx1P1 .list,
.cid-uBhNGpx1P1 .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-uBhNGpx1P1 .mbr-desc,
.cid-uBhNGpx1P1 .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-uBhNGpx1P1 .mbr-text,
.cid-uBhNGpx1P1 .mbr-section-btn {
  color: #ffffff;
}
.cid-uQYbz8o96p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uQYbz8o96p .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uQYbz8o96p nav.navbar {
  position: fixed;
}
.cid-uQYbz8o96p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQYbz8o96p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQYbz8o96p .dropdown-item:hover,
.cid-uQYbz8o96p .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-uQYbz8o96p .dropdown-item:hover span {
  color: white;
}
.cid-uQYbz8o96p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQYbz8o96p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQYbz8o96p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQYbz8o96p .nav-link {
  position: relative;
}
.cid-uQYbz8o96p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .container {
    flex-wrap: nowrap;
  }
}
.cid-uQYbz8o96p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown-menu,
.cid-uQYbz8o96p .navbar.opened {
  background: #0f1b3d !important;
}
.cid-uQYbz8o96p .nav-item:focus,
.cid-uQYbz8o96p .nav-link:focus {
  outline: none;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQYbz8o96p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQYbz8o96p .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.opened {
  transition: all 0.3s;
}
.cid-uQYbz8o96p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQYbz8o96p .navbar .navbar-logo img {
  width: auto;
}
.cid-uQYbz8o96p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar.collapsed {
  justify-content: center;
}
.cid-uQYbz8o96p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQYbz8o96p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQYbz8o96p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQYbz8o96p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQYbz8o96p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQYbz8o96p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQYbz8o96p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQYbz8o96p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQYbz8o96p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQYbz8o96p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQYbz8o96p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQYbz8o96p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQYbz8o96p .navbar.navbar-short {
  min-height: 80px;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQYbz8o96p .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQYbz8o96p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQYbz8o96p .dropdown-item.active,
.cid-uQYbz8o96p .dropdown-item:active {
  background-color: transparent;
}
.cid-uQYbz8o96p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQYbz8o96p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQYbz8o96p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQYbz8o96p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQYbz8o96p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQYbz8o96p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQYbz8o96p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQYbz8o96p .navbar {
    height: 70px;
  }
  .cid-uQYbz8o96p .navbar.opened {
    height: auto;
  }
  .cid-uQYbz8o96p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBhzNqyWLP {
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-image: url("../../../assets/images/concepto-de-tecnologia-futurista-3-1096x750.webp");
}
.cid-uBhzNqyWLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhzNqyWLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBhzNqyWLP .container {
    padding: 0 24px;
  }
}
.cid-uBhzNqyWLP .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uBhzNqyWLP .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBhzNqyWLP .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBhzNqyWLP .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uBhzNqyWLP .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBhzNqyWLP .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBhzNqyWLP .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #6abbe0 0%, transparent 100%);
}
.cid-uBhzNqyWLP .content-wrapper .mbr-section-btn .btn:hover,
.cid-uBhzNqyWLP .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #43aacc !important;
  border-color: #43aacc !important;
}
.cid-uBhzNqyWLP .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uBhzNqyWLP .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uBhzNqyWLP .decor-wrapper .decor_1 {
  background-color: #4967af;
}
.cid-uBhzNqyWLP .decor-wrapper .decor_2 {
  background-color: #36b9c8;
}
.cid-uBhzNqyWLP .decor-wrapper .decor_3 {
  background-color: #4967af;
}
.cid-uBhzNqyWLP .decor-wrapper .decor_4 {
  background-color: #36b9c8;
}
.cid-uBhzNqyWLP .mbr-section-title {
  color: #141414;
}
.cid-uBhzNqyWLP .mbr-section-subtitle {
  color: #141414;
  text-align: right;
}
.cid-uBhzNqyWLP .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uBhzNqyWLP .mbr-text {
  color: #fafafa;
  text-align: right;
}
.cid-uBhzNqyWLP .mbr-section-title,
.cid-uBhzNqyWLP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBhLa66Uan {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBhLa66Uan .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhLa66Uan .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhLa66Uan .text-primary {
  background-color: #073b4c;
}
.cid-uBhLa66Uan .mbr-section-title {
  color: #232323;
}
.cid-uBhDkAiqM9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uBhDkAiqM9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhDkAiqM9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhDkAiqM9 .items-wrap {
  justify-content: space-between;
}
.cid-uBhDkAiqM9 .content-wrapper {
  padding: 96px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uBhDkAiqM9 .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper {
    padding: 26px 22px 22px;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .title-wrapper .title-wrap .logo-wrap {
  margin-right: 68px;
}
.cid-uBhDkAiqM9 .content-wrapper .title-wrapper .title-wrap .logo-wrap img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
}
@media (max-width: 1440px) {
  .cid-uBhDkAiqM9 .content-wrapper .title-wrapper .title-wrap .logo-wrap {
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .title-wrapper .title-wrap .logo-wrap {
    margin-right: 0;
    margin-bottom: 22px;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBhDkAiqM9 .content-wrapper .tabs-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .tabs-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBhDkAiqM9 .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 12px 12px 0;
}
.cid-uBhDkAiqM9 .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #4d73b4;
  padding: 11px 32px;
  border: none;
  background-color: #f5f5fb;
  transition: all 0.3s ease-in-out;
}
.cid-uBhDkAiqM9 .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #4d73b4;
  color: #f5f5fb;
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content {
    display: block;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .list-wrapper {
  width: 50%;
  padding-right: 60px;
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .list-wrapper {
    padding-right: 0;
    width: 100%;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list {
  margin-bottom: 32px;
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .list-wrapper .list .item-wrap::marker {
  font-weight: 700;
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .image-wrap {
  width: 50%;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .image-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .image-wrap img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBhDkAiqM9 .content-wrapper .tab-content .tab-pane .item-content .image-wrap img {
    height: 350px;
  }
}
.cid-uBhDkAiqM9 .mbr-section-title {
  color: #191c25;
}
.cid-uBhDkAiqM9 .list {
  color: #191c25;
}
.cid-uBhDkAiqM9 .list,
.cid-uBhDkAiqM9 .item-wrap {
  color: #232323;
}
.cid-uR8LvRMDYh {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uR8LvRMDYh .mbr-text {
  color: #c1c1c1;
}
.cid-uR8LvRMDYh H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-uR8JqIkWDS {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR8JqIkWDS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8JqIkWDS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8JqIkWDS .row {
  justify-content: center;
}
.cid-uR8JqIkWDS .title-wrapper {
  margin-bottom: 32px;
}
.cid-uR8JqIkWDS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uR8JqIkWDS .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uR8JqIkWDS .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffffff;
  z-index: -1;
}
.cid-uR8JqIkWDS .mbr-figure iframe {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uR8JqIkWDS .video-block {
    margin-bottom: 24px;
  }
}
.cid-uR8JqIkWDS .mbr-figure__img {
  object-fit: cover;
}
.cid-uR8JqIkWDS .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-v5FKbPo1lB {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v5FKbPo1lB .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5FKbPo1lB .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v5FKbPo1lB .mbr-section-title {
  margin: 0;
}
.cid-v5FKbPo1lB .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5FKbPo1lB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FKbPo1lB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5FKbPo1lB H1 {
  text-align: center;
}
.cid-v5FKbPo1lB H3 {
  text-align: center;
}
.cid-uBhwY6TnUd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-uBhwY6TnUd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhwY6TnUd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uBhwY6TnUd .container {
    padding: 0 16px;
  }
}
.cid-uBhwY6TnUd .row {
  position: relative;
  justify-content: space-between;
}
.cid-uBhwY6TnUd .row .card {
  justify-content: space-between;
}
.cid-uBhwY6TnUd .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uBhwY6TnUd .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBhwY6TnUd .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uBhwY6TnUd .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBhwY6TnUd .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uBhwY6TnUd .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-uBhwY6TnUd .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uBhwY6TnUd .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBhwY6TnUd .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-uBhwY6TnUd .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-uBhwY6TnUd .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-uBhwY6TnUd .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-uBhwY6TnUd .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uBhwY6TnUd .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-uBhwY6TnUd .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-uBhwY6TnUd .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uBhwY6TnUd .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uBhwY6TnUd .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #4967af;
}
.cid-uBhwY6TnUd .dragArea.row .form-group .form-control:hover,
.cid-uBhwY6TnUd .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uBhwY6TnUd .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-uBhwY6TnUd .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-uBhwY6TnUd .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uBhwY6TnUd .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-uBhwY6TnUd .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uBhwY6TnUd .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-uBhwY6TnUd .mbr-section-title {
  color: #000000;
}
.cid-uBhwY6TnUd .mbr-text {
  color: #000000;
}
.cid-uBhwY6TnUd .mbr-contact {
  color: #000000;
}
.cid-uBhwY6TnUd label {
  color: #000000;
}
.cid-uBhwY6TnUd .mbr-section-title,
.cid-uBhwY6TnUd .mbr-section-btn {
  color: #4d73b4;
}
.cid-uBhwY7aftX {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-uBhwY7aftX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhwY7aftX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhwY7aftX .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBhwY7aftX .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uBhwY7aftX .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBhwY7aftX .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uBhwY7aftX .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBhwY7aftX .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBhwY7aftX .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBhwY7aftX .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uBhwY7aftX .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uBhwY7aftX .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uBhwY7aftX .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uBhwY7aftX .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBhwY7aftX .items-wrapper .card {
  padding: 0 32px;
}
.cid-uBhwY7aftX .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBhwY7aftX .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBhwY7aftX .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBhwY7aftX .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBhwY7aftX .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBhwY7aftX .list-wrapper .list .item-wrap:hover,
.cid-uBhwY7aftX .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uBhwY7aftX .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBhwY7aftX .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBhwY7aftX .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBhwY7aftX .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBhwY7aftX .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uBhwY7aftX .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uBhwY7aftX .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-uBhwY7aftX .mbr-text,
.cid-uBhwY7aftX .text-wrapper {
  color: #9aa0a6;
}
.cid-uBhwY7aftX .list {
  color: #9aa0a6;
}
.cid-uBhwY7aftX .list,
.cid-uBhwY7aftX .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-uBhwY7aftX .mbr-desc,
.cid-uBhwY7aftX .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-uBhwY7aftX .mbr-text,
.cid-uBhwY7aftX .mbr-section-btn {
  color: #ffffff;
}
.cid-uQYbz8o96p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uQYbz8o96p .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uQYbz8o96p nav.navbar {
  position: fixed;
}
.cid-uQYbz8o96p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQYbz8o96p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQYbz8o96p .dropdown-item:hover,
.cid-uQYbz8o96p .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-uQYbz8o96p .dropdown-item:hover span {
  color: white;
}
.cid-uQYbz8o96p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQYbz8o96p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQYbz8o96p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQYbz8o96p .nav-link {
  position: relative;
}
.cid-uQYbz8o96p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .container {
    flex-wrap: nowrap;
  }
}
.cid-uQYbz8o96p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown-menu,
.cid-uQYbz8o96p .navbar.opened {
  background: #0f1b3d !important;
}
.cid-uQYbz8o96p .nav-item:focus,
.cid-uQYbz8o96p .nav-link:focus {
  outline: none;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQYbz8o96p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQYbz8o96p .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.opened {
  transition: all 0.3s;
}
.cid-uQYbz8o96p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQYbz8o96p .navbar .navbar-logo img {
  width: auto;
}
.cid-uQYbz8o96p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar.collapsed {
  justify-content: center;
}
.cid-uQYbz8o96p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQYbz8o96p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQYbz8o96p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQYbz8o96p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQYbz8o96p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQYbz8o96p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQYbz8o96p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQYbz8o96p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQYbz8o96p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQYbz8o96p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQYbz8o96p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQYbz8o96p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQYbz8o96p .navbar.navbar-short {
  min-height: 80px;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQYbz8o96p .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQYbz8o96p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQYbz8o96p .dropdown-item.active,
.cid-uQYbz8o96p .dropdown-item:active {
  background-color: transparent;
}
.cid-uQYbz8o96p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQYbz8o96p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQYbz8o96p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQYbz8o96p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQYbz8o96p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQYbz8o96p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQYbz8o96p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQYbz8o96p .navbar {
    height: 70px;
  }
  .cid-uQYbz8o96p .navbar.opened {
    height: auto;
  }
  .cid-uQYbz8o96p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA4eBlXZu0 {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/19vnvy2panov9uzsquqlj-1920x1088.webp");
}
.cid-uA4eBlXZu0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA4eBlXZu0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA4eBlXZu0 .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-uA4eBlXZu0 .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-uA4eBlXZu0 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uA4eBlXZu0 .container {
    padding: 0 20px;
  }
}
.cid-uA4eBlXZu0 .row {
  height: 100%;
}
.cid-uA4eBlXZu0 .row .card {
  justify-content: flex-end;
}
.cid-uA4eBlXZu0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA4eBlXZu0 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uA4eBlXZu0 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uA4eBlXZu0 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uA4eBlXZu0 .mbr-section-title {
  color: #ffffff;
}
.cid-t68gwRyvCN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t68gwRyvCN .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t68gwRyvCN .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #eeeef7;
}
@media (max-width: 991px) {
  .cid-t68gwRyvCN .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t68gwRyvCN .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t68gwRyvCN .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #4d73b4;
}
.cid-t68gwRyvCN .card-title {
  color: #475569;
}
.cid-vjDaXGlO4u {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #0f1b3d;
}
.cid-vjDaXGlO4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjDaXGlO4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vjDaXGlO4u .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vjDaXGlO4u .title-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vjDaXGlO4u .title-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-vjDaXGlO4u .title-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjDaXGlO4u .title-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row {
  margin: 0;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group .form-control {
  background-color: #ffffff;
  padding: 8px 20px;
  box-shadow: none;
  border: 2px solid transparent !important;
  margin-bottom: 20px;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #0f1b3d;
  opacity: .5;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #22a5e5 !important;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group textarea {
  min-height: 140px;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #0f1b3d;
  border-color: #0f1b3d;
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-vjDaXGlO4u .form-wrap .dragArea.row .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-vjDaXGlO4u .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vjDaXGlO4u .mbr-label {
  color: #22a5e5;
}
.cid-vjDaXGlO4u .mbr-section-title {
  color: #ffffff;
}
.cid-vjDaXGlO4u label {
  color: #ffffff;
}
.cid-uAOSp3vMHt {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-uAOSp3vMHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOSp3vMHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAOSp3vMHt .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAOSp3vMHt .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAOSp3vMHt .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:hover,
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAOSp3vMHt .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uAOSp3vMHt .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .text-wrapper {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list,
.cid-uAOSp3vMHt .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-uAOSp3vMHt .mbr-desc,
.cid-uAOSp3vMHt .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .mbr-section-btn {
  color: #ffffff;
}
.cid-uRfqp7khn9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uRfqp7khn9 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uRfqp7khn9 nav.navbar {
  position: fixed;
}
.cid-uRfqp7khn9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRfqp7khn9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uRfqp7khn9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uRfqp7khn9 .dropdown-item:hover,
.cid-uRfqp7khn9 .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-uRfqp7khn9 .dropdown-item:hover span {
  color: white;
}
.cid-uRfqp7khn9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRfqp7khn9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRfqp7khn9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRfqp7khn9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRfqp7khn9 .nav-link {
  position: relative;
}
.cid-uRfqp7khn9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uRfqp7khn9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uRfqp7khn9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRfqp7khn9 .dropdown-menu,
.cid-uRfqp7khn9 .navbar.opened {
  background: #0f1b3d !important;
}
.cid-uRfqp7khn9 .nav-item:focus,
.cid-uRfqp7khn9 .nav-link:focus {
  outline: none;
}
.cid-uRfqp7khn9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRfqp7khn9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRfqp7khn9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRfqp7khn9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRfqp7khn9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRfqp7khn9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRfqp7khn9 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-uRfqp7khn9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uRfqp7khn9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRfqp7khn9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uRfqp7khn9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRfqp7khn9 .navbar.collapsed {
  justify-content: center;
}
.cid-uRfqp7khn9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRfqp7khn9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRfqp7khn9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uRfqp7khn9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRfqp7khn9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRfqp7khn9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uRfqp7khn9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRfqp7khn9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRfqp7khn9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRfqp7khn9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRfqp7khn9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRfqp7khn9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRfqp7khn9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRfqp7khn9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uRfqp7khn9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRfqp7khn9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRfqp7khn9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRfqp7khn9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRfqp7khn9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRfqp7khn9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uRfqp7khn9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uRfqp7khn9 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uRfqp7khn9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRfqp7khn9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uRfqp7khn9 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRfqp7khn9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRfqp7khn9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRfqp7khn9 .dropdown-item.active,
.cid-uRfqp7khn9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uRfqp7khn9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRfqp7khn9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRfqp7khn9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRfqp7khn9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-uRfqp7khn9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRfqp7khn9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRfqp7khn9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRfqp7khn9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uRfqp7khn9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRfqp7khn9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-uRfqp7khn9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRfqp7khn9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRfqp7khn9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRfqp7khn9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRfqp7khn9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRfqp7khn9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRfqp7khn9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRfqp7khn9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRfqp7khn9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uRfqp7khn9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRfqp7khn9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRfqp7khn9 .navbar {
    height: 70px;
  }
  .cid-uRfqp7khn9 .navbar.opened {
    height: auto;
  }
  .cid-uRfqp7khn9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRfra43EFa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRfra43EFa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRfra43EFa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRfra43EFa .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uRfra43EFa .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-uRfra43EFa .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uRfra43EFa .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uRfra43EFa .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uRfra43EFa .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uRfra43EFa .mbr-label {
  color: #22a5e5;
}
.cid-uRfra43EFa .mbr-section-title {
  color: #000000;
}
.cid-uRfra43EFa .mbr-text {
  color: #475569;
}
.cid-uRfra43EFa .mbr-section-title,
.cid-uRfra43EFa .mbr-section-btn,
.cid-uRfra43EFa .title-wrapper {
  color: #4d73b4;
}
.cid-vi66gREfnc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-vi66gREfnc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi66gREfnc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vi66gREfnc .container {
    padding: 0 16px;
  }
}
.cid-vi66gREfnc .row {
  position: relative;
  justify-content: space-between;
}
.cid-vi66gREfnc .row .card {
  justify-content: space-between;
}
.cid-vi66gREfnc .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-vi66gREfnc .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vi66gREfnc .title-wrapper .mbr-section-title span {
  color: #0f1b3d;
}
.cid-vi66gREfnc .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vi66gREfnc .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-vi66gREfnc .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-vi66gREfnc .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-vi66gREfnc .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-vi66gREfnc .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-vi66gREfnc .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-vi66gREfnc .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-vi66gREfnc .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vi66gREfnc .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-vi66gREfnc .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-vi66gREfnc .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-vi66gREfnc .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-vi66gREfnc .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-vi66gREfnc .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #0f1b3d;
}
.cid-vi66gREfnc .dragArea.row .form-group .form-control:hover,
.cid-vi66gREfnc .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-vi66gREfnc .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-vi66gREfnc .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-vi66gREfnc .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-vi66gREfnc .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-vi66gREfnc .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-vi66gREfnc .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-vi66gREfnc .mbr-section-title {
  color: #000000;
}
.cid-vi66gREfnc .mbr-text {
  color: #9aa0a6;
}
.cid-vi66gREfnc .mbr-contact {
  color: #000000;
}
.cid-vi66gREfnc label {
  color: #000000;
}
.cid-vi66gREfnc .mbr-section-title,
.cid-vi66gREfnc .mbr-section-btn {
  color: #4d73b4;
}
.cid-uRfqp8Ilsp {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-uRfqp8Ilsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRfqp8Ilsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRfqp8Ilsp .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRfqp8Ilsp .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uRfqp8Ilsp .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRfqp8Ilsp .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uRfqp8Ilsp .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uRfqp8Ilsp .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uRfqp8Ilsp .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uRfqp8Ilsp .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uRfqp8Ilsp .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uRfqp8Ilsp .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uRfqp8Ilsp .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uRfqp8Ilsp .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uRfqp8Ilsp .items-wrapper .card {
  padding: 0 32px;
}
.cid-uRfqp8Ilsp .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uRfqp8Ilsp .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uRfqp8Ilsp .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uRfqp8Ilsp .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uRfqp8Ilsp .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uRfqp8Ilsp .list-wrapper .list .item-wrap:hover,
.cid-uRfqp8Ilsp .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uRfqp8Ilsp .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uRfqp8Ilsp .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uRfqp8Ilsp .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uRfqp8Ilsp .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uRfqp8Ilsp .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uRfqp8Ilsp .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uRfqp8Ilsp .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-uRfqp8Ilsp .mbr-text,
.cid-uRfqp8Ilsp .text-wrapper {
  color: #9aa0a6;
}
.cid-uRfqp8Ilsp .list {
  color: #9aa0a6;
}
.cid-uRfqp8Ilsp .list,
.cid-uRfqp8Ilsp .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-uRfqp8Ilsp .mbr-desc,
.cid-uRfqp8Ilsp .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-uRfqp8Ilsp .mbr-text,
.cid-uRfqp8Ilsp .mbr-section-btn {
  color: #ffffff;
}
.cid-v56UhLSyLC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v56UhLSyLC .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-v56UhLSyLC nav.navbar {
  position: fixed;
}
.cid-v56UhLSyLC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v56UhLSyLC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v56UhLSyLC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v56UhLSyLC .dropdown-item:hover,
.cid-v56UhLSyLC .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-v56UhLSyLC .dropdown-item:hover span {
  color: white;
}
.cid-v56UhLSyLC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v56UhLSyLC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v56UhLSyLC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v56UhLSyLC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v56UhLSyLC .nav-link {
  position: relative;
}
.cid-v56UhLSyLC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v56UhLSyLC .container {
    flex-wrap: nowrap;
  }
}
.cid-v56UhLSyLC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v56UhLSyLC .dropdown-menu,
.cid-v56UhLSyLC .navbar.opened {
  background: #0f1b3d !important;
}
.cid-v56UhLSyLC .nav-item:focus,
.cid-v56UhLSyLC .nav-link:focus {
  outline: none;
}
.cid-v56UhLSyLC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v56UhLSyLC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v56UhLSyLC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v56UhLSyLC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v56UhLSyLC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v56UhLSyLC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v56UhLSyLC .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-v56UhLSyLC .navbar.opened {
  transition: all 0.3s;
}
.cid-v56UhLSyLC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v56UhLSyLC .navbar .navbar-logo img {
  width: auto;
}
.cid-v56UhLSyLC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v56UhLSyLC .navbar.collapsed {
  justify-content: center;
}
.cid-v56UhLSyLC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v56UhLSyLC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v56UhLSyLC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-v56UhLSyLC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v56UhLSyLC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v56UhLSyLC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v56UhLSyLC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v56UhLSyLC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v56UhLSyLC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v56UhLSyLC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v56UhLSyLC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v56UhLSyLC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v56UhLSyLC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v56UhLSyLC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v56UhLSyLC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v56UhLSyLC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v56UhLSyLC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v56UhLSyLC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v56UhLSyLC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v56UhLSyLC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v56UhLSyLC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v56UhLSyLC .navbar.navbar-short {
  min-height: 80px;
}
.cid-v56UhLSyLC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v56UhLSyLC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v56UhLSyLC .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v56UhLSyLC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v56UhLSyLC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v56UhLSyLC .dropdown-item.active,
.cid-v56UhLSyLC .dropdown-item:active {
  background-color: transparent;
}
.cid-v56UhLSyLC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v56UhLSyLC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v56UhLSyLC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v56UhLSyLC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-v56UhLSyLC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v56UhLSyLC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v56UhLSyLC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v56UhLSyLC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v56UhLSyLC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v56UhLSyLC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-v56UhLSyLC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v56UhLSyLC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v56UhLSyLC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v56UhLSyLC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v56UhLSyLC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v56UhLSyLC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v56UhLSyLC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v56UhLSyLC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v56UhLSyLC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v56UhLSyLC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v56UhLSyLC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v56UhLSyLC .navbar {
    height: 70px;
  }
  .cid-v56UhLSyLC .navbar.opened {
    height: auto;
  }
  .cid-v56UhLSyLC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5733MH5bx {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/abstract-banner-with-a-wireframe-landscape-design-1711-2000x1000.webp");
}
.cid-v5733MH5bx .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5733MH5bx .mbr-overlay {
  background: #0f1b3d;
  background: linear-gradient(#0f1b3d -10%, #0f1b3d 75%);
}
.cid-v5733MH5bx .mbr-section-title {
  margin: 0;
}
.cid-v5733MH5bx .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5733MH5bx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5733MH5bx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5EActg7Sz {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5EActg7Sz .item:focus,
.cid-v5EActg7Sz span:focus {
  outline: none;
}
.cid-v5EActg7Sz .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v5EActg7Sz .item {
    margin-bottom: 1rem;
  }
}
.cid-v5EActg7Sz .mbr-card-title {
  background: #2ba7ff;
  width: fit-content;
  border-radius: 0.7rem;
  padding: 3px 5px;
}
.cid-v5EActg7Sz .item-content {
  margin-top: 2rem;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v5EActg7Sz .item-content {
    padding: 1rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v5EActg7Sz .item-content {
    padding: 1rem 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.cid-v5EActg7Sz .item-wrapper {
  position: relative;
  background: #f2effc;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v5EActg7Sz .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-v5EActg7Sz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v5EActg7Sz .mbr-text,
.cid-v5EActg7Sz .item .mbr-section-btn {
  text-align: center;
}
.cid-v5EActg7Sz .content-head {
  max-width: 800px;
}
.cid-v5EActg7Sz .mbr-number {
  color: #ffffff;
}
.cid-v5EActg7Sz .mbr-section-subtitle,
.cid-v5EActg7Sz .mbr-section-head .mbr-section-btn {
  text-align: center;
}
.cid-v5EActg7Sz .mbr-text {
  text-align: left;
}
.cid-v5EActg7Sz .mbr-text,
.cid-v5EActg7Sz .mbr-card-btn {
  text-align: left;
}
.cid-v5EActg7Sz .mbr-text,
.cid-v5EActg7Sz .mbr-section-btn {
  text-align: left;
}
.cid-v5EActg7Sz .mbr-text,
.cid-v5EActg7Sz .item-footer .mbr-section-btn {
  text-align: left;
}
.cid-v5EActg7Sz .card-text,
.cid-v5EActg7Sz .item .mbr-section-btn {
  text-align: left;
}
.cid-v5EActg7Sz .card-title {
  text-align: left;
  color: #4d73b4;
}
.cid-vi2hitwIvr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-vi2hitwIvr .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-vi2hitwIvr .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-vi2hitwIvr .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-vi2hitwIvr .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-vi2hitwIvr .container {
    padding: 0 16px;
  }
}
.cid-vi2hitwIvr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vi2hitwIvr .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vi2hitwIvr .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-vi2hitwIvr .embla__button--next,
.cid-vi2hitwIvr .embla__button--prev {
  display: flex;
}
.cid-vi2hitwIvr .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vi2hitwIvr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vi2hitwIvr .embla__button:hover {
  opacity: .7 !important;
}
.cid-vi2hitwIvr .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-vi2hitwIvr .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-vi2hitwIvr .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-vi2hitwIvr .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-vi2hitwIvr .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-vi2hitwIvr .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-vi2hitwIvr .embla {
  position: relative;
  width: 100%;
}
.cid-vi2hitwIvr .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vi2hitwIvr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vi2hitwIvr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vi2hitwIvr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vi2hitwIvr .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-vjDb5fbgch {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #0f1b3d;
}
.cid-vjDb5fbgch .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjDb5fbgch .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vjDb5fbgch .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vjDb5fbgch .title-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vjDb5fbgch .title-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-vjDb5fbgch .title-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjDb5fbgch .title-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vjDb5fbgch .form-wrap .dragArea.row {
  margin: 0;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group .form-control {
  background-color: #ffffff;
  padding: 8px 20px;
  box-shadow: none;
  border: 2px solid transparent !important;
  margin-bottom: 20px;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #0f1b3d;
  opacity: .5;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #22a5e5 !important;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group textarea {
  min-height: 140px;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #0f1b3d;
  border-color: #0f1b3d;
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-vjDb5fbgch .form-wrap .dragArea.row .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-vjDb5fbgch .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vjDb5fbgch .mbr-label {
  color: #22a5e5;
}
.cid-vjDb5fbgch .mbr-section-title {
  color: #ffffff;
}
.cid-vjDb5fbgch label {
  color: #ffffff;
}
.cid-v56UhQPQ1u {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-v56UhQPQ1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v56UhQPQ1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v56UhQPQ1u .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v56UhQPQ1u .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-v56UhQPQ1u .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v56UhQPQ1u .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-v56UhQPQ1u .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v56UhQPQ1u .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v56UhQPQ1u .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v56UhQPQ1u .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-v56UhQPQ1u .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v56UhQPQ1u .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v56UhQPQ1u .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-v56UhQPQ1u .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v56UhQPQ1u .items-wrapper .card {
  padding: 0 32px;
}
.cid-v56UhQPQ1u .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v56UhQPQ1u .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v56UhQPQ1u .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v56UhQPQ1u .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v56UhQPQ1u .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v56UhQPQ1u .list-wrapper .list .item-wrap:hover,
.cid-v56UhQPQ1u .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v56UhQPQ1u .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v56UhQPQ1u .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v56UhQPQ1u .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v56UhQPQ1u .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v56UhQPQ1u .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v56UhQPQ1u .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-v56UhQPQ1u .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-v56UhQPQ1u .mbr-text,
.cid-v56UhQPQ1u .text-wrapper {
  color: #9aa0a6;
}
.cid-v56UhQPQ1u .list {
  color: #9aa0a6;
}
.cid-v56UhQPQ1u .list,
.cid-v56UhQPQ1u .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-v56UhQPQ1u .mbr-desc,
.cid-v56UhQPQ1u .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-v56UhQPQ1u .mbr-text,
.cid-v56UhQPQ1u .mbr-section-btn {
  color: #ffffff;
}
.cid-v7xHLPCxqg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7xHLPCxqg .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-v7xHLPCxqg nav.navbar {
  position: fixed;
}
.cid-v7xHLPCxqg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7xHLPCxqg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7xHLPCxqg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7xHLPCxqg .dropdown-item:hover,
.cid-v7xHLPCxqg .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-v7xHLPCxqg .dropdown-item:hover span {
  color: white;
}
.cid-v7xHLPCxqg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7xHLPCxqg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7xHLPCxqg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7xHLPCxqg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7xHLPCxqg .nav-link {
  position: relative;
}
.cid-v7xHLPCxqg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7xHLPCxqg .container {
    flex-wrap: nowrap;
  }
}
.cid-v7xHLPCxqg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7xHLPCxqg .dropdown-menu,
.cid-v7xHLPCxqg .navbar.opened {
  background: #0f1b3d !important;
}
.cid-v7xHLPCxqg .nav-item:focus,
.cid-v7xHLPCxqg .nav-link:focus {
  outline: none;
}
.cid-v7xHLPCxqg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7xHLPCxqg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7xHLPCxqg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7xHLPCxqg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7xHLPCxqg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7xHLPCxqg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7xHLPCxqg .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-v7xHLPCxqg .navbar.opened {
  transition: all 0.3s;
}
.cid-v7xHLPCxqg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7xHLPCxqg .navbar .navbar-logo img {
  width: auto;
}
.cid-v7xHLPCxqg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7xHLPCxqg .navbar.collapsed {
  justify-content: center;
}
.cid-v7xHLPCxqg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7xHLPCxqg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7xHLPCxqg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-v7xHLPCxqg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7xHLPCxqg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7xHLPCxqg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7xHLPCxqg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7xHLPCxqg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7xHLPCxqg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7xHLPCxqg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7xHLPCxqg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7xHLPCxqg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7xHLPCxqg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7xHLPCxqg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7xHLPCxqg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7xHLPCxqg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7xHLPCxqg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7xHLPCxqg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7xHLPCxqg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7xHLPCxqg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7xHLPCxqg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7xHLPCxqg .navbar.navbar-short {
  min-height: 80px;
}
.cid-v7xHLPCxqg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7xHLPCxqg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7xHLPCxqg .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7xHLPCxqg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7xHLPCxqg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7xHLPCxqg .dropdown-item.active,
.cid-v7xHLPCxqg .dropdown-item:active {
  background-color: transparent;
}
.cid-v7xHLPCxqg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7xHLPCxqg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7xHLPCxqg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7xHLPCxqg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-v7xHLPCxqg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7xHLPCxqg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7xHLPCxqg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7xHLPCxqg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7xHLPCxqg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7xHLPCxqg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-v7xHLPCxqg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7xHLPCxqg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7xHLPCxqg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7xHLPCxqg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7xHLPCxqg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7xHLPCxqg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7xHLPCxqg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7xHLPCxqg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7xHLPCxqg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7xHLPCxqg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7xHLPCxqg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7xHLPCxqg .navbar {
    height: 70px;
  }
  .cid-v7xHLPCxqg .navbar.opened {
    height: auto;
  }
  .cid-v7xHLPCxqg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7xHLQ2TJA {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/2151908096-2000x1367.webp");
}
.cid-v7xHLQ2TJA .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v7xHLQ2TJA .mbr-overlay {
  background: #22a5e5;
  background: linear-gradient(#22a5e5 -10%, #000000 75%);
}
.cid-v7xHLQ2TJA .mbr-section-title {
  margin: 0;
}
.cid-v7xHLQ2TJA .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7xHLQ2TJA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xHLQ2TJA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xHLQsDEI {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-v7xHLQsDEI .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-v7xHLQsDEI .container {
    max-width: 1400px;
  }
}
.cid-v7xHLQsDEI .card {
  margin: auto;
}
.cid-v7xHLQsDEI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d73b4;
  margin-bottom: 2rem;
}
.cid-v7xHLQsDEI .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7xHLQsDEI .row {
  justify-content: center;
}
.cid-v7xHLQsDEI .card-title,
.cid-v7xHLQsDEI .card-box {
  color: #4d73b4;
}
.cid-v7xHLQN2ve {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v7xHLQN2ve .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xHLQN2ve .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xHLQN2ve img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-v7xHLQN2ve img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-v7xHLQN2ve .row {
  flex-direction: row-reverse;
}
.cid-v7xHLQN2ve .row {
  align-items: center;
}
.cid-v7xHLQN2ve .mbr-section-title {
  color: #4d73b4;
}
.cid-v7xHLQN2ve .mbr-text,
.cid-v7xHLQN2ve .mbr-section-btn {
  color: #232323;
}
.cid-v7xHLR5Chk {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7xHLR5Chk .mbr-text {
  color: #c1c1c1;
}
.cid-v7xHLR5Chk H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-v7xHLRmM1D {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7xHLRmM1D .row {
  padding: 0 1rem;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 992px) {
  .cid-v7xHLRmM1D .row {
    padding-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .cid-v7xHLRmM1D .row {
    padding: 0 0.75rem;
  }
}
.cid-v7xHLRmM1D .card-wrapper {
  display: flex;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v7xHLRmM1D .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
}
.cid-v7xHLRmM1D .card-text {
  color: #232323;
}
.cid-v7xHLRmM1D .mbr-iconfont {
  font-size: 25px;
  color: #ffffff;
}
.cid-v7xHLRmM1D .icon-box {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v7xHLRmM1D .icon-box {
    margin-bottom: 28px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-v7xHLRmM1D .card-box {
    text-align: center;
  }
}
.cid-v7xHLRmM1D .card:nth-child(1) .icon-box {
  background: #4d73b4;
}
.cid-v7xHLRmM1D .card:nth-child(2) .icon-box {
  background: #4d73b4;
}
.cid-v7xHLRmM1D .card:nth-child(3) .icon-box {
  background: #4d73b4;
}
.cid-v7xHLRmM1D .card:nth-child(4) .icon-box {
  background: #40b0bf;
}
.cid-v7xHLRmM1D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xHLRmM1D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xHLRmM1D .card-title {
  color: #232323;
}
.cid-v7xHLRIzm0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7xHLRIzm0 .mbr-text {
  color: #c1c1c1;
}
.cid-v7xHLRIzm0 H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-v7xHLRXaC5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .container {
    padding: 0 22px;
  }
}
.cid-v7xHLRXaC5 .row {
  justify-content: space-between;
}
.cid-v7xHLRXaC5 .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-v7xHLRXaC5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v7xHLRXaC5 .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #fafafa;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-v7xHLRXaC5 .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-v7xHLRXaC5 .embla__button--next,
.cid-v7xHLRXaC5 .embla__button--prev {
  display: flex;
}
.cid-v7xHLRXaC5 .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  top: auto;
  bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-v7xHLRXaC5 .embla__button:hover {
  color: #bbbbbb !important;
}
.cid-v7xHLRXaC5 .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-v7xHLRXaC5 .embla__button.embla__button--next {
  right: 0;
}
.cid-v7xHLRXaC5 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-v7xHLRXaC5 .embla {
    padding-bottom: 4rem;
  }
}
.cid-v7xHLRXaC5 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v7xHLRXaC5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7xHLRXaC5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7xHLRXaC5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7xHLRXaC5 .mbr-section-title {
  color: #000000;
}
.cid-v7xHLRXaC5 .item-title {
  color: #232323;
}
.cid-v7xHLRXaC5 .item-text {
  color: #232323;
}
.cid-v7xHLSkFcm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4967af;
}
.cid-v7xHLSkFcm .mbr-text {
  color: #767676;
}
.cid-v7xHLSkFcm .mbr-section-subtitle {
  color: #767676;
}
.cid-v7xHLSkFcm .title .num {
  width: 100%;
  display: block;
}
.cid-v7xHLSkFcm .title .card-title {
  z-index: 1;
}
.cid-v7xHLSkFcm .num {
  color: #36b9c8;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v7xHLSkFcm * {
    text-align: center !important;
  }
  .cid-v7xHLSkFcm .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v7xHLSkFcm .mbr-section-title,
.cid-v7xHLSkFcm .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-v7xHLSkFcm .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-v7xHLSkFcm .card-title,
.cid-v7xHLSkFcm .card-img {
  color: #ffffff;
  text-align: left;
}
.cid-v7xHLSkFcm .mbr-text,
.cid-v7xHLSkFcm .mbr-section-btn {
  color: #ffffff;
}
.cid-v7xHLSVaUt {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #f2f2f2;
}
.cid-v7xHLSVaUt .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #4d73b4;
}
@media (max-width: 992px) {
  .cid-v7xHLSVaUt .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v7xHLSVaUt .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.2;
  color: #4d73b4;
}
.cid-v7xHLSVaUt .mbr-text {
  line-height: 1.5;
  font-weight: 300;
  color: #232323;
}
.cid-v7xHLSVaUt .mbr-iconfont {
  color: #22a5e5;
  font-size: 3rem;
  margin-bottom: .85rem;
}
.cid-v7xHLSVaUt .wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-v7xHLSVaUt .wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v7xHLSVaUt .d-flex {
    flex-direction: column;
  }
}
.cid-v7xHLTj6Is {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-v7xHLTj6Is .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xHLTj6Is .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v7xHLTj6Is .container {
    padding: 0 22px;
  }
}
.cid-v7xHLTj6Is .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xHLTj6Is .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v7xHLTj6Is .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v7xHLTj6Is .mbr-section-title {
  color: #4d73b4;
}
.cid-v7xHLTj6Is .mbr-text {
  color: #000000;
}
.cid-v7xHLTBbg4 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-v7xHLTBbg4 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7xHLTBbg4 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7xHLTBbg4 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7xHLTBbg4 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7xHLTBbg4 .container {
    padding: 0 16px;
  }
}
.cid-v7xHLTBbg4 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-v7xHLTBbg4 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v7xHLTBbg4 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-v7xHLTBbg4 .embla__button--next,
.cid-v7xHLTBbg4 .embla__button--prev {
  display: flex;
}
.cid-v7xHLTBbg4 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-v7xHLTBbg4 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7xHLTBbg4 .embla__button:hover {
  opacity: .7 !important;
}
.cid-v7xHLTBbg4 .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-v7xHLTBbg4 .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-v7xHLTBbg4 .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-v7xHLTBbg4 .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-v7xHLTBbg4 .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-v7xHLTBbg4 .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-v7xHLTBbg4 .embla {
  position: relative;
  width: 100%;
}
.cid-v7xHLTBbg4 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-v7xHLTBbg4 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7xHLTBbg4 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7xHLTBbg4 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7xHLTBbg4 .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-v7xHLU3DJa {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v7xHLU3DJa .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v7xHLU3DJa .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v7xHLU3DJa .mbr-section-title {
  margin: 0;
}
.cid-v7xHLU3DJa .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7xHLU3DJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xHLU3DJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xHLU3DJa H1 {
  text-align: center;
}
.cid-v7xHLU3DJa H3 {
  text-align: center;
}
.cid-v7xHLUmKV1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-v7xHLUmKV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xHLUmKV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-v7xHLUmKV1 .container {
    padding: 0 16px;
  }
}
.cid-v7xHLUmKV1 .row {
  position: relative;
  justify-content: space-between;
}
.cid-v7xHLUmKV1 .row .card {
  justify-content: space-between;
}
.cid-v7xHLUmKV1 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7xHLUmKV1 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7xHLUmKV1 .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-v7xHLUmKV1 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v7xHLUmKV1 .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7xHLUmKV1 .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-v7xHLUmKV1 .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v7xHLUmKV1 .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7xHLUmKV1 .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-v7xHLUmKV1 .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-v7xHLUmKV1 .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-v7xHLUmKV1 .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7xHLUmKV1 .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-v7xHLUmKV1 .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-v7xHLUmKV1 .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #4967af;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group .form-control:hover,
.cid-v7xHLUmKV1 .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-v7xHLUmKV1 .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-v7xHLUmKV1 .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-v7xHLUmKV1 .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-v7xHLUmKV1 .mbr-section-title {
  color: #000000;
}
.cid-v7xHLUmKV1 .mbr-text {
  color: #232323;
}
.cid-v7xHLUmKV1 .mbr-contact {
  color: #000000;
}
.cid-v7xHLUmKV1 label {
  color: #000000;
}
.cid-v7xHLUmKV1 .mbr-section-title,
.cid-v7xHLUmKV1 .mbr-section-btn {
  color: #4d73b4;
}
.cid-v7xHLUKoUC {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-v7xHLUKoUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xHLUKoUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xHLUKoUC .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v7xHLUKoUC .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-v7xHLUKoUC .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xHLUKoUC .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-v7xHLUKoUC .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v7xHLUKoUC .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v7xHLUKoUC .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v7xHLUKoUC .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-v7xHLUKoUC .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v7xHLUKoUC .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7xHLUKoUC .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-v7xHLUKoUC .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v7xHLUKoUC .items-wrapper .card {
  padding: 0 32px;
}
.cid-v7xHLUKoUC .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v7xHLUKoUC .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v7xHLUKoUC .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v7xHLUKoUC .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v7xHLUKoUC .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v7xHLUKoUC .list-wrapper .list .item-wrap:hover,
.cid-v7xHLUKoUC .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v7xHLUKoUC .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v7xHLUKoUC .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v7xHLUKoUC .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v7xHLUKoUC .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v7xHLUKoUC .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7xHLUKoUC .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-v7xHLUKoUC .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-v7xHLUKoUC .mbr-text,
.cid-v7xHLUKoUC .text-wrapper {
  color: #9aa0a6;
}
.cid-v7xHLUKoUC .list {
  color: #9aa0a6;
}
.cid-v7xHLUKoUC .list,
.cid-v7xHLUKoUC .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-v7xHLUKoUC .mbr-desc,
.cid-v7xHLUKoUC .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-v7xHLUKoUC .mbr-text,
.cid-v7xHLUKoUC .mbr-section-btn {
  color: #ffffff;
}
.cid-uQYbz8o96p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uQYbz8o96p .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uQYbz8o96p nav.navbar {
  position: fixed;
}
.cid-uQYbz8o96p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQYbz8o96p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQYbz8o96p .dropdown-item:hover,
.cid-uQYbz8o96p .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-uQYbz8o96p .dropdown-item:hover span {
  color: white;
}
.cid-uQYbz8o96p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQYbz8o96p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQYbz8o96p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQYbz8o96p .nav-link {
  position: relative;
}
.cid-uQYbz8o96p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .container {
    flex-wrap: nowrap;
  }
}
.cid-uQYbz8o96p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown-menu,
.cid-uQYbz8o96p .navbar.opened {
  background: #0f1b3d !important;
}
.cid-uQYbz8o96p .nav-item:focus,
.cid-uQYbz8o96p .nav-link:focus {
  outline: none;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQYbz8o96p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQYbz8o96p .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.opened {
  transition: all 0.3s;
}
.cid-uQYbz8o96p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQYbz8o96p .navbar .navbar-logo img {
  width: auto;
}
.cid-uQYbz8o96p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar.collapsed {
  justify-content: center;
}
.cid-uQYbz8o96p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQYbz8o96p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQYbz8o96p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQYbz8o96p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQYbz8o96p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQYbz8o96p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQYbz8o96p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQYbz8o96p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQYbz8o96p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQYbz8o96p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQYbz8o96p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQYbz8o96p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQYbz8o96p .navbar.navbar-short {
  min-height: 80px;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQYbz8o96p .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQYbz8o96p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQYbz8o96p .dropdown-item.active,
.cid-uQYbz8o96p .dropdown-item:active {
  background-color: transparent;
}
.cid-uQYbz8o96p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQYbz8o96p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQYbz8o96p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQYbz8o96p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQYbz8o96p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQYbz8o96p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQYbz8o96p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQYbz8o96p .navbar {
    height: 70px;
  }
  .cid-uQYbz8o96p .navbar.opened {
    height: auto;
  }
  .cid-uQYbz8o96p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5FHkkUW4P {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/concepto-de-tecnologia-futurista-2000x1368.webp");
}
.cid-v5FHkkUW4P .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5FHkkUW4P .mbr-overlay {
  background: #22a5e5;
  background: linear-gradient(#22a5e5 -10%, #000000 75%);
}
.cid-v5FHkkUW4P .mbr-section-title {
  margin: 0;
}
.cid-v5FHkkUW4P .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5FHkkUW4P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FHkkUW4P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhVZkg2Bu {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-uBhVZkg2Bu .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uBhVZkg2Bu .container {
    max-width: 1400px;
  }
}
.cid-uBhVZkg2Bu .card {
  margin: auto;
}
.cid-uBhVZkg2Bu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d73b4;
  margin-bottom: 2rem;
}
.cid-uBhVZkg2Bu .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uBhVZkg2Bu .row {
  justify-content: center;
}
.cid-uBhVZkg2Bu .card-title,
.cid-uBhVZkg2Bu .card-box {
  color: #4d73b4;
}
.cid-uR3F5bIVuB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR3F5bIVuB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR3F5bIVuB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR3F5bIVuB img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-uR3F5bIVuB img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-uR3F5bIVuB .row {
  flex-direction: row-reverse;
}
.cid-uR3F5bIVuB .row {
  align-items: center;
}
.cid-uR3F5bIVuB .mbr-section-title {
  color: #4d73b4;
}
.cid-uR3F5bIVuB .mbr-text,
.cid-uR3F5bIVuB .mbr-section-btn {
  color: #232323;
}
.cid-uR3U0MYJce {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR3U0MYJce .mbr-text {
  color: #c1c1c1;
}
.cid-uR3U0MYJce H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-uR3GygG6mc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR3GygG6mc .row {
  padding: 0 1rem;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 992px) {
  .cid-uR3GygG6mc .row {
    padding-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .cid-uR3GygG6mc .row {
    padding: 0 0.75rem;
  }
}
.cid-uR3GygG6mc .card-wrapper {
  display: flex;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uR3GygG6mc .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
}
.cid-uR3GygG6mc .card-text {
  color: #232323;
}
.cid-uR3GygG6mc .mbr-iconfont {
  font-size: 25px;
  color: #ffffff;
}
.cid-uR3GygG6mc .icon-box {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uR3GygG6mc .icon-box {
    margin-bottom: 28px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uR3GygG6mc .card-box {
    text-align: center;
  }
}
.cid-uR3GygG6mc .card:nth-child(1) .icon-box {
  background: #4d73b4;
}
.cid-uR3GygG6mc .card:nth-child(2) .icon-box {
  background: #4d73b4;
}
.cid-uR3GygG6mc .card:nth-child(3) .icon-box {
  background: #4d73b4;
}
.cid-uR3GygG6mc .card:nth-child(4) .icon-box {
  background: #40b0bf;
}
.cid-uR3GygG6mc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR3GygG6mc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR3GygG6mc .card-title {
  color: #232323;
}
.cid-tWnGAltSwR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWnGAltSwR .mbr-text {
  color: #c1c1c1;
}
.cid-tWnGAltSwR H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-uBnrjxjaIc {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .container {
    padding: 0 22px;
  }
}
.cid-uBnrjxjaIc .row {
  justify-content: space-between;
}
.cid-uBnrjxjaIc .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uBnrjxjaIc .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBnrjxjaIc .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #fafafa;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-uBnrjxjaIc .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-uBnrjxjaIc .embla__button--next,
.cid-uBnrjxjaIc .embla__button--prev {
  display: flex;
}
.cid-uBnrjxjaIc .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  top: auto;
  bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-uBnrjxjaIc .embla__button:hover {
  color: #bbbbbb !important;
}
.cid-uBnrjxjaIc .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-uBnrjxjaIc .embla__button.embla__button--next {
  right: 0;
}
.cid-uBnrjxjaIc .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-uBnrjxjaIc .embla {
    padding-bottom: 4rem;
  }
}
.cid-uBnrjxjaIc .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uBnrjxjaIc .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBnrjxjaIc .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBnrjxjaIc .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBnrjxjaIc .mbr-section-title {
  color: #000000;
}
.cid-uBnrjxjaIc .item-title {
  color: #232323;
}
.cid-uBnrjxjaIc .item-text {
  color: #232323;
}
.cid-tWnGASFI3h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4967af;
}
.cid-tWnGASFI3h .mbr-text {
  color: #767676;
}
.cid-tWnGASFI3h .mbr-section-subtitle {
  color: #767676;
}
.cid-tWnGASFI3h .title .num {
  width: 100%;
  display: block;
}
.cid-tWnGASFI3h .title .card-title {
  z-index: 1;
}
.cid-tWnGASFI3h .num {
  color: #36b9c8;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tWnGASFI3h * {
    text-align: center !important;
  }
  .cid-tWnGASFI3h .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tWnGASFI3h .mbr-section-title,
.cid-tWnGASFI3h .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-tWnGASFI3h .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-tWnGASFI3h .card-title,
.cid-tWnGASFI3h .card-img {
  color: #ffffff;
  text-align: left;
}
.cid-tWnGASFI3h .mbr-text,
.cid-tWnGASFI3h .mbr-section-btn {
  color: #ffffff;
}
.cid-uR3XvrC9DH {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #f2f2f2;
}
.cid-uR3XvrC9DH .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #4d73b4;
}
@media (max-width: 992px) {
  .cid-uR3XvrC9DH .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR3XvrC9DH .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.2;
  color: #4d73b4;
}
.cid-uR3XvrC9DH .mbr-text {
  line-height: 1.5;
  font-weight: 300;
  color: #232323;
}
.cid-uR3XvrC9DH .mbr-iconfont {
  color: #22a5e5;
  font-size: 3rem;
  margin-bottom: .85rem;
}
.cid-uR3XvrC9DH .wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-uR3XvrC9DH .wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uR3XvrC9DH .d-flex {
    flex-direction: column;
  }
}
.cid-uR427fQi1Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uR427fQi1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR427fQi1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR427fQi1Q .container {
    padding: 0 22px;
  }
}
.cid-uR427fQi1Q .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uR427fQi1Q .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR427fQi1Q .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR427fQi1Q .mbr-section-title {
  color: #4d73b4;
}
.cid-uR427fQi1Q .mbr-text {
  color: #000000;
}
.cid-uAPToDGONq {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uAPToDGONq .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAPToDGONq .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAPToDGONq .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uAPToDGONq .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAPToDGONq .container {
    padding: 0 16px;
  }
}
.cid-uAPToDGONq .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uAPToDGONq .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAPToDGONq .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-uAPToDGONq .embla__button--next,
.cid-uAPToDGONq .embla__button--prev {
  display: flex;
}
.cid-uAPToDGONq .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uAPToDGONq .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAPToDGONq .embla__button:hover {
  opacity: .7 !important;
}
.cid-uAPToDGONq .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-uAPToDGONq .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uAPToDGONq .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-uAPToDGONq .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-uAPToDGONq .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uAPToDGONq .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-uAPToDGONq .embla {
  position: relative;
  width: 100%;
}
.cid-uAPToDGONq .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uAPToDGONq .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAPToDGONq .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAPToDGONq .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAPToDGONq .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-v5FJSN3fg2 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v5FJSN3fg2 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5FJSN3fg2 .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v5FJSN3fg2 .mbr-section-title {
  margin: 0;
}
.cid-v5FJSN3fg2 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5FJSN3fg2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FJSN3fg2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5FJSN3fg2 H1 {
  text-align: center;
}
.cid-v5FJSN3fg2 H3 {
  text-align: center;
}
.cid-uA4c2o9AZ4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-uA4c2o9AZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA4c2o9AZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uA4c2o9AZ4 .container {
    padding: 0 16px;
  }
}
.cid-uA4c2o9AZ4 .row {
  position: relative;
  justify-content: space-between;
}
.cid-uA4c2o9AZ4 .row .card {
  justify-content: space-between;
}
.cid-uA4c2o9AZ4 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uA4c2o9AZ4 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uA4c2o9AZ4 .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uA4c2o9AZ4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uA4c2o9AZ4 .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uA4c2o9AZ4 .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-uA4c2o9AZ4 .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uA4c2o9AZ4 .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uA4c2o9AZ4 .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-uA4c2o9AZ4 .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-uA4c2o9AZ4 .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-uA4c2o9AZ4 .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-uA4c2o9AZ4 .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uA4c2o9AZ4 .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-uA4c2o9AZ4 .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #4967af;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group .form-control:hover,
.cid-uA4c2o9AZ4 .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uA4c2o9AZ4 .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-uA4c2o9AZ4 .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uA4c2o9AZ4 .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-uA4c2o9AZ4 .mbr-section-title {
  color: #000000;
}
.cid-uA4c2o9AZ4 .mbr-text {
  color: #232323;
}
.cid-uA4c2o9AZ4 .mbr-contact {
  color: #000000;
}
.cid-uA4c2o9AZ4 label {
  color: #000000;
}
.cid-uA4c2o9AZ4 .mbr-section-title,
.cid-uA4c2o9AZ4 .mbr-section-btn {
  color: #4d73b4;
}
.cid-uAOSp3vMHt {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-uAOSp3vMHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOSp3vMHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAOSp3vMHt .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAOSp3vMHt .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAOSp3vMHt .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:hover,
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAOSp3vMHt .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uAOSp3vMHt .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .text-wrapper {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list,
.cid-uAOSp3vMHt .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-uAOSp3vMHt .mbr-desc,
.cid-uAOSp3vMHt .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .mbr-section-btn {
  color: #ffffff;
}
.cid-v7xNsIylWP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7xNsIylWP .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-v7xNsIylWP nav.navbar {
  position: fixed;
}
.cid-v7xNsIylWP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7xNsIylWP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7xNsIylWP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7xNsIylWP .dropdown-item:hover,
.cid-v7xNsIylWP .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-v7xNsIylWP .dropdown-item:hover span {
  color: white;
}
.cid-v7xNsIylWP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7xNsIylWP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7xNsIylWP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7xNsIylWP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7xNsIylWP .nav-link {
  position: relative;
}
.cid-v7xNsIylWP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7xNsIylWP .container {
    flex-wrap: nowrap;
  }
}
.cid-v7xNsIylWP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7xNsIylWP .dropdown-menu,
.cid-v7xNsIylWP .navbar.opened {
  background: #0f1b3d !important;
}
.cid-v7xNsIylWP .nav-item:focus,
.cid-v7xNsIylWP .nav-link:focus {
  outline: none;
}
.cid-v7xNsIylWP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7xNsIylWP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7xNsIylWP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7xNsIylWP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7xNsIylWP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7xNsIylWP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7xNsIylWP .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-v7xNsIylWP .navbar.opened {
  transition: all 0.3s;
}
.cid-v7xNsIylWP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7xNsIylWP .navbar .navbar-logo img {
  width: auto;
}
.cid-v7xNsIylWP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7xNsIylWP .navbar.collapsed {
  justify-content: center;
}
.cid-v7xNsIylWP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7xNsIylWP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7xNsIylWP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-v7xNsIylWP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7xNsIylWP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7xNsIylWP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7xNsIylWP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7xNsIylWP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7xNsIylWP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7xNsIylWP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7xNsIylWP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7xNsIylWP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7xNsIylWP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7xNsIylWP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7xNsIylWP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7xNsIylWP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7xNsIylWP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7xNsIylWP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7xNsIylWP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7xNsIylWP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7xNsIylWP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7xNsIylWP .navbar.navbar-short {
  min-height: 80px;
}
.cid-v7xNsIylWP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7xNsIylWP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7xNsIylWP .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7xNsIylWP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7xNsIylWP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7xNsIylWP .dropdown-item.active,
.cid-v7xNsIylWP .dropdown-item:active {
  background-color: transparent;
}
.cid-v7xNsIylWP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7xNsIylWP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7xNsIylWP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7xNsIylWP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-v7xNsIylWP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7xNsIylWP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7xNsIylWP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7xNsIylWP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7xNsIylWP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7xNsIylWP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-v7xNsIylWP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7xNsIylWP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7xNsIylWP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7xNsIylWP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7xNsIylWP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7xNsIylWP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7xNsIylWP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7xNsIylWP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7xNsIylWP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7xNsIylWP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7xNsIylWP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7xNsIylWP .navbar {
    height: 70px;
  }
  .cid-v7xNsIylWP .navbar.opened {
    height: auto;
  }
  .cid-v7xNsIylWP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7xNsIW5iq {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/2151003719-1500x1000.webp");
}
.cid-v7xNsIW5iq .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v7xNsIW5iq .mbr-overlay {
  background: #22a5e5;
  background: linear-gradient(#22a5e5 -10%, #000000 75%);
}
.cid-v7xNsIW5iq .mbr-section-title {
  margin: 0;
}
.cid-v7xNsIW5iq .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7xNsIW5iq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xNsIW5iq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xNsJiuBj {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-v7xNsJiuBj .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-v7xNsJiuBj .container {
    max-width: 1400px;
  }
}
.cid-v7xNsJiuBj .card {
  margin: auto;
}
.cid-v7xNsJiuBj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d73b4;
  margin-bottom: 2rem;
}
.cid-v7xNsJiuBj .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7xNsJiuBj .row {
  justify-content: center;
}
.cid-v7xNsJiuBj .card-title,
.cid-v7xNsJiuBj .card-box {
  color: #4d73b4;
}
.cid-v7xNsJEVwQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v7xNsJEVwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xNsJEVwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xNsJEVwQ img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-v7xNsJEVwQ img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-v7xNsJEVwQ .row {
  flex-direction: row-reverse;
}
.cid-v7xNsJEVwQ .row {
  align-items: center;
}
.cid-v7xNsJEVwQ .mbr-section-title {
  color: #4d73b4;
}
.cid-v7xNsJEVwQ .mbr-text,
.cid-v7xNsJEVwQ .mbr-section-btn {
  color: #232323;
}
.cid-v7xNsJXh69 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7xNsJXh69 .mbr-text {
  color: #c1c1c1;
}
.cid-v7xNsJXh69 H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-v7xNsKftEd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7xNsKftEd .row {
  padding: 0 1rem;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 992px) {
  .cid-v7xNsKftEd .row {
    padding-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .cid-v7xNsKftEd .row {
    padding: 0 0.75rem;
  }
}
.cid-v7xNsKftEd .card-wrapper {
  display: flex;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v7xNsKftEd .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
}
.cid-v7xNsKftEd .card-text {
  color: #232323;
}
.cid-v7xNsKftEd .mbr-iconfont {
  font-size: 25px;
  color: #ffffff;
}
.cid-v7xNsKftEd .icon-box {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v7xNsKftEd .icon-box {
    margin-bottom: 28px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-v7xNsKftEd .card-box {
    text-align: center;
  }
}
.cid-v7xNsKftEd .card:nth-child(1) .icon-box {
  background: #4d73b4;
}
.cid-v7xNsKftEd .card:nth-child(2) .icon-box {
  background: #4d73b4;
}
.cid-v7xNsKftEd .card:nth-child(3) .icon-box {
  background: #4d73b4;
}
.cid-v7xNsKftEd .card:nth-child(4) .icon-box {
  background: #40b0bf;
}
.cid-v7xNsKftEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xNsKftEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xNsKftEd .card-title {
  color: #232323;
}
.cid-v7xNsKJonK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7xNsKJonK .mbr-text {
  color: #c1c1c1;
}
.cid-v7xNsKJonK H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-v7xNsL2DJE {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .container {
    padding: 0 22px;
  }
}
.cid-v7xNsL2DJE .row {
  justify-content: space-between;
}
.cid-v7xNsL2DJE .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-v7xNsL2DJE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v7xNsL2DJE .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #fafafa;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-v7xNsL2DJE .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-v7xNsL2DJE .embla__button--next,
.cid-v7xNsL2DJE .embla__button--prev {
  display: flex;
}
.cid-v7xNsL2DJE .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  top: auto;
  bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-v7xNsL2DJE .embla__button:hover {
  color: #bbbbbb !important;
}
.cid-v7xNsL2DJE .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-v7xNsL2DJE .embla__button.embla__button--next {
  right: 0;
}
.cid-v7xNsL2DJE .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-v7xNsL2DJE .embla {
    padding-bottom: 4rem;
  }
}
.cid-v7xNsL2DJE .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v7xNsL2DJE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7xNsL2DJE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7xNsL2DJE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7xNsL2DJE .mbr-section-title {
  color: #000000;
}
.cid-v7xNsL2DJE .item-title {
  color: #232323;
}
.cid-v7xNsL2DJE .item-text {
  color: #232323;
}
.cid-v7xNsLAqan {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4967af;
}
.cid-v7xNsLAqan .mbr-text {
  color: #767676;
}
.cid-v7xNsLAqan .mbr-section-subtitle {
  color: #767676;
}
.cid-v7xNsLAqan .title .num {
  width: 100%;
  display: block;
}
.cid-v7xNsLAqan .title .card-title {
  z-index: 1;
}
.cid-v7xNsLAqan .num {
  color: #36b9c8;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v7xNsLAqan * {
    text-align: center !important;
  }
  .cid-v7xNsLAqan .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v7xNsLAqan .mbr-section-title,
.cid-v7xNsLAqan .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-v7xNsLAqan .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-v7xNsLAqan .card-title,
.cid-v7xNsLAqan .card-img {
  color: #ffffff;
  text-align: left;
}
.cid-v7xNsLAqan .mbr-text,
.cid-v7xNsLAqan .mbr-section-btn {
  color: #ffffff;
}
.cid-v7xNsMgAh0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #f2f2f2;
}
.cid-v7xNsMgAh0 .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #4d73b4;
}
@media (max-width: 992px) {
  .cid-v7xNsMgAh0 .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v7xNsMgAh0 .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.2;
  color: #4d73b4;
}
.cid-v7xNsMgAh0 .mbr-text {
  line-height: 1.5;
  font-weight: 300;
  color: #232323;
}
.cid-v7xNsMgAh0 .mbr-iconfont {
  color: #22a5e5;
  font-size: 3rem;
  margin-bottom: .85rem;
}
.cid-v7xNsMgAh0 .wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-v7xNsMgAh0 .wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v7xNsMgAh0 .d-flex {
    flex-direction: column;
  }
}
.cid-v7xNsMGe0M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-v7xNsMGe0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xNsMGe0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v7xNsMGe0M .container {
    padding: 0 22px;
  }
}
.cid-v7xNsMGe0M .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xNsMGe0M .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v7xNsMGe0M .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v7xNsMGe0M .mbr-section-title {
  color: #4d73b4;
}
.cid-v7xNsMGe0M .mbr-text {
  color: #000000;
}
.cid-v7xNsN08Cr {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-v7xNsN08Cr .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7xNsN08Cr .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7xNsN08Cr .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7xNsN08Cr .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7xNsN08Cr .container {
    padding: 0 16px;
  }
}
.cid-v7xNsN08Cr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-v7xNsN08Cr .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v7xNsN08Cr .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-v7xNsN08Cr .embla__button--next,
.cid-v7xNsN08Cr .embla__button--prev {
  display: flex;
}
.cid-v7xNsN08Cr .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-v7xNsN08Cr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7xNsN08Cr .embla__button:hover {
  opacity: .7 !important;
}
.cid-v7xNsN08Cr .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-v7xNsN08Cr .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-v7xNsN08Cr .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-v7xNsN08Cr .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-v7xNsN08Cr .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-v7xNsN08Cr .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-v7xNsN08Cr .embla {
  position: relative;
  width: 100%;
}
.cid-v7xNsN08Cr .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-v7xNsN08Cr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7xNsN08Cr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7xNsN08Cr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7xNsN08Cr .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-v7xNsNwzbI {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v7xNsNwzbI .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v7xNsNwzbI .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v7xNsNwzbI .mbr-section-title {
  margin: 0;
}
.cid-v7xNsNwzbI .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7xNsNwzbI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xNsNwzbI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xNsNwzbI H1 {
  text-align: center;
}
.cid-v7xNsNwzbI H3 {
  text-align: center;
}
.cid-v7xNsNUtGg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-v7xNsNUtGg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xNsNUtGg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-v7xNsNUtGg .container {
    padding: 0 16px;
  }
}
.cid-v7xNsNUtGg .row {
  position: relative;
  justify-content: space-between;
}
.cid-v7xNsNUtGg .row .card {
  justify-content: space-between;
}
.cid-v7xNsNUtGg .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7xNsNUtGg .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7xNsNUtGg .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-v7xNsNUtGg .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v7xNsNUtGg .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7xNsNUtGg .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-v7xNsNUtGg .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v7xNsNUtGg .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7xNsNUtGg .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-v7xNsNUtGg .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-v7xNsNUtGg .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-v7xNsNUtGg .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7xNsNUtGg .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-v7xNsNUtGg .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-v7xNsNUtGg .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-v7xNsNUtGg .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-v7xNsNUtGg .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-v7xNsNUtGg .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #4967af;
}
.cid-v7xNsNUtGg .dragArea.row .form-group .form-control:hover,
.cid-v7xNsNUtGg .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-v7xNsNUtGg .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-v7xNsNUtGg .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-v7xNsNUtGg .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-v7xNsNUtGg .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-v7xNsNUtGg .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-v7xNsNUtGg .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-v7xNsNUtGg .mbr-section-title {
  color: #000000;
}
.cid-v7xNsNUtGg .mbr-text {
  color: #232323;
}
.cid-v7xNsNUtGg .mbr-contact {
  color: #000000;
}
.cid-v7xNsNUtGg label {
  color: #000000;
}
.cid-v7xNsNUtGg .mbr-section-title,
.cid-v7xNsNUtGg .mbr-section-btn {
  color: #4d73b4;
}
.cid-v7xNsOCsrK {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-v7xNsOCsrK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xNsOCsrK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xNsOCsrK .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v7xNsOCsrK .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-v7xNsOCsrK .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xNsOCsrK .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-v7xNsOCsrK .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v7xNsOCsrK .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v7xNsOCsrK .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v7xNsOCsrK .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-v7xNsOCsrK .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v7xNsOCsrK .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7xNsOCsrK .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-v7xNsOCsrK .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v7xNsOCsrK .items-wrapper .card {
  padding: 0 32px;
}
.cid-v7xNsOCsrK .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v7xNsOCsrK .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v7xNsOCsrK .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v7xNsOCsrK .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v7xNsOCsrK .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v7xNsOCsrK .list-wrapper .list .item-wrap:hover,
.cid-v7xNsOCsrK .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v7xNsOCsrK .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v7xNsOCsrK .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v7xNsOCsrK .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v7xNsOCsrK .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v7xNsOCsrK .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7xNsOCsrK .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-v7xNsOCsrK .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-v7xNsOCsrK .mbr-text,
.cid-v7xNsOCsrK .text-wrapper {
  color: #9aa0a6;
}
.cid-v7xNsOCsrK .list {
  color: #9aa0a6;
}
.cid-v7xNsOCsrK .list,
.cid-v7xNsOCsrK .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-v7xNsOCsrK .mbr-desc,
.cid-v7xNsOCsrK .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-v7xNsOCsrK .mbr-text,
.cid-v7xNsOCsrK .mbr-section-btn {
  color: #ffffff;
}
.cid-v7xLJi6Jdm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7xLJi6Jdm .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-v7xLJi6Jdm nav.navbar {
  position: fixed;
}
.cid-v7xLJi6Jdm .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7xLJi6Jdm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7xLJi6Jdm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7xLJi6Jdm .dropdown-item:hover,
.cid-v7xLJi6Jdm .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-v7xLJi6Jdm .dropdown-item:hover span {
  color: white;
}
.cid-v7xLJi6Jdm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7xLJi6Jdm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7xLJi6Jdm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7xLJi6Jdm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7xLJi6Jdm .nav-link {
  position: relative;
}
.cid-v7xLJi6Jdm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v7xLJi6Jdm .container {
    flex-wrap: nowrap;
  }
}
.cid-v7xLJi6Jdm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7xLJi6Jdm .dropdown-menu,
.cid-v7xLJi6Jdm .navbar.opened {
  background: #0f1b3d !important;
}
.cid-v7xLJi6Jdm .nav-item:focus,
.cid-v7xLJi6Jdm .nav-link:focus {
  outline: none;
}
.cid-v7xLJi6Jdm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7xLJi6Jdm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7xLJi6Jdm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7xLJi6Jdm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7xLJi6Jdm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7xLJi6Jdm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7xLJi6Jdm .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-v7xLJi6Jdm .navbar.opened {
  transition: all 0.3s;
}
.cid-v7xLJi6Jdm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7xLJi6Jdm .navbar .navbar-logo img {
  width: auto;
}
.cid-v7xLJi6Jdm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7xLJi6Jdm .navbar.collapsed {
  justify-content: center;
}
.cid-v7xLJi6Jdm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7xLJi6Jdm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7xLJi6Jdm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-v7xLJi6Jdm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7xLJi6Jdm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7xLJi6Jdm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7xLJi6Jdm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7xLJi6Jdm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7xLJi6Jdm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7xLJi6Jdm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7xLJi6Jdm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7xLJi6Jdm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7xLJi6Jdm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7xLJi6Jdm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7xLJi6Jdm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7xLJi6Jdm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7xLJi6Jdm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7xLJi6Jdm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7xLJi6Jdm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7xLJi6Jdm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7xLJi6Jdm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7xLJi6Jdm .navbar.navbar-short {
  min-height: 80px;
}
.cid-v7xLJi6Jdm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7xLJi6Jdm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7xLJi6Jdm .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7xLJi6Jdm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7xLJi6Jdm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7xLJi6Jdm .dropdown-item.active,
.cid-v7xLJi6Jdm .dropdown-item:active {
  background-color: transparent;
}
.cid-v7xLJi6Jdm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7xLJi6Jdm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7xLJi6Jdm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7xLJi6Jdm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-v7xLJi6Jdm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7xLJi6Jdm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7xLJi6Jdm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7xLJi6Jdm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7xLJi6Jdm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7xLJi6Jdm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-v7xLJi6Jdm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7xLJi6Jdm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7xLJi6Jdm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7xLJi6Jdm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7xLJi6Jdm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7xLJi6Jdm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7xLJi6Jdm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7xLJi6Jdm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7xLJi6Jdm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7xLJi6Jdm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7xLJi6Jdm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7xLJi6Jdm .navbar {
    height: 70px;
  }
  .cid-v7xLJi6Jdm .navbar.opened {
    height: auto;
  }
  .cid-v7xLJi6Jdm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7xLJiDH9j {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/2151917414-2000x1144.webp");
}
.cid-v7xLJiDH9j .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v7xLJiDH9j .mbr-overlay {
  background: #22a5e5;
  background: linear-gradient(#22a5e5 -10%, #000000 75%);
}
.cid-v7xLJiDH9j .mbr-section-title {
  margin: 0;
}
.cid-v7xLJiDH9j .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7xLJiDH9j .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xLJiDH9j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xLJiXcq9 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-v7xLJiXcq9 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-v7xLJiXcq9 .container {
    max-width: 1400px;
  }
}
.cid-v7xLJiXcq9 .card {
  margin: auto;
}
.cid-v7xLJiXcq9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d73b4;
  margin-bottom: 2rem;
}
.cid-v7xLJiXcq9 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7xLJiXcq9 .row {
  justify-content: center;
}
.cid-v7xLJiXcq9 .card-title,
.cid-v7xLJiXcq9 .card-box {
  color: #4d73b4;
}
.cid-v7xLJjljlK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v7xLJjljlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xLJjljlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xLJjljlK img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-v7xLJjljlK img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-v7xLJjljlK .row {
  flex-direction: row-reverse;
}
.cid-v7xLJjljlK .row {
  align-items: center;
}
.cid-v7xLJjljlK .mbr-section-title {
  color: #4d73b4;
}
.cid-v7xLJjljlK .mbr-text,
.cid-v7xLJjljlK .mbr-section-btn {
  color: #232323;
}
.cid-v7xLJjJyCY {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7xLJjJyCY .mbr-text {
  color: #c1c1c1;
}
.cid-v7xLJjJyCY H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-v7xLJk3HEA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7xLJk3HEA .row {
  padding: 0 1rem;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 992px) {
  .cid-v7xLJk3HEA .row {
    padding-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .cid-v7xLJk3HEA .row {
    padding: 0 0.75rem;
  }
}
.cid-v7xLJk3HEA .card-wrapper {
  display: flex;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v7xLJk3HEA .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
}
.cid-v7xLJk3HEA .card-text {
  color: #232323;
}
.cid-v7xLJk3HEA .mbr-iconfont {
  font-size: 25px;
  color: #ffffff;
}
.cid-v7xLJk3HEA .icon-box {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v7xLJk3HEA .icon-box {
    margin-bottom: 28px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-v7xLJk3HEA .card-box {
    text-align: center;
  }
}
.cid-v7xLJk3HEA .card:nth-child(1) .icon-box {
  background: #4d73b4;
}
.cid-v7xLJk3HEA .card:nth-child(2) .icon-box {
  background: #4d73b4;
}
.cid-v7xLJk3HEA .card:nth-child(3) .icon-box {
  background: #4d73b4;
}
.cid-v7xLJk3HEA .card:nth-child(4) .icon-box {
  background: #40b0bf;
}
.cid-v7xLJk3HEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xLJk3HEA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xLJk3HEA .card-title {
  color: #232323;
}
.cid-v7xLJkymLu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7xLJkymLu .mbr-text {
  color: #c1c1c1;
}
.cid-v7xLJkymLu H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-v7xLJkRdHT {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .container {
    padding: 0 22px;
  }
}
.cid-v7xLJkRdHT .row {
  justify-content: space-between;
}
.cid-v7xLJkRdHT .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-v7xLJkRdHT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v7xLJkRdHT .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #fafafa;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-v7xLJkRdHT .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-v7xLJkRdHT .embla__button--next,
.cid-v7xLJkRdHT .embla__button--prev {
  display: flex;
}
.cid-v7xLJkRdHT .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  top: auto;
  bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-v7xLJkRdHT .embla__button:hover {
  color: #bbbbbb !important;
}
.cid-v7xLJkRdHT .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-v7xLJkRdHT .embla__button.embla__button--next {
  right: 0;
}
.cid-v7xLJkRdHT .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-v7xLJkRdHT .embla {
    padding-bottom: 4rem;
  }
}
.cid-v7xLJkRdHT .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v7xLJkRdHT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7xLJkRdHT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7xLJkRdHT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7xLJkRdHT .mbr-section-title {
  color: #000000;
}
.cid-v7xLJkRdHT .item-title {
  color: #232323;
}
.cid-v7xLJkRdHT .item-text {
  color: #232323;
}
.cid-v7xLJlfJah {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4967af;
}
.cid-v7xLJlfJah .mbr-text {
  color: #767676;
}
.cid-v7xLJlfJah .mbr-section-subtitle {
  color: #767676;
}
.cid-v7xLJlfJah .title .num {
  width: 100%;
  display: block;
}
.cid-v7xLJlfJah .title .card-title {
  z-index: 1;
}
.cid-v7xLJlfJah .num {
  color: #36b9c8;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v7xLJlfJah * {
    text-align: center !important;
  }
  .cid-v7xLJlfJah .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v7xLJlfJah .mbr-section-title,
.cid-v7xLJlfJah .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-v7xLJlfJah .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-v7xLJlfJah .card-title,
.cid-v7xLJlfJah .card-img {
  color: #ffffff;
  text-align: left;
}
.cid-v7xLJlfJah .mbr-text,
.cid-v7xLJlfJah .mbr-section-btn {
  color: #ffffff;
}
.cid-v7xLJlNU83 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #f2f2f2;
}
.cid-v7xLJlNU83 .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #4d73b4;
}
@media (max-width: 992px) {
  .cid-v7xLJlNU83 .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v7xLJlNU83 .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.2;
  color: #4d73b4;
}
.cid-v7xLJlNU83 .mbr-text {
  line-height: 1.5;
  font-weight: 300;
  color: #232323;
}
.cid-v7xLJlNU83 .mbr-iconfont {
  color: #22a5e5;
  font-size: 3rem;
  margin-bottom: .85rem;
}
.cid-v7xLJlNU83 .wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-v7xLJlNU83 .wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v7xLJlNU83 .d-flex {
    flex-direction: column;
  }
}
.cid-v7xLJmmlsc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-v7xLJmmlsc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xLJmmlsc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v7xLJmmlsc .container {
    padding: 0 22px;
  }
}
.cid-v7xLJmmlsc .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xLJmmlsc .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v7xLJmmlsc .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v7xLJmmlsc .mbr-section-title {
  color: #4d73b4;
}
.cid-v7xLJmmlsc .mbr-text {
  color: #000000;
}
.cid-v7xLJmMxZC {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-v7xLJmMxZC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7xLJmMxZC .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7xLJmMxZC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7xLJmMxZC .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7xLJmMxZC .container {
    padding: 0 16px;
  }
}
.cid-v7xLJmMxZC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-v7xLJmMxZC .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v7xLJmMxZC .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-v7xLJmMxZC .embla__button--next,
.cid-v7xLJmMxZC .embla__button--prev {
  display: flex;
}
.cid-v7xLJmMxZC .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-v7xLJmMxZC .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7xLJmMxZC .embla__button:hover {
  opacity: .7 !important;
}
.cid-v7xLJmMxZC .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-v7xLJmMxZC .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-v7xLJmMxZC .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-v7xLJmMxZC .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-v7xLJmMxZC .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-v7xLJmMxZC .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-v7xLJmMxZC .embla {
  position: relative;
  width: 100%;
}
.cid-v7xLJmMxZC .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-v7xLJmMxZC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7xLJmMxZC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7xLJmMxZC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7xLJmMxZC .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-v7xLJnqCd1 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v7xLJnqCd1 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v7xLJnqCd1 .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v7xLJnqCd1 .mbr-section-title {
  margin: 0;
}
.cid-v7xLJnqCd1 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v7xLJnqCd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xLJnqCd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xLJnqCd1 H1 {
  text-align: center;
}
.cid-v7xLJnqCd1 H3 {
  text-align: center;
}
.cid-v7xLJnUK3B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-v7xLJnUK3B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xLJnUK3B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-v7xLJnUK3B .container {
    padding: 0 16px;
  }
}
.cid-v7xLJnUK3B .row {
  position: relative;
  justify-content: space-between;
}
.cid-v7xLJnUK3B .row .card {
  justify-content: space-between;
}
.cid-v7xLJnUK3B .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7xLJnUK3B .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v7xLJnUK3B .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-v7xLJnUK3B .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v7xLJnUK3B .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7xLJnUK3B .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-v7xLJnUK3B .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-v7xLJnUK3B .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7xLJnUK3B .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-v7xLJnUK3B .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-v7xLJnUK3B .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-v7xLJnUK3B .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7xLJnUK3B .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-v7xLJnUK3B .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-v7xLJnUK3B .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-v7xLJnUK3B .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-v7xLJnUK3B .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-v7xLJnUK3B .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #4967af;
}
.cid-v7xLJnUK3B .dragArea.row .form-group .form-control:hover,
.cid-v7xLJnUK3B .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-v7xLJnUK3B .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-v7xLJnUK3B .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-v7xLJnUK3B .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-v7xLJnUK3B .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-v7xLJnUK3B .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-v7xLJnUK3B .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-v7xLJnUK3B .mbr-section-title {
  color: #000000;
}
.cid-v7xLJnUK3B .mbr-text {
  color: #232323;
}
.cid-v7xLJnUK3B .mbr-contact {
  color: #000000;
}
.cid-v7xLJnUK3B label {
  color: #000000;
}
.cid-v7xLJnUK3B .mbr-section-title,
.cid-v7xLJnUK3B .mbr-section-btn {
  color: #4d73b4;
}
.cid-v7xLJovFu1 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-v7xLJovFu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xLJovFu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xLJovFu1 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v7xLJovFu1 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-v7xLJovFu1 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7xLJovFu1 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-v7xLJovFu1 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v7xLJovFu1 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v7xLJovFu1 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v7xLJovFu1 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-v7xLJovFu1 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v7xLJovFu1 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7xLJovFu1 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-v7xLJovFu1 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v7xLJovFu1 .items-wrapper .card {
  padding: 0 32px;
}
.cid-v7xLJovFu1 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v7xLJovFu1 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v7xLJovFu1 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v7xLJovFu1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v7xLJovFu1 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v7xLJovFu1 .list-wrapper .list .item-wrap:hover,
.cid-v7xLJovFu1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v7xLJovFu1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v7xLJovFu1 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v7xLJovFu1 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v7xLJovFu1 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v7xLJovFu1 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7xLJovFu1 .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-v7xLJovFu1 .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-v7xLJovFu1 .mbr-text,
.cid-v7xLJovFu1 .text-wrapper {
  color: #9aa0a6;
}
.cid-v7xLJovFu1 .list {
  color: #9aa0a6;
}
.cid-v7xLJovFu1 .list,
.cid-v7xLJovFu1 .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-v7xLJovFu1 .mbr-desc,
.cid-v7xLJovFu1 .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-v7xLJovFu1 .mbr-text,
.cid-v7xLJovFu1 .mbr-section-btn {
  color: #ffffff;
}
.cid-uQYbz8o96p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uQYbz8o96p .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uQYbz8o96p nav.navbar {
  position: fixed;
}
.cid-uQYbz8o96p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQYbz8o96p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQYbz8o96p .dropdown-item:hover,
.cid-uQYbz8o96p .dropdown-item:focus {
  background: #4d73b4 !important;
  color: white !important;
}
.cid-uQYbz8o96p .dropdown-item:hover span {
  color: white;
}
.cid-uQYbz8o96p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQYbz8o96p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQYbz8o96p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQYbz8o96p .nav-link {
  position: relative;
}
.cid-uQYbz8o96p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .container {
    flex-wrap: nowrap;
  }
}
.cid-uQYbz8o96p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown-menu,
.cid-uQYbz8o96p .navbar.opened {
  background: #0f1b3d !important;
}
.cid-uQYbz8o96p .nav-item:focus,
.cid-uQYbz8o96p .nav-link:focus {
  outline: none;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQYbz8o96p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQYbz8o96p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQYbz8o96p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQYbz8o96p .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.opened {
  transition: all 0.3s;
}
.cid-uQYbz8o96p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQYbz8o96p .navbar .navbar-logo img {
  width: auto;
}
.cid-uQYbz8o96p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar.collapsed {
  justify-content: center;
}
.cid-uQYbz8o96p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQYbz8o96p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQYbz8o96p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQYbz8o96p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQYbz8o96p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQYbz8o96p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQYbz8o96p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQYbz8o96p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQYbz8o96p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQYbz8o96p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQYbz8o96p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQYbz8o96p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQYbz8o96p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQYbz8o96p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQYbz8o96p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQYbz8o96p .navbar.navbar-short {
  min-height: 80px;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQYbz8o96p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQYbz8o96p .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQYbz8o96p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQYbz8o96p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQYbz8o96p .dropdown-item.active,
.cid-uQYbz8o96p .dropdown-item:active {
  background-color: transparent;
}
.cid-uQYbz8o96p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQYbz8o96p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f1b3d;
}
.cid-uQYbz8o96p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQYbz8o96p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQYbz8o96p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQYbz8o96p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQYbz8o96p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQYbz8o96p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQYbz8o96p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQYbz8o96p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQYbz8o96p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQYbz8o96p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQYbz8o96p .navbar {
    height: 70px;
  }
  .cid-uQYbz8o96p .navbar.opened {
    height: auto;
  }
  .cid-uQYbz8o96p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5FJdz5Xo5 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/2151966723-2000x1143.webp");
}
.cid-v5FJdz5Xo5 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5FJdz5Xo5 .mbr-overlay {
  background: #22a5e5;
  background: linear-gradient(#22a5e5 -10%, #000000 75%);
}
.cid-v5FJdz5Xo5 .mbr-section-title {
  margin: 0;
}
.cid-v5FJdz5Xo5 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5FJdz5Xo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FJdz5Xo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWlXVk4Yjt {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-tWlXVk4Yjt .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tWlXVk4Yjt .container {
    max-width: 1400px;
  }
}
.cid-tWlXVk4Yjt .card {
  margin: auto;
}
.cid-tWlXVk4Yjt .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d73b4;
  margin-bottom: 2rem;
}
.cid-tWlXVk4Yjt .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWlXVk4Yjt .row {
  justify-content: center;
}
.cid-tWlXVk4Yjt .card-title,
.cid-tWlXVk4Yjt .card-box {
  color: #4d73b4;
}
.cid-uR8ExT7QC6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR8ExT7QC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8ExT7QC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8ExT7QC6 img {
  border-radius: 3rem;
  border-bottom-left-radius: 20rem;
}
@media (max-width: 767px) {
  .cid-uR8ExT7QC6 img {
    border-bottom-left-radius: 3rem;
  }
}
.cid-uR8ExT7QC6 .row {
  flex-direction: row-reverse;
}
.cid-uR8ExT7QC6 .row {
  align-items: center;
}
.cid-uR8ExT7QC6 .mbr-section-title {
  color: #4d73b4;
}
.cid-uR8ExT7QC6 .mbr-text,
.cid-uR8ExT7QC6 .mbr-section-btn {
  color: #232323;
}
.cid-uR8Eyzcjo7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR8Eyzcjo7 .mbr-text {
  color: #c1c1c1;
}
.cid-uR8Eyzcjo7 H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-uR8EzbL388 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR8EzbL388 .row {
  padding: 0 1rem;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 992px) {
  .cid-uR8EzbL388 .row {
    padding-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .cid-uR8EzbL388 .row {
    padding: 0 0.75rem;
  }
}
.cid-uR8EzbL388 .card-wrapper {
  display: flex;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uR8EzbL388 .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
}
.cid-uR8EzbL388 .card-text {
  color: #232323;
}
.cid-uR8EzbL388 .mbr-iconfont {
  font-size: 25px;
  color: #ffffff;
}
.cid-uR8EzbL388 .icon-box {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uR8EzbL388 .icon-box {
    margin-bottom: 28px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uR8EzbL388 .card-box {
    text-align: center;
  }
}
.cid-uR8EzbL388 .card:nth-child(1) .icon-box {
  background: #4d73b4;
}
.cid-uR8EzbL388 .card:nth-child(2) .icon-box {
  background: #4d73b4;
}
.cid-uR8EzbL388 .card:nth-child(3) .icon-box {
  background: #4d73b4;
}
.cid-uR8EzbL388 .card:nth-child(4) .icon-box {
  background: #40b0bf;
}
.cid-uR8EzbL388 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8EzbL388 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8EzbL388 .card-title {
  color: #232323;
}
.cid-uR8EBJoSFK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR8EBJoSFK .mbr-text {
  color: #c1c1c1;
}
.cid-uR8EBJoSFK H3 {
  text-align: center;
  color: #4d73b4;
}
.cid-uBntqrnAx5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .container {
    padding: 0 22px;
  }
}
.cid-uBntqrnAx5 .row {
  justify-content: space-between;
}
.cid-uBntqrnAx5 .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uBntqrnAx5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBntqrnAx5 .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-uBntqrnAx5 .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-uBntqrnAx5 .embla__button--next,
.cid-uBntqrnAx5 .embla__button--prev {
  display: flex;
}
.cid-uBntqrnAx5 .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  top: auto;
  bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-uBntqrnAx5 .embla__button:hover {
  color: #f2f2f2 !important;
}
.cid-uBntqrnAx5 .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-uBntqrnAx5 .embla__button.embla__button--next {
  right: 0;
}
.cid-uBntqrnAx5 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-uBntqrnAx5 .embla {
    padding-bottom: 4rem;
  }
}
.cid-uBntqrnAx5 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uBntqrnAx5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBntqrnAx5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBntqrnAx5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBntqrnAx5 .mbr-section-title {
  color: #000000;
}
.cid-uBntqrnAx5 .item-title {
  color: #232323;
}
.cid-uBntqrnAx5 .item-text {
  color: #232323;
}
.cid-tWnOW2GHDd {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #4967af;
}
.cid-tWnOW2GHDd .mbr-text {
  color: #767676;
}
.cid-tWnOW2GHDd .mbr-section-subtitle {
  color: #767676;
}
.cid-tWnOW2GHDd .title .num {
  width: 100%;
  display: block;
}
.cid-tWnOW2GHDd .title .card-title {
  z-index: 1;
}
.cid-tWnOW2GHDd .num {
  color: #36b9c8;
}
@media (max-width: 767px) {
  .cid-tWnOW2GHDd * {
    text-align: center !important;
  }
  .cid-tWnOW2GHDd .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tWnOW2GHDd .mbr-section-title,
.cid-tWnOW2GHDd .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-tWnOW2GHDd .card-text {
  color: #ffffff;
}
.cid-tWnOW2GHDd .card-title,
.cid-tWnOW2GHDd .card-img {
  color: #ffffff;
}
.cid-tWnOW2GHDd .mbr-text,
.cid-tWnOW2GHDd .mbr-section-btn {
  color: #ffffff;
}
.cid-uR8F7EyZmn {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #f2f2f2;
}
.cid-uR8F7EyZmn .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #4d73b4;
}
@media (max-width: 992px) {
  .cid-uR8F7EyZmn .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR8F7EyZmn .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.2;
  color: #4d73b4;
}
.cid-uR8F7EyZmn .mbr-text {
  line-height: 1.5;
  font-weight: 300;
  color: #232323;
}
.cid-uR8F7EyZmn .mbr-iconfont {
  color: #22a5e5;
  font-size: 3rem;
  margin-bottom: .85rem;
}
.cid-uR8F7EyZmn .wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-uR8F7EyZmn .wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uR8F7EyZmn .d-flex {
    flex-direction: column;
  }
}
.cid-uR8F93uVJa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uR8F93uVJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8F93uVJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR8F93uVJa .container {
    padding: 0 22px;
  }
}
.cid-uR8F93uVJa .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uR8F93uVJa .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR8F93uVJa .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR8F93uVJa .mbr-section-title {
  color: #4d73b4;
}
.cid-uR8F93uVJa .mbr-text {
  color: #000000;
}
.cid-uAPTBLCNz3 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uAPTBLCNz3 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAPTBLCNz3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAPTBLCNz3 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uAPTBLCNz3 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAPTBLCNz3 .container {
    padding: 0 16px;
  }
}
.cid-uAPTBLCNz3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-uAPTBLCNz3 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAPTBLCNz3 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-uAPTBLCNz3 .embla__button--next,
.cid-uAPTBLCNz3 .embla__button--prev {
  display: flex;
}
.cid-uAPTBLCNz3 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #4d73b4 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uAPTBLCNz3 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAPTBLCNz3 .embla__button:hover {
  opacity: .7 !important;
}
.cid-uAPTBLCNz3 .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-uAPTBLCNz3 .embla__button.embla__button--prev {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uAPTBLCNz3 .embla__button.embla__button--prev {
    left: 35%;
  }
}
.cid-uAPTBLCNz3 .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-uAPTBLCNz3 .embla__button.embla__button--next {
    right: 40%;
  }
}
@media (max-width: 768px) {
  .cid-uAPTBLCNz3 .embla__button.embla__button--next {
    right: 35%;
  }
}
.cid-uAPTBLCNz3 .embla {
  position: relative;
  width: 100%;
}
.cid-uAPTBLCNz3 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uAPTBLCNz3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAPTBLCNz3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAPTBLCNz3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAPTBLCNz3 .mbr-section-title {
  color: #4d73b4;
  text-align: center;
}
.cid-v5FK201Tzv {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/shutterstock-1669361278-2000x814.webp");
}
.cid-v5FK201Tzv .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v5FK201Tzv .mbr-overlay {
  background: #000000;
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-v5FK201Tzv .mbr-section-title {
  margin: 0;
}
.cid-v5FK201Tzv .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-v5FK201Tzv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FK201Tzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5FK201Tzv H1 {
  text-align: center;
}
.cid-v5FK201Tzv H3 {
  text-align: center;
}
.cid-uA4dx1V2TA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-uA4dx1V2TA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA4dx1V2TA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uA4dx1V2TA .container {
    padding: 0 16px;
  }
}
.cid-uA4dx1V2TA .row {
  position: relative;
  justify-content: space-between;
}
.cid-uA4dx1V2TA .row .card {
  justify-content: space-between;
}
.cid-uA4dx1V2TA .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uA4dx1V2TA .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uA4dx1V2TA .title-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uA4dx1V2TA .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uA4dx1V2TA .contacts-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uA4dx1V2TA .contacts-wrapper .item-wrapper {
  margin-bottom: 16px;
}
.cid-uA4dx1V2TA .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uA4dx1V2TA .contacts-wrapper .item-wrapper .contact-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uA4dx1V2TA .contacts-wrapper .item-wrapper .contact-wrap:hover .mbr-contact,
.cid-uA4dx1V2TA .contacts-wrapper .item-wrapper .contact-wrap:focus .mbr-contact {
  color: #4d73b4;
}
.cid-uA4dx1V2TA .contacts-wrapper .item-wrapper .contact-wrap .mbr-iconfont {
  display: inline-flex;
  font-size: 18px;
  color: #4d73b4;
  margin-right: 20px;
}
.cid-uA4dx1V2TA .contacts-wrapper .item-wrapper .contact-wrap .mbr-contact {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-uA4dx1V2TA .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uA4dx1V2TA .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-uA4dx1V2TA .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-uA4dx1V2TA .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uA4dx1V2TA .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uA4dx1V2TA .dragArea.row .form-group .form-control {
  padding: 20px 24px;
  border: none !important;
  box-shadow: none;
  border-radius: 14px !important;
  background-color: #4967af;
}
.cid-uA4dx1V2TA .dragArea.row .form-group .form-control:hover,
.cid-uA4dx1V2TA .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uA4dx1V2TA .dragArea.row .form-group .form-control::placeholder {
  color: #f2f2f2;
}
.cid-uA4dx1V2TA .dragArea.row .form-group textarea {
  min-height: 250px;
}
.cid-uA4dx1V2TA .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uA4dx1V2TA .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 0;
}
.cid-uA4dx1V2TA .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uA4dx1V2TA .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-uA4dx1V2TA .mbr-section-title {
  color: #000000;
}
.cid-uA4dx1V2TA .mbr-text {
  color: #000000;
}
.cid-uA4dx1V2TA .mbr-contact {
  color: #000000;
}
.cid-uA4dx1V2TA label {
  color: #000000;
}
.cid-uA4dx1V2TA .mbr-section-title,
.cid-uA4dx1V2TA .mbr-section-btn {
  color: #4d73b4;
}
.cid-uAOSp3vMHt {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f1b3d;
}
.cid-uAOSp3vMHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOSp3vMHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uAOSp3vMHt .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAOSp3vMHt .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAOSp3vMHt .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAOSp3vMHt .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:hover,
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uAOSp3vMHt .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAOSp3vMHt .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAOSp3vMHt .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAOSp3vMHt .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAOSp3vMHt .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uAOSp3vMHt .mbr-desc {
  color: #ffffff;
  text-align: right;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .text-wrapper {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list {
  color: #9aa0a6;
}
.cid-uAOSp3vMHt .list,
.cid-uAOSp3vMHt .item-wrap {
  text-align: left;
  color: #2ba7ff;
}
.cid-uAOSp3vMHt .mbr-desc,
.cid-uAOSp3vMHt .content-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-uAOSp3vMHt .mbr-text,
.cid-uAOSp3vMHt .mbr-section-btn {
  color: #ffffff;
}
