body {
  font-family: Kantumruy Pro;
}
.display-1 {
  font-family: 'Kantumruy Pro', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .application-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Kantumruy Pro', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .application-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Kantumruy Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .application-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Kantumruy Pro', sans-serif;
  font-size: 2.25rem;
  line-height: 1.5;
}
.display-5 > .application-iconfont {
  font-size: 2.8125rem;
}
.display-7 {
  font-family: 'Kantumruy Pro', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .application-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2.6rem;
  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: #565add !important;
}
.bg-success {
  background-color: #eff0ff !important;
}
.bg-info {
  background-color: #1f357f !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #3d2e7c !important;
}
.btn-primary {
  border: 5px solid #d1d1f7 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #565add !important;
  border-color: #d1d1f7 !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: #565add !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #565add !important;
  border-color: #565add !important;
}
.btn-primary:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-secondary {
  border: 5px solid #d1d1f7 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
  color: #1e1eab !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: #1e1eab !important;
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1e1eab !important;
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
}
.btn-secondary:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-info {
  border: 5px solid #d1d1f7 !important;
}
.btn-info,
.btn-info:active {
  background-color: #1f357f !important;
  border-color: #d1d1f7 !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: #1f357f !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1f357f !important;
  border-color: #1f357f !important;
}
.btn-info:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-success {
  border: 5px solid #d1d1f7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #eff0ff !important;
  border-color: #d1d1f7 !important;
  color: #000fef !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: #000fef !important;
  background-color: #eff0ff !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000fef !important;
  background-color: #eff0ff !important;
  border-color: #eff0ff !important;
}
.btn-success:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-warning {
  border: 5px solid #d1d1f7 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #d1d1f7 !important;
  color: #614f00 !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: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-danger {
  border: 5px solid #d1d1f7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3d2e7c !important;
  border-color: #d1d1f7 !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: #3d2e7c !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #3d2e7c !important;
  border-color: #3d2e7c !important;
}
.btn-danger:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-white {
  border: 5px solid #d1d1f7 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #d1d1f7 !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: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-black {
  border: 5px solid #d1d1f7 !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #d1d1f7 !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: #232323 !important;
  border-color: #d1d1f7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black:hover {
  box-shadow: 0px 0px 30px 0px rgba(86, 90, 221, 0.3) !important;
  transform: scale(1.02) translateY(-2px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #565add;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2529b7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #565add !important;
  border-color: #565add !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d1d1f7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8787ea !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1e1eab !important;
  background-color: #d1d1f7 !important;
  border-color: #d1d1f7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1f357f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0e1839 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1f357f !important;
  border-color: #1f357f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eff0ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #989fff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000fef !important;
  background-color: #eff0ff !important;
  border-color: #eff0ff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3d2e7c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #1e173d !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3d2e7c !important;
  border-color: #3d2e7c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent !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: transparent;
  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: transparent !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: #565add !important;
}
.text-secondary {
  color: #d1d1f7 !important;
}
.text-success {
  color: #eff0ff !important;
}
.text-info {
  color: #1f357f !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #3d2e7c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2226ab !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7a7ae8 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #8990ff !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0b132d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #181232 !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: #565add;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1f357f;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #3d2e7c;
}
.application-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.application-gallery-filter li a {
  border-radius: 100px !important;
}
.application-gallery-filter li.active .btn {
  background-color: #565add;
  border-color: #565add;
  color: #ffffff;
}
.application-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #565add;
}
.application-plan-header.bg-primary .application-plan-subtitle,
.application-plan-header.bg-primary .application-plan-price-desc {
  color: #ffffff;
}
.application-plan-header.bg-success .application-plan-subtitle,
.application-plan-header.bg-success .application-plan-price-desc {
  color: #ffffff;
}
.application-plan-header.bg-info .application-plan-subtitle,
.application-plan-header.bg-info .application-plan-price-desc {
  color: #4b6ad3;
}
.application-plan-header.bg-warning .application-plan-subtitle,
.application-plan-header.bg-warning .application-plan-price-desc {
  color: #ffffff;
}
.application-plan-header.bg-danger .application-plan-subtitle,
.application-plan-header.bg-danger .application-plan-price-desc {
  color: #7764c5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Kantumruy Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .application-iconfont {
  font-size: 1.375rem;
}
.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: #565add !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Kantumruy Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .application-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #565add;
}
/* Forms */
.application-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.application-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.application-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.application-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: #565add;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #565add;
}
.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: #565add;
  border-bottom-color: #565add;
}
.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: #565add !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: #d1d1f7 !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='%23565add' %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;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  position: relative !important;
}
.xljdZn-uOWosQOb3H .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.xljdZn-uOWosQOb3H .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .xljdZn-uOWosQOb3H .nav-item {
    height: auto;
  }
}
.xljdZn-uOWosQOb3H .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xljdZn-uOWosQOb3H .dropdown-item:before {
  font-family: tracking2 !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;
}
.xljdZn-uOWosQOb3H .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.xljdZn-uOWosQOb3H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.xljdZn-uOWosQOb3H .dropdown-item:hover,
.xljdZn-uOWosQOb3H .dropdown-item:focus {
  background: white !important;
}
.xljdZn-uOWosQOb3H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.xljdZn-uOWosQOb3H .nav-link {
  position: relative;
}
.xljdZn-uOWosQOb3H .container {
  display: flex;
  margin: auto;
}
.xljdZn-uOWosQOb3H .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.xljdZn-uOWosQOb3H .dropdown-menu,
.xljdZn-uOWosQOb3H .navbar.opened {
  background: #f4f4f4 !important;
}
.xljdZn-uOWosQOb3H .nav-item:focus,
.xljdZn-uOWosQOb3H .nav-link:focus {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  vertical-align: sub;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.opened {
  transition: all 0.3s;
}
.xljdZn-uOWosQOb3H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.xljdZn-uOWosQOb3H .navbar .navbar-logo img {
  width: auto;
}
.xljdZn-uOWosQOb3H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar.collapsed {
  justify-content: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xljdZn-uOWosQOb3H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .xljdZn-uOWosQOb3H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xljdZn-uOWosQOb3H .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%;
}
.xljdZn-uOWosQOb3H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .xljdZn-uOWosQOb3H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xljdZn-uOWosQOb3H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .xljdZn-uOWosQOb3H .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%;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xljdZn-uOWosQOb3H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.xljdZn-uOWosQOb3H .navbar.navbar-short {
  min-height: 60px;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xljdZn-uOWosQOb3H .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-logo a {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown-item.active,
.xljdZn-uOWosQOb3H .dropdown-item:active {
  background-color: transparent;
}
.xljdZn-uOWosQOb3H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xljdZn-uOWosQOb3H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xljdZn-uOWosQOb3H ul.navbar-nav {
  flex-wrap: wrap;
}
.xljdZn-uOWosQOb3H .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xljdZn-uOWosQOb3H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  padding: 0 1rem;
}
.xljdZn-uOWosQOb3H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xljdZn-uOWosQOb3H .navbar {
    height: 70px;
  }
  .xljdZn-uOWosQOb3H .navbar.opened {
    height: auto;
  }
  .xljdZn-uOWosQOb3H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xljdZn-uOWpu5jJSV {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/solid-still.jpg-1376x768.jpg");
}
.xljdZn-uOWpu5jJSV .application-section-title {
  color: #ffffff;
  text-align: center;
}
.xljdZn-uOWpu5jJSV .application-text,
.xljdZn-uOWpu5jJSV .application-section-btn {
  color: #ffffff;
  text-align: center;
}
.xljdZn-uOWw7mRNKe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
  position: relative;
  overflow: hidden;
}
.xljdZn-uOWw7mRNKe::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 22%;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(225deg, #2b1c50 -10%, transparent 80%);
}
.xljdZn-uOWw7mRNKe::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(360deg, #3d2e7c -10%, transparent 80%);
}
.xljdZn-uOWw7mRNKe .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWw7mRNKe .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .xljdZn-uOWw7mRNKe .container {
    padding: 0 16px;
  }
}
.xljdZn-uOWw7mRNKe .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.xljdZn-uOWw7mRNKe .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.xljdZn-uOWw7mRNKe .content-wrapper {
  margin-bottom: 80px;
}
.xljdZn-uOWw7mRNKe .content-wrapper .application-section-title {
  margin-bottom: 24px;
}
.xljdZn-uOWw7mRNKe .content-wrapper .application-section-title span {
  color: #2b1c50;
}
.xljdZn-uOWw7mRNKe .content-wrapper .text-wrapper .application-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xljdZn-uOWw7mRNKe .content-wrapper .text-wrapper .application-text {
    width: 100%;
  }
}
.xljdZn-uOWw7mRNKe .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.xljdZn-uOWw7mRNKe .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px 50px 80px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .xljdZn-uOWw7mRNKe .item .item-wrapper {
    padding: 32px;
  }
}
.xljdZn-uOWw7mRNKe .item .item-wrapper .card-box .item-number {
  margin-bottom: 32px;
}
.xljdZn-uOWw7mRNKe .item .item-wrapper .card-box .item-title {
  margin-bottom: 24px;
}
.xljdZn-uOWw7mRNKe .item .item-wrapper .card-box .text-wrap .item-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .xljdZn-uOWw7mRNKe .item .item-wrapper .card-box .text-wrap .item-text {
    width: 100%;
  }
}
.xljdZn-uOWw7mRNKe .application-section-title {
  color: #000000;
  text-align: center;
}
.xljdZn-uOWw7mRNKe .application-text,
.xljdZn-uOWw7mRNKe .text-wrapper {
  color: #000000;
  text-align: center;
}
.xljdZn-uOWw7mRNKe .item-number {
  color: #000000;
  text-align: center;
}
.xljdZn-uOWw7mRNKe .item-title {
  color: #2b1c50;
  text-align: center;
}
.xljdZn-uOWw7mRNKe .item-text,
.xljdZn-uOWw7mRNKe .text-wrap {
  color: #000000;
  text-align: center;
}
.xljdZn-uOWwaO3KSF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.xljdZn-uOWwaO3KSF .row {
  flex-direction: row-reverse;
}
.xljdZn-uOWwaO3KSF img {
  transition: all 0.3s;
  object-fit: cover;
}
.xljdZn-uOWwaO3KSF .image-wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .xljdZn-uOWwaO3KSF .image-wrapper {
    padding: 1rem;
  }
}
.xljdZn-uOWwaO3KSF .image-wrapper:hover img {
  transform: scale(1.15) rotate(-5deg);
}
.xljdZn-uOWwaO3KSF .image-wrapper:hover .img-link {
  background: #565add;
  color: #ffffff;
}
@media (max-width: 992px) {
  .xljdZn-uOWwaO3KSF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.xljdZn-uOWwaO3KSF .img-link {
  background: #3d2e7c;
  transition: all 0.3s;
  padding: 2rem;
  position: absolute;
  bottom: -1rem;
  cursor: pointer;
  left: 0;
  color: #ffffff;
}
@media (min-width: 992px) {
  .xljdZn-uOWwaO3KSF .text-wrapper {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .xljdZn-uOWwaO3KSF p {
    max-width: 500px;
  }
}
.xljdZn-uOWwaO3KSF .application-text,
.xljdZn-uOWwaO3KSF .application-section-btn {
  color: #000000;
}
.xljdZn-uOWwaO3KSF .application-section-title {
  color: #000000;
}
.xljdZn-uOWwaO3KSF .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWwaO3KSF .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWwea5a3v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.xljdZn-uOWwea5a3v .container {
  padding: 0 5%;
}
.xljdZn-uOWwea5a3v .item-menu-overlay {
  opacity: 0 !important;
  display: none !important;
}
.xljdZn-uOWwea5a3v .item:focus,
.xljdZn-uOWwea5a3v span:focus {
  outline: none;
}
.xljdZn-uOWwea5a3v .item {
  display: flex;
  padding: 4rem 7rem;
  background: #3d2e7c;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .xljdZn-uOWwea5a3v .item {
    padding: 4rem;
  }
}
@media (max-width: 992px) {
  .xljdZn-uOWwea5a3v .item {
    display: flex;
    padding: 3rem;
  }
}
@media (max-width: 768px) {
  .xljdZn-uOWwea5a3v .item {
    display: block;
  }
}
@media (max-width: 425px) {
  .xljdZn-uOWwea5a3v .item {
    padding: 1.5rem;
  }
}
.xljdZn-uOWwea5a3v .item .item-icon {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .xljdZn-uOWwea5a3v .item .item-icon {
    margin-top: 0;
  }
}
.xljdZn-uOWwea5a3v .item .item-icon span {
  min-width: 90px;
  font-size: 4rem;
  margin-right: 1rem;
}
.xljdZn-uOWwea5a3v .item .item-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .xljdZn-uOWwea5a3v .item .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .xljdZn-uOWwea5a3v .item .item-wrapper .item-title {
    margin-bottom: 1rem;
  }
}
.xljdZn-uOWwea5a3v .item-title-wrapper {
  min-width: 400px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .xljdZn-uOWwea5a3v .item-title-wrapper {
    min-width: auto;
  }
}
.xljdZn-uOWwea5a3v .item-content {
  margin-left: 1rem;
}
@media (max-width: 992px) {
  .xljdZn-uOWwea5a3v .item-content {
    margin-left: 0;
  }
}
.xljdZn-uOWwea5a3v .application-text {
  margin: 0;
}
.xljdZn-uOWwea5a3v .item-title {
  color: #FFFFFF;
}
.xljdZn-uOWwea5a3v .application-text,
.xljdZn-uOWwea5a3v .item-icon {
  color: #F0F4FF;
}
.xljdZn-uOWwln5cyF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.xljdZn-uOWwln5cyF .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .xljdZn-uOWwln5cyF .image-wrapper {
    height: auto;
  }
}
@media (max-width: 768px) {
  .xljdZn-uOWwln5cyF .image-wrapper {
    margin-bottom: 30px;
  }
}
.xljdZn-uOWwln5cyF .image-wrapper img {
  max-width: 520px;
  height: 640px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xljdZn-uOWwln5cyF .image-wrapper img {
    height: 457px;
  }
}
.xljdZn-uOWwln5cyF .image-wrapper .application-description {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 353px;
  height: auto;
  padding: 55px 40px 55px;
  margin: 0;
  background-color: #3d2e7c;
}
@media (max-width: 1200px) {
  .xljdZn-uOWwln5cyF .image-wrapper .application-description {
    width: 255px;
  }
}
@media (max-width: 768px) {
  .xljdZn-uOWwln5cyF .image-wrapper .application-description {
    padding: 30px 20px;
  }
}
.xljdZn-uOWwln5cyF .text {
  padding-left: 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWwln5cyF .text {
    padding: 0 12px;
  }
}
.xljdZn-uOWwln5cyF .text .text-wrapper .application-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 768px) {
  .xljdZn-uOWwln5cyF .text .text-wrapper .application-section-subtitle {
    margin-bottom: 7px;
  }
}
.xljdZn-uOWwln5cyF .text .text-wrapper .application-section-title {
  margin-bottom: 20px;
}
.xljdZn-uOWwln5cyF .text .text-wrapper .application-text {
  margin-bottom: 0;
}
.xljdZn-uOWwln5cyF .text .list-wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .xljdZn-uOWwln5cyF .text .list-wrapper {
    margin-top: 20px;
  }
}
.xljdZn-uOWwln5cyF .text .list-wrapper .list-item {
  padding: 27px 0;
  border-top: 1px solid #bbbbbb;
}
.xljdZn-uOWwln5cyF .text .list-wrapper .list-item:first-child {
  padding-top: 0;
  border: none;
}
.xljdZn-uOWwln5cyF .text .list-wrapper .list-item:last-child {
  padding-bottom: 0;
}
.xljdZn-uOWwln5cyF .text .list-wrapper .list-item .application-number {
  margin: 0 15px 0 0;
  display: inline;
}
.xljdZn-uOWwln5cyF .text .list-wrapper .list-item .application-list {
  margin: 0;
  display: inline;
}
.xljdZn-uOWwln5cyF .application-section-btn {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .xljdZn-uOWwln5cyF .application-section-btn {
    margin-top: 20px;
  }
}
.xljdZn-uOWwln5cyF .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.xljdZn-uOWwln5cyF .btn:hover {
  box-shadow: none;
}
.xljdZn-uOWwln5cyF .application-description {
  color: #fafafa;
}
.xljdZn-uOWwln5cyF .application-section-subtitle {
  color: #2b1c50;
}
.xljdZn-uOWwln5cyF .application-section-title {
  color: #20232a;
}
.xljdZn-uOWwln5cyF .application-text {
  color: #000000;
}
.xljdZn-uOWwln5cyF .application-number {
  color: #84858a;
}
.xljdZn-uOWwln5cyF .application-list {
  color: #20232a;
}
.xljdZn-uOWwln5cyF .application-section-title,
.xljdZn-uOWwln5cyF .list-item,
.xljdZn-uOWwln5cyF .application-section-btn {
  text-align: left;
  color: #000000;
}
.xljdZn-uOWwxlpUXk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #eff0ff;
}
.xljdZn-uOWwxlpUXk .row {
  position: relative;
}
.xljdZn-uOWwxlpUXk .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #d1d1f7 50%, #eff0ff);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .xljdZn-uOWwxlpUXk .row .blur-circle {
    display: none;
  }
}
.xljdZn-uOWwxlpUXk .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWwxlpUXk .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWwxlpUXk .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwxlpUXk .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .xljdZn-uOWwxlpUXk .row {
    padding: 0 24px;
  }
}
.xljdZn-uOWwxlpUXk .title {
  display: flex;
  align-items: center;
}
.xljdZn-uOWwxlpUXk .title-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
  width: 100%;
}
@media (max-width: 992px) {
  .xljdZn-uOWwxlpUXk .title-wrapper {
    margin-bottom: 32px;
  }
}
.xljdZn-uOWwxlpUXk .title-wrapper .application-section-title {
  margin-bottom: 10px;
}
.xljdZn-uOWwxlpUXk .title-wrapper .application-section-title span {
  position: relative;
  z-index: 1;
}
.xljdZn-uOWwxlpUXk .title-wrapper .application-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: #d1d1f7;
  z-index: -1;
}
.xljdZn-uOWwxlpUXk .title-wrapper .application-text {
  margin-bottom: 0;
}
.xljdZn-uOWwxlpUXk .card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 2rem;
  padding: 16px;
  border-radius: 8px;
  background-color: #ffffff;
  z-index: 2;
}
.xljdZn-uOWwxlpUXk .card .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: #3d2e7c;
  border-radius: 100%;
  margin-right: 16px;
}
.xljdZn-uOWwxlpUXk .card .card-number .application-number {
  margin-bottom: 0;
}
.xljdZn-uOWwxlpUXk .card .application-card-title {
  margin-bottom: 0;
  width: 80%;
}
.xljdZn-uOWwxlpUXk .application-section-title {
  color: #f4efe8;
}
.xljdZn-uOWwxlpUXk .application-text {
  color: #000000;
  text-align: left;
}
.xljdZn-uOWwxlpUXk .application-number {
  color: #ffffff;
}
.xljdZn-uOWwxlpUXk .application-card-title {
  color: #111111;
}
.xljdZn-uOWwxlpUXk .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWwxlpUXk .application-section-title,
.xljdZn-uOWwxlpUXk .application-section-btn {
  color: #000000;
}
.xljdZn-uOWHEYCiC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWHEYCiC0 .row {
  justify-content: center;
}
.xljdZn-uOWHEYCiC0 .card {
  justify-content: flex-end;
}
.xljdZn-uOWHEYCiC0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .title-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper img {
  display: inline-block;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 5px !important;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .application-section-title {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #386bb7, #e24c4a);
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus {
  color: #ffffff !important;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .nav-wrapper {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .nav-title {
  margin-bottom: 10px;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all .3s ease;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:hover,
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #000000;
  transform: translateX(5px);
}
.xljdZn-uOWHEYCiC0 .application-copy {
  background-color: #3d2e7c;
  padding: 30px 40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .application-copy {
    padding: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .application-section-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .nav-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list,
.xljdZn-uOWHEYCiC0 .item-wrap {
  color: #000000;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  position: relative !important;
}
.xljdZn-uOWosQOb3H .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.xljdZn-uOWosQOb3H .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .xljdZn-uOWosQOb3H .nav-item {
    height: auto;
  }
}
.xljdZn-uOWosQOb3H .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xljdZn-uOWosQOb3H .dropdown-item:before {
  font-family: tracking2 !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;
}
.xljdZn-uOWosQOb3H .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.xljdZn-uOWosQOb3H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.xljdZn-uOWosQOb3H .dropdown-item:hover,
.xljdZn-uOWosQOb3H .dropdown-item:focus {
  background: white !important;
}
.xljdZn-uOWosQOb3H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.xljdZn-uOWosQOb3H .nav-link {
  position: relative;
}
.xljdZn-uOWosQOb3H .container {
  display: flex;
  margin: auto;
}
.xljdZn-uOWosQOb3H .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.xljdZn-uOWosQOb3H .dropdown-menu,
.xljdZn-uOWosQOb3H .navbar.opened {
  background: #f4f4f4 !important;
}
.xljdZn-uOWosQOb3H .nav-item:focus,
.xljdZn-uOWosQOb3H .nav-link:focus {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  vertical-align: sub;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.opened {
  transition: all 0.3s;
}
.xljdZn-uOWosQOb3H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.xljdZn-uOWosQOb3H .navbar .navbar-logo img {
  width: auto;
}
.xljdZn-uOWosQOb3H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar.collapsed {
  justify-content: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xljdZn-uOWosQOb3H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .xljdZn-uOWosQOb3H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xljdZn-uOWosQOb3H .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%;
}
.xljdZn-uOWosQOb3H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .xljdZn-uOWosQOb3H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xljdZn-uOWosQOb3H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .xljdZn-uOWosQOb3H .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%;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xljdZn-uOWosQOb3H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.xljdZn-uOWosQOb3H .navbar.navbar-short {
  min-height: 60px;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xljdZn-uOWosQOb3H .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-logo a {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown-item.active,
.xljdZn-uOWosQOb3H .dropdown-item:active {
  background-color: transparent;
}
.xljdZn-uOWosQOb3H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xljdZn-uOWosQOb3H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xljdZn-uOWosQOb3H ul.navbar-nav {
  flex-wrap: wrap;
}
.xljdZn-uOWosQOb3H .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xljdZn-uOWosQOb3H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  padding: 0 1rem;
}
.xljdZn-uOWosQOb3H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xljdZn-uOWosQOb3H .navbar {
    height: 70px;
  }
  .xljdZn-uOWosQOb3H .navbar.opened {
    height: auto;
  }
  .xljdZn-uOWosQOb3H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xljdZn-uOWwD09zFB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d2e7c;
}
.xljdZn-uOWwD09zFB .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWwD09zFB .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWwD09zFB .content-wrapper {
  padding: 80px 90px;
  background-color: #eff0ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .xljdZn-uOWwD09zFB .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.xljdZn-uOWwD09zFB .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwD09zFB .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.xljdZn-uOWwD09zFB .content-wrapper .title-wrapper .application-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwD09zFB .content-wrapper .title-wrapper .application-section-title {
    margin-bottom: 24px;
  }
}
.xljdZn-uOWwD09zFB .content-wrapper .title-wrapper .application-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwD09zFB .content-wrapper .title-wrapper .application-text {
    margin-bottom: 16px;
  }
}
.xljdZn-uOWwD09zFB .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .xljdZn-uOWwD09zFB .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.xljdZn-uOWwD09zFB .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xljdZn-uOWwD09zFB .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.xljdZn-uOWwD09zFB .application-section-title {
  color: #050f0f;
}
.xljdZn-uOWwD09zFB .application-text {
  color: #050f0f;
}
.xljdZn-uOWwLh4USB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #eff0ff;
}
.xljdZn-uOWwLh4USB .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWwLh4USB .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWwLh4USB .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwLh4USB .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .xljdZn-uOWwLh4USB .container {
    padding: 0 24px;
  }
}
.xljdZn-uOWwLh4USB .row {
  justify-content: center;
}
.xljdZn-uOWwLh4USB .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwLh4USB .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.xljdZn-uOWwLh4USB .content-wrapper .desc-wrapper .application-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #3d2e7c;
  border-radius: .75rem;
}
.xljdZn-uOWwLh4USB .content-wrapper .application-text {
  margin-bottom: 0;
}
.xljdZn-uOWwLh4USB .application-section-title {
  color: #141414;
}
.xljdZn-uOWwLh4USB .application-text {
  color: #000000;
}
.xljdZn-uOWwLh4USB .application-desc,
.xljdZn-uOWwLh4USB .desc-wrapper {
  text-align: center;
  color: #ffffff;
}
.xljdZn-uOWwMTxjL8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d2e7c;
  overflow: hidden;
}
.xljdZn-uOWwMTxjL8 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWwMTxjL8 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWwMTxjL8 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwMTxjL8 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .xljdZn-uOWwMTxjL8 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .xljdZn-uOWwMTxjL8 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .xljdZn-uOWwMTxjL8 .container {
    padding: 0 16px;
  }
}
.xljdZn-uOWwMTxjL8 .row {
  justify-content: center;
}
.xljdZn-uOWwMTxjL8 .application-section-title {
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWwMTxjL8 .application-section-title {
    margin-bottom: 32px;
  }
}
.xljdZn-uOWwMTxjL8 .card {
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWwMTxjL8 .card {
    flex-direction: column;
  }
}
.xljdZn-uOWwMTxjL8 .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .xljdZn-uOWwMTxjL8 .image-wrapper {
    margin-bottom: 32px;
    width: 100%;
  }
}
.xljdZn-uOWwMTxjL8 .image-wrapper img {
  height: 650px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .xljdZn-uOWwMTxjL8 .image-wrapper img {
    height: 350px;
  }
}
.xljdZn-uOWwMTxjL8 .content-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .xljdZn-uOWwMTxjL8 .content-wrapper {
    width: 100%;
  }
}
.xljdZn-uOWwMTxjL8 .content-wrapper .content-wrap .application-section-title {
  margin-bottom: 16px;
}
.xljdZn-uOWwMTxjL8 .content-wrapper .content-wrap .application-text {
  margin-bottom: 16px;
}
.xljdZn-uOWwMTxjL8 .application-section-subtitle {
  color: #000000;
}
.xljdZn-uOWwMTxjL8 .application-text {
  color: #ffffff;
}
.xljdZn-uOWwMTxjL8 .application-section-subtitle,
.xljdZn-uOWwMTxjL8 .application-section-btn {
  color: #d1d1f7;
}
.xljdZn-uOWwWyVbAv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.xljdZn-uOWwWyVbAv .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWwWyVbAv .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWwWyVbAv .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwWyVbAv .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .xljdZn-uOWwWyVbAv .container {
    padding: 0 24px;
  }
}
.xljdZn-uOWwWyVbAv .row {
  justify-content: center;
}
.xljdZn-uOWwWyVbAv .content-wrapper {
  border-radius: 40px;
  background-color: #3d2e7c;
  padding: 64px;
}
@media (max-width: 992px) {
  .xljdZn-uOWwWyVbAv .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .xljdZn-uOWwWyVbAv .content-wrapper {
    padding: 32px;
  }
}
.xljdZn-uOWwWyVbAv .content-wrapper .application-section-title {
  margin-bottom: 0;
}
.xljdZn-uOWwWyVbAv .content-wrapper .application-text {
  margin: 16px 0 0;
}
.xljdZn-uOWwWyVbAv .application-section-title {
  color: #ffffff;
  text-align: center;
}
.xljdZn-uOWwWyVbAv .application-text {
  color: #fafafa;
}
.xljdZn-uOWHEYCiC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWHEYCiC0 .row {
  justify-content: center;
}
.xljdZn-uOWHEYCiC0 .card {
  justify-content: flex-end;
}
.xljdZn-uOWHEYCiC0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .title-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper img {
  display: inline-block;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 5px !important;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .application-section-title {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #386bb7, #e24c4a);
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus {
  color: #ffffff !important;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .nav-wrapper {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .nav-title {
  margin-bottom: 10px;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all .3s ease;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:hover,
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #000000;
  transform: translateX(5px);
}
.xljdZn-uOWHEYCiC0 .application-copy {
  background-color: #3d2e7c;
  padding: 30px 40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .application-copy {
    padding: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .application-section-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .nav-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list,
.xljdZn-uOWHEYCiC0 .item-wrap {
  color: #000000;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  position: relative !important;
}
.xljdZn-uOWosQOb3H .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.xljdZn-uOWosQOb3H .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .xljdZn-uOWosQOb3H .nav-item {
    height: auto;
  }
}
.xljdZn-uOWosQOb3H .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xljdZn-uOWosQOb3H .dropdown-item:before {
  font-family: tracking2 !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;
}
.xljdZn-uOWosQOb3H .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.xljdZn-uOWosQOb3H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.xljdZn-uOWosQOb3H .dropdown-item:hover,
.xljdZn-uOWosQOb3H .dropdown-item:focus {
  background: white !important;
}
.xljdZn-uOWosQOb3H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.xljdZn-uOWosQOb3H .nav-link {
  position: relative;
}
.xljdZn-uOWosQOb3H .container {
  display: flex;
  margin: auto;
}
.xljdZn-uOWosQOb3H .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.xljdZn-uOWosQOb3H .dropdown-menu,
.xljdZn-uOWosQOb3H .navbar.opened {
  background: #f4f4f4 !important;
}
.xljdZn-uOWosQOb3H .nav-item:focus,
.xljdZn-uOWosQOb3H .nav-link:focus {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  vertical-align: sub;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.opened {
  transition: all 0.3s;
}
.xljdZn-uOWosQOb3H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.xljdZn-uOWosQOb3H .navbar .navbar-logo img {
  width: auto;
}
.xljdZn-uOWosQOb3H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar.collapsed {
  justify-content: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xljdZn-uOWosQOb3H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .xljdZn-uOWosQOb3H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xljdZn-uOWosQOb3H .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%;
}
.xljdZn-uOWosQOb3H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .xljdZn-uOWosQOb3H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xljdZn-uOWosQOb3H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .xljdZn-uOWosQOb3H .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%;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xljdZn-uOWosQOb3H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.xljdZn-uOWosQOb3H .navbar.navbar-short {
  min-height: 60px;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xljdZn-uOWosQOb3H .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-logo a {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown-item.active,
.xljdZn-uOWosQOb3H .dropdown-item:active {
  background-color: transparent;
}
.xljdZn-uOWosQOb3H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xljdZn-uOWosQOb3H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xljdZn-uOWosQOb3H ul.navbar-nav {
  flex-wrap: wrap;
}
.xljdZn-uOWosQOb3H .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xljdZn-uOWosQOb3H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  padding: 0 1rem;
}
.xljdZn-uOWosQOb3H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xljdZn-uOWosQOb3H .navbar {
    height: 70px;
  }
  .xljdZn-uOWosQOb3H .navbar.opened {
    height: auto;
  }
  .xljdZn-uOWosQOb3H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xljdZn-uOWx2CXuIE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d2e7c;
}
.xljdZn-uOWx2CXuIE .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWx2CXuIE .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .xljdZn-uOWx2CXuIE .container {
    padding: 0 30px;
  }
}
.xljdZn-uOWx2CXuIE .content-wrapper .application-section-subtitle {
  margin-bottom: 30px;
  opacity: .6;
}
.xljdZn-uOWx2CXuIE .content-wrapper .application-section-title {
  margin-bottom: 0;
}
.xljdZn-uOWx2CXuIE .content-wrapper .image-wrapper {
  margin-top: 90px;
}
@media (max-width: 992px) {
  .xljdZn-uOWx2CXuIE .content-wrapper .image-wrapper {
    margin-top: 45px;
  }
}
.xljdZn-uOWx2CXuIE .content-wrapper .image-wrapper img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xljdZn-uOWx2CXuIE .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.xljdZn-uOWx2CXuIE .application-section-title {
  color: #ffffff;
  text-align: center;
}
.xljdZn-uOWx2CXuIE .application-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.xljdZn-uOWxqgpOky {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.xljdZn-uOWxqgpOky .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWxqgpOky .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWxqgpOky .label-wrapper .application-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 0;
  border: 1px solid #3d2e7c;
}
@media (max-width: 992px) {
  .xljdZn-uOWxqgpOky .label-wrapper .application-label {
    margin-bottom: 20px;
  }
}
.xljdZn-uOWxqgpOky .application-section-title {
  margin-bottom: 50px;
  color: #000000;
}
@media (max-width: 992px) {
  .xljdZn-uOWxqgpOky .application-section-title {
    margin-bottom: 30px;
  }
}
.xljdZn-uOWxqgpOky .items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .xljdZn-uOWxqgpOky .items-wrapper {
    display: block;
  }
}
.xljdZn-uOWxqgpOky .item {
  width: 50%;
  padding-right: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .xljdZn-uOWxqgpOky .item {
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .title-wrapper {
  margin-bottom: 15px;
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 15px;
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper .application-iconfont {
  font-size: 36px;
  color: #3d2e7c;
  display: inline-flex;
}
@media (max-width: 992px) {
  .xljdZn-uOWxqgpOky .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper .application-iconfont {
    font-size: 26px;
  }
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .title-wrapper .card-title {
  margin-bottom: 0;
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWxqgpOky .item .item-wrapper .card-box .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWxqgpOky .application-label {
  color: #000000;
}
.xljdZn-uOWxqgpOky .card-title {
  color: #000000;
}
.xljdZn-uOWxqgpOky .card-text {
  color: #8a8a8a;
}
.xljdZn-uOWxqgpOky .card-text,
.xljdZn-uOWxqgpOky .application-section-btn {
  color: #000000;
}
.xljdZn-uOWxu88l3K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d2e7c;
}
.xljdZn-uOWxu88l3K .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWxu88l3K .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWxu88l3K .row {
  justify-content: space-between;
}
.xljdZn-uOWxu88l3K .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWxu88l3K .image-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWxu88l3K .image-wrapper img {
  height: 400px;
  object-fit: cover;
  box-shadow: 5px 40px 50px 0 #d1d1f7;
}
@media (max-width: 992px) {
  .xljdZn-uOWxu88l3K .image-wrapper img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .xljdZn-uOWxu88l3K .image-wrapper img {
    box-shadow: none;
  }
}
.xljdZn-uOWxu88l3K .content-wrapper .label-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWxu88l3K .content-wrapper .label-wrapper .application-label {
  display: inline-block;
  padding: 6px 20px;
  background-color: #eff0ff;
  margin-bottom: 0;
}
.xljdZn-uOWxu88l3K .content-wrapper .application-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .xljdZn-uOWxu88l3K .content-wrapper .application-section-title {
    margin-bottom: 20px;
  }
}
.xljdZn-uOWxu88l3K .content-wrapper .text-wrapper .application-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .xljdZn-uOWxu88l3K .content-wrapper .text-wrapper .application-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.xljdZn-uOWxu88l3K .application-label {
  color: #19171c;
}
.xljdZn-uOWxu88l3K .application-section-title {
  color: #19171c;
}
.xljdZn-uOWxu88l3K .application-text,
.xljdZn-uOWxu88l3K .text-wrapper {
  color: #ffffff;
}
.xljdZn-uOWxu88l3K .application-section-title,
.xljdZn-uOWxu88l3K .application-section-btn,
.xljdZn-uOWxu88l3K .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.xljdZn-uOWxzDfEIx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.xljdZn-uOWxzDfEIx .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWxzDfEIx .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWxzDfEIx .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .xljdZn-uOWxzDfEIx .content-wrapper {
    display: block;
    padding: 0;
  }
}
.xljdZn-uOWxzDfEIx .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xljdZn-uOWxzDfEIx .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.xljdZn-uOWxzDfEIx .content-wrapper .title-wrapper .application-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xljdZn-uOWxzDfEIx .content-wrapper .title-wrapper .application-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.xljdZn-uOWxzDfEIx .content-wrapper .title-wrapper .application-text {
  margin-bottom: 0;
}
.xljdZn-uOWxzDfEIx .content-wrapper .title-wrapper .application-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .xljdZn-uOWxzDfEIx .content-wrapper .title-wrapper .application-section-btn {
    margin-top: 16px;
  }
}
.xljdZn-uOWxzDfEIx .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #3d2e7c;
  box-shadow: 4px 4px 0 0 #3d2e7c;
  background-color: #eff0ff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .xljdZn-uOWxzDfEIx .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.xljdZn-uOWxzDfEIx .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.xljdZn-uOWxzDfEIx .application-section-title {
  color: #050f0f;
}
.xljdZn-uOWxzDfEIx .application-text {
  color: #050f0f;
}
.xljdZn-uOWHEYCiC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWHEYCiC0 .row {
  justify-content: center;
}
.xljdZn-uOWHEYCiC0 .card {
  justify-content: flex-end;
}
.xljdZn-uOWHEYCiC0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .title-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper img {
  display: inline-block;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 5px !important;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .application-section-title {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #386bb7, #e24c4a);
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus {
  color: #ffffff !important;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .nav-wrapper {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .nav-title {
  margin-bottom: 10px;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all .3s ease;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:hover,
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #000000;
  transform: translateX(5px);
}
.xljdZn-uOWHEYCiC0 .application-copy {
  background-color: #3d2e7c;
  padding: 30px 40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .application-copy {
    padding: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .application-section-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .nav-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list,
.xljdZn-uOWHEYCiC0 .item-wrap {
  color: #000000;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  position: relative !important;
}
.xljdZn-uOWosQOb3H .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.xljdZn-uOWosQOb3H .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .xljdZn-uOWosQOb3H .nav-item {
    height: auto;
  }
}
.xljdZn-uOWosQOb3H .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xljdZn-uOWosQOb3H .dropdown-item:before {
  font-family: tracking2 !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;
}
.xljdZn-uOWosQOb3H .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.xljdZn-uOWosQOb3H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.xljdZn-uOWosQOb3H .dropdown-item:hover,
.xljdZn-uOWosQOb3H .dropdown-item:focus {
  background: white !important;
}
.xljdZn-uOWosQOb3H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.xljdZn-uOWosQOb3H .nav-link {
  position: relative;
}
.xljdZn-uOWosQOb3H .container {
  display: flex;
  margin: auto;
}
.xljdZn-uOWosQOb3H .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.xljdZn-uOWosQOb3H .dropdown-menu,
.xljdZn-uOWosQOb3H .navbar.opened {
  background: #f4f4f4 !important;
}
.xljdZn-uOWosQOb3H .nav-item:focus,
.xljdZn-uOWosQOb3H .nav-link:focus {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  vertical-align: sub;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.opened {
  transition: all 0.3s;
}
.xljdZn-uOWosQOb3H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.xljdZn-uOWosQOb3H .navbar .navbar-logo img {
  width: auto;
}
.xljdZn-uOWosQOb3H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar.collapsed {
  justify-content: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xljdZn-uOWosQOb3H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .xljdZn-uOWosQOb3H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xljdZn-uOWosQOb3H .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%;
}
.xljdZn-uOWosQOb3H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .xljdZn-uOWosQOb3H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xljdZn-uOWosQOb3H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .xljdZn-uOWosQOb3H .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%;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xljdZn-uOWosQOb3H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.xljdZn-uOWosQOb3H .navbar.navbar-short {
  min-height: 60px;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xljdZn-uOWosQOb3H .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-logo a {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown-item.active,
.xljdZn-uOWosQOb3H .dropdown-item:active {
  background-color: transparent;
}
.xljdZn-uOWosQOb3H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xljdZn-uOWosQOb3H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xljdZn-uOWosQOb3H ul.navbar-nav {
  flex-wrap: wrap;
}
.xljdZn-uOWosQOb3H .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xljdZn-uOWosQOb3H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  padding: 0 1rem;
}
.xljdZn-uOWosQOb3H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xljdZn-uOWosQOb3H .navbar {
    height: 70px;
  }
  .xljdZn-uOWosQOb3H .navbar.opened {
    height: auto;
  }
  .xljdZn-uOWosQOb3H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xljdZn-uOWxWGnE1J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #eff0ff;
}
.xljdZn-uOWxWGnE1J .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWxWGnE1J .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWxWGnE1J .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .xljdZn-uOWxWGnE1J .container-fluid {
    padding: 0 20px;
  }
}
.xljdZn-uOWxWGnE1J .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .xljdZn-uOWxWGnE1J .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .xljdZn-uOWxWGnE1J .title-wrapper {
    margin-top: 45px;
  }
}
.xljdZn-uOWxWGnE1J .title-wrapper .application-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .xljdZn-uOWxWGnE1J .title-wrapper .application-section-subtitle {
    margin-bottom: 10px;
  }
}
.xljdZn-uOWxWGnE1J .title-wrapper .application-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .xljdZn-uOWxWGnE1J .title-wrapper .application-section-title {
    margin-bottom: 10px;
  }
}
.xljdZn-uOWxWGnE1J .title-wrapper .application-text {
  line-height: inherit;
  margin-bottom: 0;
}
.xljdZn-uOWxWGnE1J .title-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 30px 0 0 0;
}
@media (max-width: 768px) {
  .xljdZn-uOWxWGnE1J .title-wrapper .list {
    margin-top: 20px;
  }
}
.xljdZn-uOWxWGnE1J .title-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .xljdZn-uOWxWGnE1J .title-wrapper .list .item-wrap {
    margin-top: 10px;
  }
}
.xljdZn-uOWxWGnE1J .title-wrapper .list .item-wrap .application-iconfont {
  margin-right: 12px;
  color: #2b1c50;
}
@media (min-width: 992px) {
  .xljdZn-uOWxWGnE1J .application-form {
    margin-top: 32px;
  }
}
.xljdZn-uOWxWGnE1J .dragArea.row .form-group {
  margin-bottom: 40px !important;
}
@media (max-width: 992px) {
  .xljdZn-uOWxWGnE1J .dragArea.row .form-group {
    margin-top: 20px;
  }
}
.xljdZn-uOWxWGnE1J .dragArea.row .form-group .form-control {
  border: none !important;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #6a6e71 !important;
  padding: 14px 0;
}
.xljdZn-uOWxWGnE1J .dragArea.row .form-group .form-control::placeholder {
  color: #6a6e71;
}
.xljdZn-uOWxWGnE1J .dragArea.row .form-group .form-control:hover {
  border-color: #6a6e71 !important;
}
.xljdZn-uOWxWGnE1J .dragArea.row .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
}
.xljdZn-uOWxWGnE1J .dragArea.row .form-group .form-check .form-check-input {
  background: transparent;
  border: 1px solid #d1d1f7;
}
.xljdZn-uOWxWGnE1J .dragArea.row .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWxWGnE1J .dragArea.row .application-section-btn .btn {
  flex-direction: row-reverse;
}
.xljdZn-uOWxWGnE1J .dragArea.row .application-section-btn .btn .application-iconfont {
  margin-left: 0;
  margin-right: 10px;
}
.xljdZn-uOWxWGnE1J .application-section-subtitle {
  color: #000000;
}
.xljdZn-uOWxWGnE1J .application-section-title {
  color: #3d2e7c;
}
.xljdZn-uOWxWGnE1J .application-text {
  color: #000000;
}
.xljdZn-uOWxWGnE1J .list {
  color: #000000;
}
.xljdZn-uOWxWGnE1J label {
  color: #000000;
}
.xljdZn-uOWHEYCiC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWHEYCiC0 .row {
  justify-content: center;
}
.xljdZn-uOWHEYCiC0 .card {
  justify-content: flex-end;
}
.xljdZn-uOWHEYCiC0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .title-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper img {
  display: inline-block;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 5px !important;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .application-section-title {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #386bb7, #e24c4a);
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus {
  color: #ffffff !important;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .nav-wrapper {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .nav-title {
  margin-bottom: 10px;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all .3s ease;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:hover,
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #000000;
  transform: translateX(5px);
}
.xljdZn-uOWHEYCiC0 .application-copy {
  background-color: #3d2e7c;
  padding: 30px 40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .application-copy {
    padding: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .application-section-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .nav-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list,
.xljdZn-uOWHEYCiC0 .item-wrap {
  color: #000000;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  position: relative !important;
}
.xljdZn-uOWosQOb3H .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.xljdZn-uOWosQOb3H .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .xljdZn-uOWosQOb3H .nav-item {
    height: auto;
  }
}
.xljdZn-uOWosQOb3H .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xljdZn-uOWosQOb3H .dropdown-item:before {
  font-family: tracking2 !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;
}
.xljdZn-uOWosQOb3H .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.xljdZn-uOWosQOb3H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.xljdZn-uOWosQOb3H .dropdown-item:hover,
.xljdZn-uOWosQOb3H .dropdown-item:focus {
  background: white !important;
}
.xljdZn-uOWosQOb3H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.xljdZn-uOWosQOb3H .nav-link {
  position: relative;
}
.xljdZn-uOWosQOb3H .container {
  display: flex;
  margin: auto;
}
.xljdZn-uOWosQOb3H .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.xljdZn-uOWosQOb3H .dropdown-menu,
.xljdZn-uOWosQOb3H .navbar.opened {
  background: #f4f4f4 !important;
}
.xljdZn-uOWosQOb3H .nav-item:focus,
.xljdZn-uOWosQOb3H .nav-link:focus {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  vertical-align: sub;
}
.xljdZn-uOWosQOb3H .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xljdZn-uOWosQOb3H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.opened {
  transition: all 0.3s;
}
.xljdZn-uOWosQOb3H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.xljdZn-uOWosQOb3H .navbar .navbar-logo img {
  width: auto;
}
.xljdZn-uOWosQOb3H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar.collapsed {
  justify-content: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xljdZn-uOWosQOb3H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .xljdZn-uOWosQOb3H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xljdZn-uOWosQOb3H .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%;
}
.xljdZn-uOWosQOb3H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.xljdZn-uOWosQOb3H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .xljdZn-uOWosQOb3H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xljdZn-uOWosQOb3H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .xljdZn-uOWosQOb3H .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%;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xljdZn-uOWosQOb3H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xljdZn-uOWosQOb3H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xljdZn-uOWosQOb3H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.xljdZn-uOWosQOb3H .navbar.navbar-short {
  min-height: 60px;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xljdZn-uOWosQOb3H .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xljdZn-uOWosQOb3H .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.xljdZn-uOWosQOb3H .navbar-brand .navbar-logo a {
  outline: none;
}
.xljdZn-uOWosQOb3H .dropdown-item.active,
.xljdZn-uOWosQOb3H .dropdown-item:active {
  background-color: transparent;
}
.xljdZn-uOWosQOb3H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xljdZn-uOWosQOb3H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.xljdZn-uOWosQOb3H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xljdZn-uOWosQOb3H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xljdZn-uOWosQOb3H ul.navbar-nav {
  flex-wrap: wrap;
}
.xljdZn-uOWosQOb3H .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xljdZn-uOWosQOb3H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWosQOb3H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xljdZn-uOWosQOb3H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWosQOb3H .navbar-dropdown {
  padding: 0 1rem;
}
.xljdZn-uOWosQOb3H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWosQOb3H .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xljdZn-uOWosQOb3H .navbar {
    height: 70px;
  }
  .xljdZn-uOWosQOb3H .navbar.opened {
    height: auto;
  }
  .xljdZn-uOWosQOb3H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xljdZn-uOWy2l1C4j {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #eff0ff;
}
.xljdZn-uOWy2l1C4j .line {
  background-color: #2b1c50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.xljdZn-uOWy2l1C4j .application-text {
  color: #000000;
}
.xljdZn-uOWy2JktU9 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.xljdZn-uOWy2JktU9 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWy2JktU9 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWy2JktU9 .card-wrapper {
  background: #3d2e7c;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .xljdZn-uOWy2JktU9 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .xljdZn-uOWy2JktU9 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .xljdZn-uOWy2JktU9 .card-wrapper {
    padding: 4rem;
  }
}
.xljdZn-uOWy2JktU9 .application-text,
.xljdZn-uOWy2JktU9 .application-section-btn {
  color: #ffffff;
}
.xljdZn-uOWy2JktU9 .card-title,
.xljdZn-uOWy2JktU9 .card-box {
  text-align: left;
}
.xljdZn-uOWHEYCiC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWHEYCiC0 .row {
  justify-content: center;
}
.xljdZn-uOWHEYCiC0 .card {
  justify-content: flex-end;
}
.xljdZn-uOWHEYCiC0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .title-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper img {
  display: inline-block;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 5px !important;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .application-section-title {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #386bb7, #e24c4a);
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus {
  color: #ffffff !important;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .nav-wrapper {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .nav-title {
  margin-bottom: 10px;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all .3s ease;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:hover,
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #000000;
  transform: translateX(5px);
}
.xljdZn-uOWHEYCiC0 .application-copy {
  background-color: #3d2e7c;
  padding: 30px 40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .application-copy {
    padding: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .application-section-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .nav-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list,
.xljdZn-uOWHEYCiC0 .item-wrap {
  color: #000000;
}
.xljdZn-uOWy9bTrPV .navbar-dropdown {
  position: relative !important;
}
.xljdZn-uOWy9bTrPV .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.xljdZn-uOWy9bTrPV .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWy9bTrPV .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .xljdZn-uOWy9bTrPV .nav-item {
    height: auto;
  }
}
.xljdZn-uOWy9bTrPV .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xljdZn-uOWy9bTrPV .dropdown-item:before {
  font-family: tracking2 !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;
}
.xljdZn-uOWy9bTrPV .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.xljdZn-uOWy9bTrPV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.xljdZn-uOWy9bTrPV .dropdown-item:hover,
.xljdZn-uOWy9bTrPV .dropdown-item:focus {
  background: white !important;
}
.xljdZn-uOWy9bTrPV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.xljdZn-uOWy9bTrPV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xljdZn-uOWy9bTrPV .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.xljdZn-uOWy9bTrPV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.xljdZn-uOWy9bTrPV .nav-link {
  position: relative;
}
.xljdZn-uOWy9bTrPV .container {
  display: flex;
  margin: auto;
}
.xljdZn-uOWy9bTrPV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.xljdZn-uOWy9bTrPV .dropdown-menu,
.xljdZn-uOWy9bTrPV .navbar.opened {
  background: #f4f4f4 !important;
}
.xljdZn-uOWy9bTrPV .nav-item:focus,
.xljdZn-uOWy9bTrPV .nav-link:focus {
  outline: none;
}
.xljdZn-uOWy9bTrPV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWy9bTrPV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xljdZn-uOWy9bTrPV .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  vertical-align: sub;
}
.xljdZn-uOWy9bTrPV .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWy9bTrPV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xljdZn-uOWy9bTrPV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xljdZn-uOWy9bTrPV .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}
.xljdZn-uOWy9bTrPV .navbar.opened {
  transition: all 0.3s;
}
.xljdZn-uOWy9bTrPV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.xljdZn-uOWy9bTrPV .navbar .navbar-logo img {
  width: auto;
}
.xljdZn-uOWy9bTrPV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.xljdZn-uOWy9bTrPV .navbar.collapsed {
  justify-content: center;
}
.xljdZn-uOWy9bTrPV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xljdZn-uOWy9bTrPV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .xljdZn-uOWy9bTrPV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.xljdZn-uOWy9bTrPV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xljdZn-uOWy9bTrPV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xljdZn-uOWy9bTrPV .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%;
}
.xljdZn-uOWy9bTrPV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xljdZn-uOWy9bTrPV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.xljdZn-uOWy9bTrPV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .xljdZn-uOWy9bTrPV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xljdZn-uOWy9bTrPV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xljdZn-uOWy9bTrPV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xljdZn-uOWy9bTrPV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .xljdZn-uOWy9bTrPV .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%;
  }
  .xljdZn-uOWy9bTrPV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xljdZn-uOWy9bTrPV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .xljdZn-uOWy9bTrPV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .xljdZn-uOWy9bTrPV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xljdZn-uOWy9bTrPV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xljdZn-uOWy9bTrPV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.xljdZn-uOWy9bTrPV .navbar.navbar-short {
  min-height: 60px;
}
.xljdZn-uOWy9bTrPV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xljdZn-uOWy9bTrPV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xljdZn-uOWy9bTrPV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.xljdZn-uOWy9bTrPV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.xljdZn-uOWy9bTrPV .navbar-brand .navbar-logo a {
  outline: none;
}
.xljdZn-uOWy9bTrPV .dropdown-item.active,
.xljdZn-uOWy9bTrPV .dropdown-item:active {
  background-color: transparent;
}
.xljdZn-uOWy9bTrPV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xljdZn-uOWy9bTrPV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xljdZn-uOWy9bTrPV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xljdZn-uOWy9bTrPV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.xljdZn-uOWy9bTrPV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xljdZn-uOWy9bTrPV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xljdZn-uOWy9bTrPV ul.navbar-nav {
  flex-wrap: wrap;
}
.xljdZn-uOWy9bTrPV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xljdZn-uOWy9bTrPV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.xljdZn-uOWy9bTrPV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xljdZn-uOWy9bTrPV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xljdZn-uOWy9bTrPV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWy9bTrPV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWy9bTrPV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xljdZn-uOWy9bTrPV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWy9bTrPV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xljdZn-uOWy9bTrPV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xljdZn-uOWy9bTrPV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWy9bTrPV .navbar-dropdown {
  padding: 0 1rem;
}
.xljdZn-uOWy9bTrPV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWy9bTrPV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xljdZn-uOWy9bTrPV .navbar {
    height: 70px;
  }
  .xljdZn-uOWy9bTrPV .navbar.opened {
    height: auto;
  }
  .xljdZn-uOWy9bTrPV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xljdZn-uOWy9cqDjG {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #eff0ff;
}
.xljdZn-uOWy9cqDjG .line {
  background-color: #2b1c50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.xljdZn-uOWy9cqDjG .application-text {
  color: #000000;
}
.xljdZn-uOWy9cOIDJ {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.xljdZn-uOWy9cOIDJ .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWy9cOIDJ .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWy9cOIDJ .card-wrapper {
  background: #3d2e7c;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .xljdZn-uOWy9cOIDJ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .xljdZn-uOWy9cOIDJ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .xljdZn-uOWy9cOIDJ .card-wrapper {
    padding: 4rem;
  }
}
.xljdZn-uOWy9cOIDJ .application-text,
.xljdZn-uOWy9cOIDJ .application-section-btn {
  color: #ffffff;
}
.xljdZn-uOWy9cOIDJ .card-title,
.xljdZn-uOWy9cOIDJ .card-box {
  text-align: left;
}
.xljdZn-uOWHEYCiC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWHEYCiC0 .row {
  justify-content: center;
}
.xljdZn-uOWHEYCiC0 .card {
  justify-content: flex-end;
}
.xljdZn-uOWHEYCiC0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .title-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper img {
  display: inline-block;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 5px !important;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .application-section-title {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #386bb7, #e24c4a);
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus {
  color: #ffffff !important;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .nav-wrapper {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .nav-title {
  margin-bottom: 10px;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all .3s ease;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:hover,
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #000000;
  transform: translateX(5px);
}
.xljdZn-uOWHEYCiC0 .application-copy {
  background-color: #3d2e7c;
  padding: 30px 40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .application-copy {
    padding: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .application-section-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .nav-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list,
.xljdZn-uOWHEYCiC0 .item-wrap {
  color: #000000;
}
.xljdZn-uOWybLGM2Y .navbar-dropdown {
  position: relative !important;
}
.xljdZn-uOWybLGM2Y .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.xljdZn-uOWybLGM2Y .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWybLGM2Y .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .xljdZn-uOWybLGM2Y .nav-item {
    height: auto;
  }
}
.xljdZn-uOWybLGM2Y .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xljdZn-uOWybLGM2Y .dropdown-item:before {
  font-family: tracking2 !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;
}
.xljdZn-uOWybLGM2Y .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.xljdZn-uOWybLGM2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.xljdZn-uOWybLGM2Y .dropdown-item:hover,
.xljdZn-uOWybLGM2Y .dropdown-item:focus {
  background: white !important;
}
.xljdZn-uOWybLGM2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.xljdZn-uOWybLGM2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xljdZn-uOWybLGM2Y .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.xljdZn-uOWybLGM2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.xljdZn-uOWybLGM2Y .nav-link {
  position: relative;
}
.xljdZn-uOWybLGM2Y .container {
  display: flex;
  margin: auto;
}
.xljdZn-uOWybLGM2Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.xljdZn-uOWybLGM2Y .dropdown-menu,
.xljdZn-uOWybLGM2Y .navbar.opened {
  background: #f4f4f4 !important;
}
.xljdZn-uOWybLGM2Y .nav-item:focus,
.xljdZn-uOWybLGM2Y .nav-link:focus {
  outline: none;
}
.xljdZn-uOWybLGM2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWybLGM2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xljdZn-uOWybLGM2Y .dropdown .dropdown-menu .dropdown-item .application-iconfont {
  vertical-align: sub;
}
.xljdZn-uOWybLGM2Y .dropdown .dropdown-menu .dropdown-item .application-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xljdZn-uOWybLGM2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xljdZn-uOWybLGM2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xljdZn-uOWybLGM2Y .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}
.xljdZn-uOWybLGM2Y .navbar.opened {
  transition: all 0.3s;
}
.xljdZn-uOWybLGM2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.xljdZn-uOWybLGM2Y .navbar .navbar-logo img {
  width: auto;
}
.xljdZn-uOWybLGM2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.xljdZn-uOWybLGM2Y .navbar.collapsed {
  justify-content: center;
}
.xljdZn-uOWybLGM2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xljdZn-uOWybLGM2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .xljdZn-uOWybLGM2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.xljdZn-uOWybLGM2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xljdZn-uOWybLGM2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xljdZn-uOWybLGM2Y .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%;
}
.xljdZn-uOWybLGM2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xljdZn-uOWybLGM2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.xljdZn-uOWybLGM2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .xljdZn-uOWybLGM2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xljdZn-uOWybLGM2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xljdZn-uOWybLGM2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xljdZn-uOWybLGM2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .xljdZn-uOWybLGM2Y .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%;
  }
  .xljdZn-uOWybLGM2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xljdZn-uOWybLGM2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .xljdZn-uOWybLGM2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .xljdZn-uOWybLGM2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .xljdZn-uOWybLGM2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xljdZn-uOWybLGM2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.xljdZn-uOWybLGM2Y .navbar.navbar-short {
  min-height: 60px;
}
.xljdZn-uOWybLGM2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xljdZn-uOWybLGM2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xljdZn-uOWybLGM2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.xljdZn-uOWybLGM2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.xljdZn-uOWybLGM2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.xljdZn-uOWybLGM2Y .dropdown-item.active,
.xljdZn-uOWybLGM2Y .dropdown-item:active {
  background-color: transparent;
}
.xljdZn-uOWybLGM2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.xljdZn-uOWybLGM2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xljdZn-uOWybLGM2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xljdZn-uOWybLGM2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.xljdZn-uOWybLGM2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xljdZn-uOWybLGM2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xljdZn-uOWybLGM2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.xljdZn-uOWybLGM2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xljdZn-uOWybLGM2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.xljdZn-uOWybLGM2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.xljdZn-uOWybLGM2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xljdZn-uOWybLGM2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWybLGM2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xljdZn-uOWybLGM2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xljdZn-uOWybLGM2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWybLGM2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xljdZn-uOWybLGM2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xljdZn-uOWybLGM2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xljdZn-uOWybLGM2Y .navbar-dropdown {
  padding: 0 1rem;
}
.xljdZn-uOWybLGM2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xljdZn-uOWybLGM2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xljdZn-uOWybLGM2Y .navbar {
    height: 70px;
  }
  .xljdZn-uOWybLGM2Y .navbar.opened {
    height: auto;
  }
  .xljdZn-uOWybLGM2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xljdZn-uOWybMm1gH {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #eff0ff;
}
.xljdZn-uOWybMm1gH .line {
  background-color: #2b1c50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.xljdZn-uOWybMm1gH .application-text {
  color: #000000;
}
.xljdZn-uOWybMVzEl {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #eff0ff;
}
.xljdZn-uOWybMVzEl .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWybMVzEl .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWybMVzEl .card-wrapper {
  background: #3d2e7c;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .xljdZn-uOWybMVzEl .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .xljdZn-uOWybMVzEl .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .xljdZn-uOWybMVzEl .card-wrapper {
    padding: 4rem;
  }
}
.xljdZn-uOWybMVzEl .application-text,
.xljdZn-uOWybMVzEl .application-section-btn {
  color: #ffffff;
}
.xljdZn-uOWybMVzEl .card-title,
.xljdZn-uOWybMVzEl .card-box {
  text-align: left;
}
.xljdZn-uOWHEYCiC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image.disabled {
  display: none;
}
.xljdZn-uOWHEYCiC0 .application-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xljdZn-uOWHEYCiC0 .row {
  justify-content: center;
}
.xljdZn-uOWHEYCiC0 .card {
  justify-content: flex-end;
}
.xljdZn-uOWHEYCiC0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .title-wrapper {
    margin-bottom: 40px;
  }
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper {
  margin-bottom: 20px;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .logo-wrapper img {
  display: inline-block;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 5px !important;
}
.xljdZn-uOWHEYCiC0 .title-wrapper .application-section-title {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #386bb7, #e24c4a);
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn {
  margin-top: 20px;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus {
  color: #ffffff !important;
}
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:hover::after,
.xljdZn-uOWHEYCiC0 .application-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .nav-wrapper {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .nav-title {
  margin-bottom: 10px;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all .3s ease;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:hover,
.xljdZn-uOWHEYCiC0 .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #000000;
  transform: translateX(5px);
}
.xljdZn-uOWHEYCiC0 .application-copy {
  background-color: #3d2e7c;
  padding: 30px 40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .xljdZn-uOWHEYCiC0 .application-copy {
    padding: 20px;
  }
}
.xljdZn-uOWHEYCiC0 .application-section-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .nav-title {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list {
  color: #ffffff;
}
.xljdZn-uOWHEYCiC0 .list,
.xljdZn-uOWHEYCiC0 .item-wrap {
  color: #000000;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0.7);
  }
  50% {
    opacity: 1;
    transform: translateY(-10%) scale(1.05);
  }
  70% {
    transform: translateY(5%) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes bounceOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-10%) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateY(100%) scale(0.7);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: bounceIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: bounceOut 0.6s ease-in-out forwards;
  pointer-events: none;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
  transform: scale(1);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2), inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #fff;
    }
    50% {
        text-shadow: 0 0 20px #ff0;
    }
    100% {
        text-shadow: 0 0 5px #fff;
    }
}

.navbar-brand {
    animation: glow 2s alternate;
}
/* endlogoanimations */

/* mainanimations */
/* Style 1: press effect: scale 0.95 + inset shadow */
a, button, .btn {
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
a:active, button:active, .btn:active {
  transform: scale(0.95);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* endmainanimations */
