.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.28rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.12rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #6134ea !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6134ea !important;
  border-color: #6134ea !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #3b13b5 !important;
  border-color: #3b13b5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3b13b5 !important;
  border-color: #3b13b5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #6134ea !important;
  border-color: #6134ea !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3b13b5 !important;
  border-color: #3b13b5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3b13b5 !important;
  border-color: #3b13b5 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #6134ea;
  color: #6134ea;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3b13b5 !important;
  background-color: transparent!important;
  border-color: #3b13b5 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6134ea !important;
  border-color: #6134ea !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #6134ea;
  color: #6134ea;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3b13b5 !important;
  background-color: transparent!important;
  border-color: #3b13b5 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #6134ea !important;
  border-color: #6134ea !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #6134ea !important;
}
.text-success {
  color: #6134ea !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3611a7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3611a7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !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: #ff5500 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f1edfd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #6134ea !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tqh6y70CUr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tqh6y70CUr nav.navbar {
  position: fixed;
}
.cid-tqh6y70CUr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqh6y70CUr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqh6y70CUr .dropdown-item:hover,
.cid-tqh6y70CUr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tqh6y70CUr .dropdown-item:hover span {
  color: white;
}
.cid-tqh6y70CUr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqh6y70CUr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqh6y70CUr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqh6y70CUr .nav-link {
  position: relative;
}
.cid-tqh6y70CUr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .container {
    flex-wrap: nowrap;
  }
}
.cid-tqh6y70CUr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tqh6y70CUr .iconfont-wrapper:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .dropdown-menu,
.cid-tqh6y70CUr .navbar.opened {
  background: #060049 !important;
}
.cid-tqh6y70CUr .nav-item:focus,
.cid-tqh6y70CUr .nav-link:focus {
  outline: none;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqh6y70CUr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqh6y70CUr .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #060049;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tqh6y70CUr .navbar.opened {
  transition: all 0.3s;
}
.cid-tqh6y70CUr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqh6y70CUr .navbar .navbar-logo img {
  width: auto;
}
.cid-tqh6y70CUr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqh6y70CUr .navbar.collapsed {
  justify-content: center;
}
.cid-tqh6y70CUr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqh6y70CUr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqh6y70CUr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqh6y70CUr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqh6y70CUr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqh6y70CUr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqh6y70CUr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqh6y70CUr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tqh6y70CUr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqh6y70CUr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqh6y70CUr .navbar.navbar-short {
  min-height: 96px;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tqh6y70CUr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tqh6y70CUr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqh6y70CUr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqh6y70CUr .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tqh6y70CUr .dropdown-item.active,
.cid-tqh6y70CUr .dropdown-item:active {
  background-color: transparent;
}
.cid-tqh6y70CUr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #060049;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqh6y70CUr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqh6y70CUr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqh6y70CUr .navbar-buttons {
  text-align: center;
}
.cid-tqh6y70CUr .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tqh6y70CUr .navbar-buttons .btn:hover {
  color: #6134ea !important;
}
@media (max-width: 575px) {
  .cid-tqh6y70CUr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tqh6y70CUr .navbar-buttons .btn-black {
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr .navbar-buttons .btn-black:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #060049 !important;
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqh6y70CUr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqh6y70CUr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqh6y70CUr .navbar {
    height: 70px;
  }
  .cid-tqh6y70CUr .navbar.opened {
    height: auto;
  }
  .cid-tqh6y70CUr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqh6y70CUr .navbar-nav {
  margin: 0 auto;
}
.cid-tqh6y70CUr .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tqh6y70CUr .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tqh6y70CUr .nav-item .nav-link::after {
  color: #6134ea !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tqh6y70CUr .nav-item .nav-link:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tqh6y70CUr .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item {
  color: #060049 !important;
  background-color: transparent !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar {
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tqh6y70CUr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tqh6y70CUr .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tqh6y70CUr .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tqh6y70CUr .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-tKR5cDZoMD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e0437;
}
.cid-tKR5cDZoMD .container {
  max-width: 1000px;
}
.cid-tKR5cDZoMD img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tKR5cDZoMD .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tKR5cDZoMD img {
  filter: invert(1);
}
.cid-tKX06T2e9j {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/walll-resized-2000x625.png");
}
.cid-tKX06T2e9j h4 {
  display: flex;
  color: #000000;
}
.cid-tKX06T2e9j .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-tKX06T2e9j .wrap {
  display: flex;
}
.cid-tKX06T2e9j .icon {
  background: #090069;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white !important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-tKX06T2e9j img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-tKX06T2e9j .mbr-section-title {
  color: #090069;
  text-align: center;
}
.cid-tKX06T2e9j p {
  margin: 0;
}
.cid-tKX06T2e9j .card .card-header a.panel-title {
  background-color: transparent !important;
  margin-top: 0px !important;
}
.cid-tKX06T2e9j .mbr-section-subtitle {
  font-weight: 500;
  color: #656565;
  text-align: center;
}
.cid-tKX06T2e9j .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tKX06T2e9j .panel-group {
  width: 100%;
}
.cid-tKX06T2e9j .panel-title {
  border-bottom: 1px solid #090069;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tKX06T2e9j .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tKX06T2e9j .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tKX06T2e9j .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tKX06T2e9j .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKX06T2e9j .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-tKX06T2e9j .card .panel-body {
  background: #fff0b0;
}
.cid-tKX06T2e9j .sign {
  color: #000000;
}
.cid-tKX06T2e9j .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tKX06T2e9j .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-tKX06T2e9j .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-tKX06T2e9j .header-text,
.cid-tKX06T2e9j .sign {
  color: #333333;
}
.cid-tKX06T2e9j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKX06T2e9j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKXcf5yZjL {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKXcf5yZjL h4 {
  display: flex;
  color: #000000;
}
.cid-tKXcf5yZjL .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-tKXcf5yZjL .wrap {
  display: flex;
}
.cid-tKXcf5yZjL .icon {
  background: #090069;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white !important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-tKXcf5yZjL img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-tKXcf5yZjL .mbr-section-title {
  color: #090069;
  text-align: center;
}
.cid-tKXcf5yZjL p {
  margin: 0;
}
.cid-tKXcf5yZjL .card .card-header a.panel-title {
  background-color: transparent !important;
  margin-top: 0px !important;
}
.cid-tKXcf5yZjL .mbr-section-subtitle {
  font-weight: 500;
  color: #656565;
  text-align: center;
}
.cid-tKXcf5yZjL .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tKXcf5yZjL .panel-group {
  width: 100%;
}
.cid-tKXcf5yZjL .panel-title {
  border-bottom: 1px solid #090069;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tKXcf5yZjL .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tKXcf5yZjL .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tKXcf5yZjL .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tKXcf5yZjL .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKXcf5yZjL .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-tKXcf5yZjL .card .panel-body {
  background: #fff0b0;
}
.cid-tKXcf5yZjL .sign {
  color: #000000;
}
.cid-tKXcf5yZjL .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tKXcf5yZjL .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-tKXcf5yZjL .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-tKXcf5yZjL .header-text,
.cid-tKXcf5yZjL .sign {
  color: #333333;
}
.cid-tKXcf5yZjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKXcf5yZjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b0f4d;
  overflow: hidden;
}
.cid-tqh6y70CUr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tqh6y70CUr nav.navbar {
  position: fixed;
}
.cid-tqh6y70CUr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqh6y70CUr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqh6y70CUr .dropdown-item:hover,
.cid-tqh6y70CUr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tqh6y70CUr .dropdown-item:hover span {
  color: white;
}
.cid-tqh6y70CUr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqh6y70CUr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqh6y70CUr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqh6y70CUr .nav-link {
  position: relative;
}
.cid-tqh6y70CUr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .container {
    flex-wrap: nowrap;
  }
}
.cid-tqh6y70CUr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tqh6y70CUr .iconfont-wrapper:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .dropdown-menu,
.cid-tqh6y70CUr .navbar.opened {
  background: #060049 !important;
}
.cid-tqh6y70CUr .nav-item:focus,
.cid-tqh6y70CUr .nav-link:focus {
  outline: none;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqh6y70CUr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqh6y70CUr .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #060049;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tqh6y70CUr .navbar.opened {
  transition: all 0.3s;
}
.cid-tqh6y70CUr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqh6y70CUr .navbar .navbar-logo img {
  width: auto;
}
.cid-tqh6y70CUr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqh6y70CUr .navbar.collapsed {
  justify-content: center;
}
.cid-tqh6y70CUr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqh6y70CUr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqh6y70CUr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqh6y70CUr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqh6y70CUr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqh6y70CUr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqh6y70CUr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqh6y70CUr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tqh6y70CUr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqh6y70CUr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqh6y70CUr .navbar.navbar-short {
  min-height: 96px;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tqh6y70CUr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tqh6y70CUr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqh6y70CUr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqh6y70CUr .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tqh6y70CUr .dropdown-item.active,
.cid-tqh6y70CUr .dropdown-item:active {
  background-color: transparent;
}
.cid-tqh6y70CUr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #060049;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqh6y70CUr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqh6y70CUr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqh6y70CUr .navbar-buttons {
  text-align: center;
}
.cid-tqh6y70CUr .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tqh6y70CUr .navbar-buttons .btn:hover {
  color: #6134ea !important;
}
@media (max-width: 575px) {
  .cid-tqh6y70CUr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tqh6y70CUr .navbar-buttons .btn-black {
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr .navbar-buttons .btn-black:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #060049 !important;
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqh6y70CUr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqh6y70CUr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqh6y70CUr .navbar {
    height: 70px;
  }
  .cid-tqh6y70CUr .navbar.opened {
    height: auto;
  }
  .cid-tqh6y70CUr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqh6y70CUr .navbar-nav {
  margin: 0 auto;
}
.cid-tqh6y70CUr .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tqh6y70CUr .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tqh6y70CUr .nav-item .nav-link::after {
  color: #6134ea !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tqh6y70CUr .nav-item .nav-link:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tqh6y70CUr .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item {
  color: #060049 !important;
  background-color: transparent !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar {
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tqh6y70CUr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tqh6y70CUr .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tqh6y70CUr .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tqh6y70CUr .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-tJgraUYQYD {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tJgraUYQYD .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
  width: 100%;
  background-color: #1a0081;
  padding: 5px 14px;
  color: #ffffff;
  display: table;
}
.cid-tJgraUYQYD .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
  width: 100%;
}
.cid-tJgraUYQYD .mbr-section-title.display-2 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.cid-tJgraUYQYD .mbr-text {
  color: #ffffff;
  font-weight: 400;
  width: 100;
}
.cid-tJgraUYQYD .mbr-text.display-7 {
  font-size: 20px;
  line-height: 1.5;
}
.cid-tJgraUYQYD .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-tJgraUYQYD .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tJgraUYQYD .mbr-section-btn .btn {
  border-radius: 3px;
  line-height: 2;
  letter-spacing: 1px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
.cid-tJgraUYQYD .mbr-section-btn.display-4,
.cid-tJgraUYQYD .btn.display-4 {
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .cid-tJgraUYQYD .separator,
  .cid-tJgraUYQYD .sep-holder,
  .cid-tJgraUYQYD .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tJgraUYQYD .mbr-section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tJgraUYQYD .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.cid-tJgraUYQYD .mbr-section-title,
.cid-tJgraUYQYD .mbr-section-btn {
  text-align: center;
}
.cid-tJgraUYQYD .mbr-section-subtitle,
.cid-tJgraUYQYD .mbr-section-title .accent-word,
.cid-tJgraUYQYD .mbr-section-btn {
  color: #ffffff;
}
.cid-uJzLeI0CLL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJzLeI0CLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJzLeI0CLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJzLeI0CLL .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJzLeI0CLL .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJzLeI0CLL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJzLeI0CLL .mbr-section-btn .btn::after,
.cid-uJzLeI0CLL .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJzLeI0CLL .mbr-section-btn .btn:hover,
.cid-uJzLeI0CLL .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJzLeI0CLL .mbr-section-btn .btn:hover::after,
.cid-uJzLeI0CLL .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJzLeI0CLL .items-wrapper {
  margin: 0 -20px;
}
.cid-uJzLeI0CLL .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJzLeI0CLL .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJzLeI0CLL .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJzLeI0CLL .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJzLeI0CLL .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJzLeI0CLL .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJzLeI0CLL .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJzLeI0CLL .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJzLeI0CLL .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJzLeI0CLL .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJzLeI0CLL .mbr-section-title {
  color: #ffffff;
}
.cid-uJzLeI0CLL .mbr-tag {
  color: #e6c63b;
}
.cid-uJzLeI0CLL .mbr-text {
  color: #ffffff;
}
.cid-uJzLeI0CLL .item-name {
  color: #ffffff;
}
.cid-uJzLeI0CLL .item-role {
  color: #e43f3f;
}
.cid-uJzLeI0CLL .item-name,
.cid-uJzLeI0CLL .item-btn {
  text-align: center;
  color: #ffe161;
}
.cid-uJzLAfy3SZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJzLAfy3SZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJzLAfy3SZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJzLAfy3SZ .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJzLAfy3SZ .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJzLAfy3SZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJzLAfy3SZ .mbr-section-btn .btn::after,
.cid-uJzLAfy3SZ .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJzLAfy3SZ .mbr-section-btn .btn:hover,
.cid-uJzLAfy3SZ .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJzLAfy3SZ .mbr-section-btn .btn:hover::after,
.cid-uJzLAfy3SZ .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJzLAfy3SZ .items-wrapper {
  margin: 0 -20px;
}
.cid-uJzLAfy3SZ .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJzLAfy3SZ .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJzLAfy3SZ .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJzLAfy3SZ .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJzLAfy3SZ .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJzLAfy3SZ .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJzLAfy3SZ .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJzLAfy3SZ .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJzLAfy3SZ .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJzLAfy3SZ .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJzLAfy3SZ .mbr-section-title {
  color: #ffffff;
}
.cid-uJzLAfy3SZ .mbr-tag {
  color: #e6c63b;
}
.cid-uJzLAfy3SZ .mbr-text {
  color: #ffffff;
}
.cid-uJzLAfy3SZ .item-name {
  color: #ffffff;
}
.cid-uJzLAfy3SZ .item-role {
  color: #e43f3f;
}
.cid-uJzLAfy3SZ .item-name,
.cid-uJzLAfy3SZ .item-btn {
  text-align: center;
  color: #ffe161;
}
.cid-uJzLBzNDHX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJzLBzNDHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJzLBzNDHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJzLBzNDHX .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJzLBzNDHX .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJzLBzNDHX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJzLBzNDHX .mbr-section-btn .btn::after,
.cid-uJzLBzNDHX .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJzLBzNDHX .mbr-section-btn .btn:hover,
.cid-uJzLBzNDHX .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJzLBzNDHX .mbr-section-btn .btn:hover::after,
.cid-uJzLBzNDHX .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJzLBzNDHX .items-wrapper {
  margin: 0 -20px;
}
.cid-uJzLBzNDHX .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJzLBzNDHX .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJzLBzNDHX .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJzLBzNDHX .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJzLBzNDHX .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJzLBzNDHX .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJzLBzNDHX .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJzLBzNDHX .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJzLBzNDHX .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJzLBzNDHX .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJzLBzNDHX .mbr-section-title {
  color: #ffffff;
}
.cid-uJzLBzNDHX .mbr-tag {
  color: #e6c63b;
}
.cid-uJzLBzNDHX .mbr-text {
  color: #ffffff;
}
.cid-uJzLBzNDHX .item-name {
  color: #ffffff;
}
.cid-uJzLBzNDHX .item-role {
  color: #e43f3f;
}
.cid-uJzLBzNDHX .item-name,
.cid-uJzLBzNDHX .item-btn {
  color: #ffe161;
}
.cid-tK4OnKUZ1d {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tK4OnKUZ1d .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
  width: 100%;
  background-color: #090069;
  padding: 5px 14px;
  color: #ffffff;
  display: table;
}
.cid-tK4OnKUZ1d .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
  width: 100%;
}
.cid-tK4OnKUZ1d .mbr-section-title.display-2 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.cid-tK4OnKUZ1d .mbr-text {
  color: #ffffff;
  font-weight: 400;
  width: 100;
}
.cid-tK4OnKUZ1d .mbr-text.display-7 {
  font-size: 20px;
  line-height: 1.5;
}
.cid-tK4OnKUZ1d .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-tK4OnKUZ1d .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tK4OnKUZ1d .mbr-section-btn .btn {
  border-radius: 3px;
  line-height: 2;
  letter-spacing: 1px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
.cid-tK4OnKUZ1d .mbr-section-btn.display-4,
.cid-tK4OnKUZ1d .btn.display-4 {
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .cid-tK4OnKUZ1d .separator,
  .cid-tK4OnKUZ1d .sep-holder,
  .cid-tK4OnKUZ1d .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tK4OnKUZ1d .mbr-section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tK4OnKUZ1d .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.cid-tK4OnKUZ1d .mbr-section-title,
.cid-tK4OnKUZ1d .mbr-section-btn {
  text-align: center;
}
.cid-tK4OnKUZ1d .mbr-section-subtitle,
.cid-tK4OnKUZ1d .mbr-section-title .accent-word,
.cid-tK4OnKUZ1d .mbr-section-btn {
  color: #ffffff;
}
.cid-tKRhSicHgy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00004c;
}
.cid-tKRhSicHgy .container {
  max-width: 1000px;
}
.cid-tKRhSicHgy img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tKRhSicHgy .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b0f4d;
  overflow: hidden;
}
.cid-tqh6y70CUr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tqh6y70CUr nav.navbar {
  position: fixed;
}
.cid-tqh6y70CUr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqh6y70CUr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqh6y70CUr .dropdown-item:hover,
.cid-tqh6y70CUr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tqh6y70CUr .dropdown-item:hover span {
  color: white;
}
.cid-tqh6y70CUr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqh6y70CUr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqh6y70CUr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqh6y70CUr .nav-link {
  position: relative;
}
.cid-tqh6y70CUr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .container {
    flex-wrap: nowrap;
  }
}
.cid-tqh6y70CUr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tqh6y70CUr .iconfont-wrapper:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .dropdown-menu,
.cid-tqh6y70CUr .navbar.opened {
  background: #060049 !important;
}
.cid-tqh6y70CUr .nav-item:focus,
.cid-tqh6y70CUr .nav-link:focus {
  outline: none;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqh6y70CUr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqh6y70CUr .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #060049;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tqh6y70CUr .navbar.opened {
  transition: all 0.3s;
}
.cid-tqh6y70CUr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqh6y70CUr .navbar .navbar-logo img {
  width: auto;
}
.cid-tqh6y70CUr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqh6y70CUr .navbar.collapsed {
  justify-content: center;
}
.cid-tqh6y70CUr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqh6y70CUr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqh6y70CUr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqh6y70CUr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqh6y70CUr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqh6y70CUr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqh6y70CUr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqh6y70CUr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tqh6y70CUr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqh6y70CUr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqh6y70CUr .navbar.navbar-short {
  min-height: 96px;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tqh6y70CUr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tqh6y70CUr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqh6y70CUr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqh6y70CUr .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tqh6y70CUr .dropdown-item.active,
.cid-tqh6y70CUr .dropdown-item:active {
  background-color: transparent;
}
.cid-tqh6y70CUr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #060049;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqh6y70CUr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqh6y70CUr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqh6y70CUr .navbar-buttons {
  text-align: center;
}
.cid-tqh6y70CUr .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tqh6y70CUr .navbar-buttons .btn:hover {
  color: #6134ea !important;
}
@media (max-width: 575px) {
  .cid-tqh6y70CUr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tqh6y70CUr .navbar-buttons .btn-black {
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr .navbar-buttons .btn-black:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #060049 !important;
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqh6y70CUr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqh6y70CUr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqh6y70CUr .navbar {
    height: 70px;
  }
  .cid-tqh6y70CUr .navbar.opened {
    height: auto;
  }
  .cid-tqh6y70CUr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqh6y70CUr .navbar-nav {
  margin: 0 auto;
}
.cid-tqh6y70CUr .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tqh6y70CUr .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tqh6y70CUr .nav-item .nav-link::after {
  color: #6134ea !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tqh6y70CUr .nav-item .nav-link:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tqh6y70CUr .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item {
  color: #060049 !important;
  background-color: transparent !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar {
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tqh6y70CUr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tqh6y70CUr .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tqh6y70CUr .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tqh6y70CUr .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-tKRhYoup8B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00004c;
}
.cid-tKRhYoup8B .container {
  max-width: 1000px;
}
.cid-tKRhYoup8B img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tKRhYoup8B .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tJrrBdNPpR {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/paris-night-2000x800.jpg");
}
.cid-tJrrBdNPpR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJrrBdNPpR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJrrBdNPpR .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .cid-tJrrBdNPpR .mbr-section-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tJrrBdNPpR .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tJrrBdNPpR .mbr-section-title {
  color: #ffffff;
}
.cid-tJrrBdNPpR .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tJrrBdNPpR .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tJrrBdNPpR .cards-wrap {
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tJrrBdNPpR .cards-wrap {
    gap: 12px;
  }
}
.cid-tJrrBdNPpR .card {
  display: flex;
  width: calc(25% - 60px/4);
  padding: 50px;
  border-radius: 40px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-tJrrBdNPpR .card {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .cid-tJrrBdNPpR .card {
    padding: 20px;
    border-radius: 12px;
    width: calc(100%/3 - 20px);
  }
}
@media (max-width: 767px) {
  .cid-tJrrBdNPpR .card {
    padding: 12px;
    border-radius: 12px;
    width: calc(100%/2 - 10px);
  }
}
@media (max-width: 575px) {
  .cid-tJrrBdNPpR .card {
    width: 100%;
  }
}
.cid-tJrrBdNPpR .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.cid-tJrrBdNPpR .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-tJrrBdNPpR .img-wrapper img {
  height: 100px;
  width: auto;
}
@media (max-width: 1399px) {
  .cid-tJrrBdNPpR .img-wrapper img {
    height: 80px;
  }
}
.cid-tJrrBdNPpR .card-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.cid-tJrrBdNPpR .card-subtitle {
  color: #FA7E26;
  word-break: normal;
}
.cid-tJrrBdNPpR .card-title {
  color: #000000;
  text-align: right;
}
.cid-tJrwKBwk9W {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.cid-tJrwKBwk9W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJrwKBwk9W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-7.jpg");
}
.cid-tJrwKBwk9W .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .cid-tJrwKBwk9W .mbr-section-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tJrwKBwk9W .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tJrwKBwk9W .mbr-section-title {
  color: #e3ebf3;
}
.cid-tJrwKBwk9W .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tJrwKBwk9W .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tJrwKBwk9W .cards-wrap {
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tJrwKBwk9W .cards-wrap {
    gap: 12px;
  }
}
.cid-tJrwKBwk9W .card {
  display: flex;
  width: calc(25% - 60px/4);
  padding: 50px;
  border-radius: 40px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-tJrwKBwk9W .card {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .cid-tJrwKBwk9W .card {
    padding: 20px;
    border-radius: 12px;
    width: calc(100%/3 - 20px);
  }
}
@media (max-width: 767px) {
  .cid-tJrwKBwk9W .card {
    padding: 12px;
    border-radius: 12px;
    width: calc(100%/2 - 10px);
  }
}
@media (max-width: 575px) {
  .cid-tJrwKBwk9W .card {
    width: 100%;
  }
}
.cid-tJrwKBwk9W .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.cid-tJrwKBwk9W .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-tJrwKBwk9W .img-wrapper img {
  height: 100px;
  width: auto;
}
@media (max-width: 1399px) {
  .cid-tJrwKBwk9W .img-wrapper img {
    height: 80px;
  }
}
.cid-tJrwKBwk9W .card-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.cid-tJrwKBwk9W .card-subtitle {
  color: #FA7E26;
  word-break: normal;
}
.cid-tJrwKBwk9W .card-title {
  color: #4479d9;
  text-align: right;
}
.cid-tJDw2wgBZX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1-7.jpg");
}
.cid-tJDw2wgBZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJDw2wgBZX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJDw2wgBZX .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .cid-tJDw2wgBZX .mbr-section-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tJDw2wgBZX .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tJDw2wgBZX .mbr-section-title {
  color: #e3ebf3;
}
.cid-tJDw2wgBZX .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tJDw2wgBZX .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tJDw2wgBZX .cards-wrap {
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tJDw2wgBZX .cards-wrap {
    gap: 12px;
  }
}
.cid-tJDw2wgBZX .card {
  display: flex;
  width: calc(25% - 60px/4);
  padding: 50px;
  border-radius: 40px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-tJDw2wgBZX .card {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .cid-tJDw2wgBZX .card {
    padding: 20px;
    border-radius: 12px;
    width: calc(100%/3 - 20px);
  }
}
@media (max-width: 767px) {
  .cid-tJDw2wgBZX .card {
    padding: 12px;
    border-radius: 12px;
    width: calc(100%/2 - 10px);
  }
}
@media (max-width: 575px) {
  .cid-tJDw2wgBZX .card {
    width: 100%;
  }
}
.cid-tJDw2wgBZX .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.cid-tJDw2wgBZX .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-tJDw2wgBZX .img-wrapper img {
  height: 100px;
  width: auto;
}
@media (max-width: 1399px) {
  .cid-tJDw2wgBZX .img-wrapper img {
    height: 80px;
  }
}
.cid-tJDw2wgBZX .card-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.cid-tJDw2wgBZX .card-subtitle {
  color: #FA7E26;
  word-break: normal;
}
.cid-tJDw2wgBZX .card-title {
  color: #1a1e21;
  text-align: right;
}
.cid-tKRi55fvXO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #00004c;
}
.cid-tKRi55fvXO .container {
  max-width: 1000px;
}
.cid-tKRi55fvXO img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tKRi55fvXO .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tKRi55fvXO img {
  filter: invert(1);
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b0f4d;
  overflow: hidden;
}
.cid-tJDJ7FwyR0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tJDJ7FwyR0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJDJ7FwyR0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJDJ7FwyR0 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tJDJ7FwyR0 .mbr-text,
.cid-tJDJ7FwyR0 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tJDJ7FwyR0 b,
.cid-tJDJ7FwyR0 strong {
  font-weight: 900;
}
.cid-tJDJ7FwyR0 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-um6LJEKTCa {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-um6LJEKTCa .item-img {
  position: relative;
}
.cid-um6LJEKTCa .button1 {
  background: #ffffff;
}
.cid-um6LJEKTCa .btn-wrap {
  padding: 1.5rem 1.5rem;
  border-radius: 2rem;
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-um6LJEKTCa .btn-wrap {
    margin-top: 0rem;
    margin-right: 0rem;
    width: 100%;
    padding: 1rem 1rem;
  }
}
.cid-um6LJEKTCa .button2 {
  background: #bed2f5;
}
@media (max-width: 767px) {
  .cid-um6LJEKTCa .button2 {
    margin-top: 1rem;
  }
}
.cid-um6LJEKTCa .title {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .cid-um6LJEKTCa .title {
    top: 25%;
  }
}
.cid-um6LJEKTCa .image-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-um6LJEKTCa .image-wrapper {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .cid-um6LJEKTCa .image-wrapper {
    min-height: 400px;
  }
}
.cid-um6LJEKTCa .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-um6LJEKTCa .item-wrapper {
  position: relative;
  background: #0e0437;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-um6LJEKTCa .item-wrapper {
    margin-top: 4rem;
  }
}
.cid-um6LJEKTCa .link-icon-wrapper {
  position: absolute;
  left: -1px;
  padding: 0rem;
  bottom: -1px;
  background: #0e0437;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .cid-um6LJEKTCa .link-icon-wrapper {
    padding: 1rem;
    flex-direction: column;
  }
}
.cid-um6LJEKTCa .link-icon-wrapper .icon-wrap {
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  display: flex;
  border: 1px solid currentColor;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 1rem;
}
.cid-um6LJEKTCa .link-icon-wrapper .icon-wrap:hover {
  cursor: pointer;
}
.cid-um6LJEKTCa .link-icon-wrapper .icon-wrap:hover span {
  transform: scale(1.4);
}
.cid-um6LJEKTCa .link-icon-wrapper .icon-wrap span {
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-um6LJEKTCa .link-icon-wrapper .svg1 {
  position: absolute;
  top: -40px;
  left: 0px;
  transform: rotate(-90deg);
  width: 40px;
}
.cid-um6LJEKTCa .link-icon-wrapper .svg1 path {
  fill: #0e0437;
}
.cid-um6LJEKTCa .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(-90deg);
  width: 40px;
  bottom: 0;
  right: -40px;
}
.cid-um6LJEKTCa .link-icon-wrapper .svg2 path {
  fill: #0e0437;
}
.cid-um6LJEKTCa .icon1 {
  color: currentColor;
  border-color: currentColor;
}
.cid-um6LJEKTCa .icon2 {
  color: currentColor;
  border-color: currentColor;
}
.cid-um6LJEKTCa img,
.cid-um6LJEKTCa .item-img {
  width: 100%;
}
.cid-um6LJEKTCa .item-title2,
.cid-um6LJEKTCa .icon2 {
  color: #2a2c2d;
}
.cid-um6LJEKTCa .item-title1,
.cid-um6LJEKTCa .icon1 {
  color: #ffffff;
}
.cid-um6LJEKTCa .main-title {
  color: #1a0081;
  text-align: center;
}
.cid-um6LJEKTCa .main-title DIV {
  text-align: center;
}
.cid-tKRfDOkLbz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #00004c;
}
.cid-tKRfDOkLbz .container {
  max-width: 1000px;
}
.cid-tKRfDOkLbz img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tKRfDOkLbz .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tKRfDOkLbz img {
  filter: invert(1);
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b0f4d;
  overflow: hidden;
}
.cid-tqh6y70CUr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tqh6y70CUr nav.navbar {
  position: fixed;
}
.cid-tqh6y70CUr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqh6y70CUr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqh6y70CUr .dropdown-item:hover,
.cid-tqh6y70CUr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tqh6y70CUr .dropdown-item:hover span {
  color: white;
}
.cid-tqh6y70CUr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqh6y70CUr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqh6y70CUr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqh6y70CUr .nav-link {
  position: relative;
}
.cid-tqh6y70CUr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .container {
    flex-wrap: nowrap;
  }
}
.cid-tqh6y70CUr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tqh6y70CUr .iconfont-wrapper:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .dropdown-menu,
.cid-tqh6y70CUr .navbar.opened {
  background: #060049 !important;
}
.cid-tqh6y70CUr .nav-item:focus,
.cid-tqh6y70CUr .nav-link:focus {
  outline: none;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqh6y70CUr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqh6y70CUr .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #060049;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tqh6y70CUr .navbar.opened {
  transition: all 0.3s;
}
.cid-tqh6y70CUr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqh6y70CUr .navbar .navbar-logo img {
  width: auto;
}
.cid-tqh6y70CUr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqh6y70CUr .navbar.collapsed {
  justify-content: center;
}
.cid-tqh6y70CUr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqh6y70CUr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqh6y70CUr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqh6y70CUr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqh6y70CUr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqh6y70CUr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqh6y70CUr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqh6y70CUr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tqh6y70CUr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqh6y70CUr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqh6y70CUr .navbar.navbar-short {
  min-height: 96px;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tqh6y70CUr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tqh6y70CUr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqh6y70CUr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqh6y70CUr .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tqh6y70CUr .dropdown-item.active,
.cid-tqh6y70CUr .dropdown-item:active {
  background-color: transparent;
}
.cid-tqh6y70CUr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #060049;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqh6y70CUr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqh6y70CUr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqh6y70CUr .navbar-buttons {
  text-align: center;
}
.cid-tqh6y70CUr .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tqh6y70CUr .navbar-buttons .btn:hover {
  color: #6134ea !important;
}
@media (max-width: 575px) {
  .cid-tqh6y70CUr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tqh6y70CUr .navbar-buttons .btn-black {
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr .navbar-buttons .btn-black:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #060049 !important;
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqh6y70CUr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqh6y70CUr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqh6y70CUr .navbar {
    height: 70px;
  }
  .cid-tqh6y70CUr .navbar.opened {
    height: auto;
  }
  .cid-tqh6y70CUr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqh6y70CUr .navbar-nav {
  margin: 0 auto;
}
.cid-tqh6y70CUr .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tqh6y70CUr .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tqh6y70CUr .nav-item .nav-link::after {
  color: #6134ea !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tqh6y70CUr .nav-item .nav-link:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tqh6y70CUr .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item {
  color: #060049 !important;
  background-color: transparent !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar {
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tqh6y70CUr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tqh6y70CUr .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tqh6y70CUr .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tqh6y70CUr .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-uJzVpe0b7F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-uJzVpe0b7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJzVpe0b7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJzVpe0b7F .mbr-tag {
  margin-bottom: 16px;
  color: #e6c63b;
}
@media (max-width: 992px) {
  .cid-uJzVpe0b7F .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uJzVpe0b7F .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJzVpe0b7F .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uJzVpe0b7F .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJzVpe0b7F .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uJzVpe0b7F .mbr-section-btn .btn::after,
.cid-uJzVpe0b7F .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJzVpe0b7F .mbr-section-btn .btn:hover,
.cid-uJzVpe0b7F .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJzVpe0b7F .mbr-section-btn .btn:hover::after,
.cid-uJzVpe0b7F .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJzVpe0b7F .items-wrapper {
  margin: 0 -20px;
}
.cid-uJzVpe0b7F .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJzVpe0b7F .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-uJzVpe0b7F .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJzVpe0b7F .items-wrapper .item:nth-child(2n) {
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJzVpe0b7F .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJzVpe0b7F .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJzVpe0b7F .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #2c2c2c;
}
@media (max-width: 992px) {
  .cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJzVpe0b7F .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJzVpe0b7F .mbr-section-title {
  color: #ffffff;
}
.cid-uJzVpe0b7F .mbr-text {
  color: #ffffff;
}
.cid-uJzVpe0b7F .item-name {
  color: #ffffff;
}
.cid-uJzVpe0b7F .item-role {
  color: #c7c7c7;
}
.cid-uJzVpe0b7F .item-name,
.cid-uJzVpe0b7F .item-btn {
  color: #e6c63b;
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tqh6y70CUr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tqh6y70CUr nav.navbar {
  position: fixed;
}
.cid-tqh6y70CUr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqh6y70CUr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqh6y70CUr .dropdown-item:hover,
.cid-tqh6y70CUr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tqh6y70CUr .dropdown-item:hover span {
  color: white;
}
.cid-tqh6y70CUr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqh6y70CUr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqh6y70CUr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqh6y70CUr .nav-link {
  position: relative;
}
.cid-tqh6y70CUr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .container {
    flex-wrap: nowrap;
  }
}
.cid-tqh6y70CUr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tqh6y70CUr .iconfont-wrapper:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .dropdown-menu,
.cid-tqh6y70CUr .navbar.opened {
  background: #060049 !important;
}
.cid-tqh6y70CUr .nav-item:focus,
.cid-tqh6y70CUr .nav-link:focus {
  outline: none;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqh6y70CUr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqh6y70CUr .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #060049;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tqh6y70CUr .navbar.opened {
  transition: all 0.3s;
}
.cid-tqh6y70CUr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqh6y70CUr .navbar .navbar-logo img {
  width: auto;
}
.cid-tqh6y70CUr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqh6y70CUr .navbar.collapsed {
  justify-content: center;
}
.cid-tqh6y70CUr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqh6y70CUr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqh6y70CUr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqh6y70CUr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqh6y70CUr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqh6y70CUr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqh6y70CUr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqh6y70CUr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tqh6y70CUr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqh6y70CUr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqh6y70CUr .navbar.navbar-short {
  min-height: 96px;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tqh6y70CUr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tqh6y70CUr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqh6y70CUr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqh6y70CUr .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tqh6y70CUr .dropdown-item.active,
.cid-tqh6y70CUr .dropdown-item:active {
  background-color: transparent;
}
.cid-tqh6y70CUr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #060049;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqh6y70CUr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqh6y70CUr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqh6y70CUr .navbar-buttons {
  text-align: center;
}
.cid-tqh6y70CUr .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tqh6y70CUr .navbar-buttons .btn:hover {
  color: #6134ea !important;
}
@media (max-width: 575px) {
  .cid-tqh6y70CUr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tqh6y70CUr .navbar-buttons .btn-black {
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr .navbar-buttons .btn-black:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #060049 !important;
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqh6y70CUr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqh6y70CUr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqh6y70CUr .navbar {
    height: 70px;
  }
  .cid-tqh6y70CUr .navbar.opened {
    height: auto;
  }
  .cid-tqh6y70CUr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqh6y70CUr .navbar-nav {
  margin: 0 auto;
}
.cid-tqh6y70CUr .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tqh6y70CUr .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tqh6y70CUr .nav-item .nav-link::after {
  color: #6134ea !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tqh6y70CUr .nav-item .nav-link:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tqh6y70CUr .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item {
  color: #060049 !important;
  background-color: transparent !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar {
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tqh6y70CUr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tqh6y70CUr .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tqh6y70CUr .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tqh6y70CUr .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-uJ7rlw5Zz1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-uJ7rlw5Zz1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ7rlw5Zz1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ7rlw5Zz1 .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJ7rlw5Zz1 .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJ7rlw5Zz1 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ7rlw5Zz1 .mbr-section-btn .btn::after,
.cid-uJ7rlw5Zz1 .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJ7rlw5Zz1 .mbr-section-btn .btn:hover,
.cid-uJ7rlw5Zz1 .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJ7rlw5Zz1 .mbr-section-btn .btn:hover::after,
.cid-uJ7rlw5Zz1 .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJ7rlw5Zz1 .items-wrapper {
  margin: 0 -20px;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJ7rlw5Zz1 .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJ7rlw5Zz1 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJ7rlw5Zz1 .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJ7rlw5Zz1 .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJ7rlw5Zz1 .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJ7rlw5Zz1 .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJ7rlw5Zz1 .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJ7rlw5Zz1 .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJ7rlw5Zz1 .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJ7rlw5Zz1 .mbr-section-title {
  color: #ffffff;
}
.cid-uJ7rlw5Zz1 .mbr-tag {
  color: #adadad;
}
.cid-uJ7rlw5Zz1 .mbr-text {
  color: #ffffff;
}
.cid-uJ7rlw5Zz1 .item-name {
  color: #ffffff;
}
.cid-uJ7rlw5Zz1 .item-role {
  color: #c7c7c7;
}
.cid-uJp6oblLr6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-uJp6oblLr6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJp6oblLr6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJp6oblLr6 .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJp6oblLr6 .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJp6oblLr6 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJp6oblLr6 .mbr-section-btn .btn::after,
.cid-uJp6oblLr6 .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJp6oblLr6 .mbr-section-btn .btn:hover,
.cid-uJp6oblLr6 .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJp6oblLr6 .mbr-section-btn .btn:hover::after,
.cid-uJp6oblLr6 .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJp6oblLr6 .items-wrapper {
  margin: 0 -20px;
}
.cid-uJp6oblLr6 .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJp6oblLr6 .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJp6oblLr6 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJp6oblLr6 .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJp6oblLr6 .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJp6oblLr6 .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJp6oblLr6 .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJp6oblLr6 .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJp6oblLr6 .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJp6oblLr6 .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJp6oblLr6 .mbr-section-title {
  color: #ffffff;
}
.cid-uJp6oblLr6 .mbr-tag {
  color: #adadad;
}
.cid-uJp6oblLr6 .mbr-text {
  color: #ffffff;
}
.cid-uJp6oblLr6 .item-name {
  color: #ffffff;
}
.cid-uJp6oblLr6 .item-role {
  color: #c7c7c7;
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b0f4d;
  overflow: hidden;
}
.cid-tqh6y70CUr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tqh6y70CUr nav.navbar {
  position: fixed;
}
.cid-tqh6y70CUr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqh6y70CUr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqh6y70CUr .dropdown-item:hover,
.cid-tqh6y70CUr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tqh6y70CUr .dropdown-item:hover span {
  color: white;
}
.cid-tqh6y70CUr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqh6y70CUr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqh6y70CUr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqh6y70CUr .nav-link {
  position: relative;
}
.cid-tqh6y70CUr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .container {
    flex-wrap: nowrap;
  }
}
.cid-tqh6y70CUr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tqh6y70CUr .iconfont-wrapper:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .dropdown-menu,
.cid-tqh6y70CUr .navbar.opened {
  background: #060049 !important;
}
.cid-tqh6y70CUr .nav-item:focus,
.cid-tqh6y70CUr .nav-link:focus {
  outline: none;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqh6y70CUr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqh6y70CUr .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #060049;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tqh6y70CUr .navbar.opened {
  transition: all 0.3s;
}
.cid-tqh6y70CUr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqh6y70CUr .navbar .navbar-logo img {
  width: auto;
}
.cid-tqh6y70CUr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqh6y70CUr .navbar.collapsed {
  justify-content: center;
}
.cid-tqh6y70CUr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqh6y70CUr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqh6y70CUr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqh6y70CUr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqh6y70CUr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqh6y70CUr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqh6y70CUr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqh6y70CUr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tqh6y70CUr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqh6y70CUr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqh6y70CUr .navbar.navbar-short {
  min-height: 96px;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tqh6y70CUr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tqh6y70CUr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqh6y70CUr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqh6y70CUr .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tqh6y70CUr .dropdown-item.active,
.cid-tqh6y70CUr .dropdown-item:active {
  background-color: transparent;
}
.cid-tqh6y70CUr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #060049;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqh6y70CUr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqh6y70CUr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqh6y70CUr .navbar-buttons {
  text-align: center;
}
.cid-tqh6y70CUr .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tqh6y70CUr .navbar-buttons .btn:hover {
  color: #6134ea !important;
}
@media (max-width: 575px) {
  .cid-tqh6y70CUr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tqh6y70CUr .navbar-buttons .btn-black {
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr .navbar-buttons .btn-black:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #060049 !important;
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqh6y70CUr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqh6y70CUr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqh6y70CUr .navbar {
    height: 70px;
  }
  .cid-tqh6y70CUr .navbar.opened {
    height: auto;
  }
  .cid-tqh6y70CUr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqh6y70CUr .navbar-nav {
  margin: 0 auto;
}
.cid-tqh6y70CUr .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tqh6y70CUr .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tqh6y70CUr .nav-item .nav-link::after {
  color: #6134ea !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tqh6y70CUr .nav-item .nav-link:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tqh6y70CUr .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item {
  color: #060049 !important;
  background-color: transparent !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar {
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tqh6y70CUr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tqh6y70CUr .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tqh6y70CUr .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tqh6y70CUr .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-tKR0Q3kddk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKR0Q3kddk .container {
  max-width: 1000px;
}
.cid-tKR0Q3kddk img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tKR0Q3kddk .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-uIaxDGjb7S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e0437;
}
.cid-uIaxDGjb7S h4 {
  display: flex;
  color: #000000;
}
.cid-uIaxDGjb7S .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-uIaxDGjb7S .wrap {
  display: flex;
}
.cid-uIaxDGjb7S .icon {
  background: #6592e6;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white !important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-uIaxDGjb7S img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-uIaxDGjb7S .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uIaxDGjb7S p {
  margin: 0;
}
.cid-uIaxDGjb7S .card .card-header a.panel-title {
  background-color: transparent !important;
  margin-top: 0px !important;
}
.cid-uIaxDGjb7S .mbr-section-subtitle {
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}
.cid-uIaxDGjb7S .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uIaxDGjb7S .panel-group {
  width: 100%;
}
.cid-uIaxDGjb7S .panel-title {
  border-bottom: 1px solid #090069;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-uIaxDGjb7S .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uIaxDGjb7S .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uIaxDGjb7S .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-uIaxDGjb7S .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uIaxDGjb7S .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-uIaxDGjb7S .card .panel-body {
  background: #fff0b0;
}
.cid-uIaxDGjb7S .sign {
  color: #000000;
}
.cid-uIaxDGjb7S .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uIaxDGjb7S .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-uIaxDGjb7S .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-uIaxDGjb7S .header-text,
.cid-uIaxDGjb7S .sign {
  color: #ffffff;
}
.cid-uIaxDGjb7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIaxDGjb7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKQqzTTJsp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKQqzTTJsp h4 {
  display: flex;
  color: #000000;
}
.cid-tKQqzTTJsp .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-tKQqzTTJsp .wrap {
  display: flex;
}
.cid-tKQqzTTJsp .icon {
  background: #090069;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white !important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-tKQqzTTJsp img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-tKQqzTTJsp .mbr-section-title {
  color: #090069;
  text-align: center;
}
.cid-tKQqzTTJsp p {
  margin: 0;
}
.cid-tKQqzTTJsp .card .card-header a.panel-title {
  background-color: transparent !important;
  margin-top: 0px !important;
}
.cid-tKQqzTTJsp .mbr-section-subtitle {
  font-weight: 500;
  color: #656565;
  text-align: center;
}
.cid-tKQqzTTJsp .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tKQqzTTJsp .panel-group {
  width: 100%;
}
.cid-tKQqzTTJsp .panel-title {
  border-bottom: 1px solid #090069;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tKQqzTTJsp .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tKQqzTTJsp .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tKQqzTTJsp .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tKQqzTTJsp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKQqzTTJsp .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-tKQqzTTJsp .card .panel-body {
  background: #fff0b0;
}
.cid-tKQqzTTJsp .sign {
  color: #000000;
}
.cid-tKQqzTTJsp .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tKQqzTTJsp .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-tKQqzTTJsp .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-tKQqzTTJsp .header-text,
.cid-tKQqzTTJsp .sign {
  color: #333333;
}
.cid-tKQqzTTJsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKQqzTTJsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKQJV0wmNK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKQJV0wmNK h4 {
  display: flex;
  color: #000000;
}
.cid-tKQJV0wmNK .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-tKQJV0wmNK .wrap {
  display: flex;
}
.cid-tKQJV0wmNK .icon {
  background: #1d0a68;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white !important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-tKQJV0wmNK img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-tKQJV0wmNK .mbr-section-title {
  color: #090069;
  text-align: center;
}
.cid-tKQJV0wmNK p {
  margin: 0;
}
.cid-tKQJV0wmNK .card .card-header a.panel-title {
  background-color: transparent !important;
  margin-top: 0px !important;
}
.cid-tKQJV0wmNK .mbr-section-subtitle {
  font-weight: 500;
  color: #656565;
  text-align: center;
}
.cid-tKQJV0wmNK .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tKQJV0wmNK .panel-group {
  width: 100%;
}
.cid-tKQJV0wmNK .panel-title {
  border-bottom: 1px solid #090069;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tKQJV0wmNK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tKQJV0wmNK .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tKQJV0wmNK .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tKQJV0wmNK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKQJV0wmNK .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-tKQJV0wmNK .card .panel-body {
  background: #ffe885;
}
.cid-tKQJV0wmNK .sign {
  color: #000000;
}
.cid-tKQJV0wmNK .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tKQJV0wmNK .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-tKQJV0wmNK .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-tKQJV0wmNK .header-text,
.cid-tKQJV0wmNK .sign {
  color: #333333;
}
.cid-tKQJV0wmNK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKQJV0wmNK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKR1lmtdfh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #00004c;
}
.cid-tKR1lmtdfh .container {
  max-width: 1000px;
}
.cid-tKR1lmtdfh img {
  opacity: 0.8;
  max-width: 140px;
  object-fit: contain;
}
.cid-tKR1lmtdfh .image-block {
  max-width: 140px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tKR1lmtdfh img {
  filter: invert(1);
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b0f4d;
  overflow: hidden;
}
.cid-tqh6y70CUr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tqh6y70CUr nav.navbar {
  position: fixed;
}
.cid-tqh6y70CUr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqh6y70CUr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqh6y70CUr .dropdown-item:hover,
.cid-tqh6y70CUr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tqh6y70CUr .dropdown-item:hover span {
  color: white;
}
.cid-tqh6y70CUr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqh6y70CUr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqh6y70CUr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqh6y70CUr .nav-link {
  position: relative;
}
.cid-tqh6y70CUr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .container {
    flex-wrap: nowrap;
  }
}
.cid-tqh6y70CUr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tqh6y70CUr .iconfont-wrapper:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .dropdown-menu,
.cid-tqh6y70CUr .navbar.opened {
  background: #060049 !important;
}
.cid-tqh6y70CUr .nav-item:focus,
.cid-tqh6y70CUr .nav-link:focus {
  outline: none;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqh6y70CUr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqh6y70CUr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqh6y70CUr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqh6y70CUr .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #060049;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tqh6y70CUr .navbar.opened {
  transition: all 0.3s;
}
.cid-tqh6y70CUr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqh6y70CUr .navbar .navbar-logo img {
  width: auto;
}
.cid-tqh6y70CUr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqh6y70CUr .navbar.collapsed {
  justify-content: center;
}
.cid-tqh6y70CUr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqh6y70CUr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqh6y70CUr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqh6y70CUr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqh6y70CUr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqh6y70CUr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqh6y70CUr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqh6y70CUr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqh6y70CUr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqh6y70CUr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqh6y70CUr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tqh6y70CUr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqh6y70CUr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqh6y70CUr .navbar.navbar-short {
  min-height: 96px;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqh6y70CUr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tqh6y70CUr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tqh6y70CUr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqh6y70CUr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqh6y70CUr .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tqh6y70CUr .dropdown-item.active,
.cid-tqh6y70CUr .dropdown-item:active {
  background-color: transparent;
}
.cid-tqh6y70CUr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqh6y70CUr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #060049;
}
.cid-tqh6y70CUr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqh6y70CUr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqh6y70CUr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqh6y70CUr .navbar-buttons {
  text-align: center;
}
.cid-tqh6y70CUr .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tqh6y70CUr .navbar-buttons .btn:hover {
  color: #6134ea !important;
}
@media (max-width: 575px) {
  .cid-tqh6y70CUr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tqh6y70CUr .navbar-buttons .btn-black {
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr .navbar-buttons .btn-black:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #060049 !important;
  border: solid 2px #6592e6 !important;
  box-shadow: 3px 3px 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler:hover {
  border: solid 2px #6592e6 !important;
  color: #6134ea !important;
  box-shadow: 0 0 0 0 #6592e6 !important;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tqh6y70CUr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqh6y70CUr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqh6y70CUr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqh6y70CUr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqh6y70CUr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqh6y70CUr .navbar {
    height: 70px;
  }
  .cid-tqh6y70CUr .navbar.opened {
    height: auto;
  }
  .cid-tqh6y70CUr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqh6y70CUr .navbar-nav {
  margin: 0 auto;
}
.cid-tqh6y70CUr .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tqh6y70CUr .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tqh6y70CUr .nav-item .nav-link::after {
  color: #6134ea !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tqh6y70CUr .nav-item .nav-link:hover {
  color: #6134ea !important;
}
.cid-tqh6y70CUr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tqh6y70CUr .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item {
  color: #060049 !important;
  background-color: transparent !important;
}
.cid-tqh6y70CUr .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-tqh6y70CUr .navbar {
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tqh6y70CUr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tqh6y70CUr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tqh6y70CUr .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tqh6y70CUr .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tqh6y70CUr .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tqh6y70CUr .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tqh6y70CUr .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-uJ7Yi0aVfZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-8.jpg");
}
.cid-uJ7Yi0aVfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ7Yi0aVfZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ7Yi0aVfZ .row {
  margin-top: -3px;
  display: flex;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.cid-uJ7Yi0aVfZ .card {
  border-right: 0;
}
.cid-uJ7Yi0aVfZ .card .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJ7Yi0aVfZ .card .image-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uJ7Yi0aVfZ .card .image-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 1100px) {
  .cid-uJ7Yi0aVfZ .card .image-wrapper img {
    width: 100%;
  }
}
.cid-tJqTdHo3qp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0e0437;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tJqTdHo3qp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJqTdHo3qp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJqTdHo3qp .section-border-item {
  background-color: #fcdb42;
}
.cid-tJqTdHo3qp .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-tJqTdHo3qp .card-wrap {
  width: 100%;
}
.cid-tJqTdHo3qp .card-box {
  width: 100%;
}
.cid-tJqTdHo3qp .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tJqTdHo3qp .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-tJqTdHo3qp .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uJ7ZjlMbGf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJ7ZjlMbGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ7ZjlMbGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ7ZjlMbGf .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJ7ZjlMbGf .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJ7ZjlMbGf .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ7ZjlMbGf .mbr-section-btn .btn::after,
.cid-uJ7ZjlMbGf .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJ7ZjlMbGf .mbr-section-btn .btn:hover,
.cid-uJ7ZjlMbGf .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJ7ZjlMbGf .mbr-section-btn .btn:hover::after,
.cid-uJ7ZjlMbGf .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJ7ZjlMbGf .items-wrapper {
  margin: 0 -20px;
}
.cid-uJ7ZjlMbGf .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJ7ZjlMbGf .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJ7ZjlMbGf .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJ7ZjlMbGf .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJ7ZjlMbGf .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJ7ZjlMbGf .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJ7ZjlMbGf .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJ7ZjlMbGf .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJ7ZjlMbGf .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJ7ZjlMbGf .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJ7ZjlMbGf .mbr-section-title {
  color: #ffffff;
}
.cid-uJ7ZjlMbGf .mbr-tag {
  color: #e6c63b;
}
.cid-uJ7ZjlMbGf .mbr-text {
  color: #ffffff;
}
.cid-uJ7ZjlMbGf .item-name {
  color: #ffffff;
}
.cid-uJ7ZjlMbGf .item-role {
  color: #c7c7c7;
}
.cid-uJ88kLGama {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/usaa.jpg");
}
.cid-uJ88kLGama .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ88kLGama .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ88kLGama .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJ88kLGama .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJ88kLGama .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ88kLGama .mbr-section-btn .btn::after,
.cid-uJ88kLGama .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJ88kLGama .mbr-section-btn .btn:hover,
.cid-uJ88kLGama .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJ88kLGama .mbr-section-btn .btn:hover::after,
.cid-uJ88kLGama .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJ88kLGama .items-wrapper {
  margin: 0 -20px;
}
.cid-uJ88kLGama .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJ88kLGama .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJ88kLGama .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJ88kLGama .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJ88kLGama .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJ88kLGama .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJ88kLGama .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJ88kLGama .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJ88kLGama .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #000000;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #000000;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #000000;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #e6c63b;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJ88kLGama .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJ88kLGama .mbr-section-title {
  color: #ffffff;
}
.cid-uJ88kLGama .mbr-tag {
  color: #8d5904;
}
.cid-uJ88kLGama .mbr-text {
  color: #ffffff;
}
.cid-uJ88kLGama .item-name {
  color: #ffffff;
}
.cid-uJ88kLGama .item-role {
  color: #c7c7c7;
}
.cid-uJ88kLGama .mbr-section-title,
.cid-uJ88kLGama .main-btn {
  color: #090069;
}
.cid-uJoFSPtgAv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJoFSPtgAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJoFSPtgAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJoFSPtgAv .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJoFSPtgAv .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJoFSPtgAv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJoFSPtgAv .mbr-section-btn .btn::after,
.cid-uJoFSPtgAv .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJoFSPtgAv .mbr-section-btn .btn:hover,
.cid-uJoFSPtgAv .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJoFSPtgAv .mbr-section-btn .btn:hover::after,
.cid-uJoFSPtgAv .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJoFSPtgAv .items-wrapper {
  margin: 0 -20px;
}
.cid-uJoFSPtgAv .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJoFSPtgAv .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJoFSPtgAv .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJoFSPtgAv .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJoFSPtgAv .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJoFSPtgAv .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJoFSPtgAv .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJoFSPtgAv .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJoFSPtgAv .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJoFSPtgAv .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJoFSPtgAv .mbr-section-title {
  color: #ffffff;
}
.cid-uJoFSPtgAv .mbr-tag {
  color: #e6c63b;
}
.cid-uJoFSPtgAv .mbr-text {
  color: #ffffff;
}
.cid-uJoFSPtgAv .item-name {
  color: #ffffff;
}
.cid-uJoFSPtgAv .item-role {
  color: #ffe161;
}
.cid-uJoFSPtgAv .item-name,
.cid-uJoFSPtgAv .item-btn {
  color: #ffe161;
}
.cid-uJoKJ7yqQD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJoKJ7yqQD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJoKJ7yqQD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJoKJ7yqQD .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJoKJ7yqQD .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJoKJ7yqQD .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJoKJ7yqQD .mbr-section-btn .btn::after,
.cid-uJoKJ7yqQD .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJoKJ7yqQD .mbr-section-btn .btn:hover,
.cid-uJoKJ7yqQD .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJoKJ7yqQD .mbr-section-btn .btn:hover::after,
.cid-uJoKJ7yqQD .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJoKJ7yqQD .items-wrapper {
  margin: 0 -20px;
}
.cid-uJoKJ7yqQD .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJoKJ7yqQD .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJoKJ7yqQD .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJoKJ7yqQD .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJoKJ7yqQD .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJoKJ7yqQD .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJoKJ7yqQD .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJoKJ7yqQD .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJoKJ7yqQD .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJoKJ7yqQD .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJoKJ7yqQD .mbr-section-title {
  color: #ffffff;
}
.cid-uJoKJ7yqQD .mbr-tag {
  color: #e6c63b;
}
.cid-uJoKJ7yqQD .mbr-text {
  color: #ffffff;
}
.cid-uJoKJ7yqQD .item-name {
  color: #ffffff;
}
.cid-uJoKJ7yqQD .item-role {
  color: #ffe161;
}
.cid-uJoKJ7yqQD .item-name,
.cid-uJoKJ7yqQD .item-btn {
  text-align: center;
  color: #ffe161;
}
.cid-uJzzkf5JVv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJzzkf5JVv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJzzkf5JVv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJzzkf5JVv .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJzzkf5JVv .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJzzkf5JVv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJzzkf5JVv .mbr-section-btn .btn::after,
.cid-uJzzkf5JVv .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJzzkf5JVv .mbr-section-btn .btn:hover,
.cid-uJzzkf5JVv .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJzzkf5JVv .mbr-section-btn .btn:hover::after,
.cid-uJzzkf5JVv .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJzzkf5JVv .items-wrapper {
  margin: 0 -20px;
}
.cid-uJzzkf5JVv .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJzzkf5JVv .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJzzkf5JVv .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJzzkf5JVv .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJzzkf5JVv .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJzzkf5JVv .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJzzkf5JVv .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJzzkf5JVv .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJzzkf5JVv .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJzzkf5JVv .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJzzkf5JVv .mbr-section-title {
  color: #ffffff;
}
.cid-uJzzkf5JVv .mbr-tag {
  color: #e6c63b;
}
.cid-uJzzkf5JVv .mbr-text {
  color: #ffffff;
}
.cid-uJzzkf5JVv .item-name {
  color: #ffffff;
}
.cid-uJzzkf5JVv .item-role {
  color: #ffe161;
}
.cid-uJzzkf5JVv .item-name,
.cid-uJzzkf5JVv .item-btn {
  text-align: center;
  color: #ffe161;
}
.cid-uJvemQ4MTi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0437;
}
.cid-uJvemQ4MTi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJvemQ4MTi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJvemQ4MTi .title-wrapper {
  margin-bottom: 40px;
}
.cid-uJvemQ4MTi .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJvemQ4MTi .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJvemQ4MTi .mbr-section-btn .btn::after,
.cid-uJvemQ4MTi .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJvemQ4MTi .mbr-section-btn .btn:hover,
.cid-uJvemQ4MTi .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJvemQ4MTi .mbr-section-btn .btn:hover::after,
.cid-uJvemQ4MTi .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJvemQ4MTi .items-wrapper {
  margin: 0 -20px;
}
.cid-uJvemQ4MTi .items-wrapper .item {
  padding: 0 20px;
  margin-bottom: 40px;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .cid-uJvemQ4MTi .items-wrapper .item {
    margin-bottom: 20px;
    transform: none;
  }
  .cid-uJvemQ4MTi .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJvemQ4MTi .items-wrapper .item:nth-child(2n) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .cid-uJvemQ4MTi .items-wrapper .item:nth-child(2n) {
    transform: none;
  }
}
.cid-uJvemQ4MTi .items-wrapper .item:hover .item-wrapper .item-img .image-wrap img,
.cid-uJvemQ4MTi .items-wrapper .item:focus .item-wrapper .item-img .image-wrap img {
  transform: scale(1.06) translateX(0);
}
.cid-uJvemQ4MTi .items-wrapper .item:hover .item-wrapper .item-img .image-wrap::before,
.cid-uJvemQ4MTi .items-wrapper .item:focus .item-wrapper .item-img .image-wrap::before {
  opacity: 1;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 !important;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  margin-bottom: -40px;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .image-wrap {
  overflow: hidden;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .image-wrap img {
  height: 315px;
  object-fit: cover;
  transition: all .3s ease;
  border-radius: 0 !important;
  transform: scale(1.06) translateX(-8px);
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(transparent 40%, #e24c4a);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card {
  position: absolute;
  left: 50px;
  bottom: -1rem;
  background-color: #0e0437;
  border-radius: 3rem 3rem 0 0 !important;
  z-index: 2;
  padding: 10px;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card:hover .mbr-iconfont,
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card:focus .mbr-iconfont {
  color: #e24c4a;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 {
  position: absolute;
  bottom: 15px;
  right: -27px;
  transform: rotate(-90deg);
  width: 28px;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card .svg1 path {
  fill: #0e0437;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 28px;
  bottom: 15px;
  left: -27px;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-img .icon-card .svg2 path {
  fill: #0e0437;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-content {
  padding: 80px 40px 40px 40px;
  border: 2px solid #ffffff;
  background-color: #0e0437;
}
@media (max-width: 992px) {
  .cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-content {
    padding: 80px 20px 20px 20px;
  }
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-content .item-name {
  margin-bottom: 16px;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-uJvemQ4MTi .items-wrapper .item .item-wrapper .item-content .item-btn .btn {
  padding: 17px 20px;
  margin-bottom: 0;
}
.cid-uJvemQ4MTi .mbr-section-title {
  color: #ffffff;
}
.cid-uJvemQ4MTi .mbr-tag {
  color: #e6c63b;
}
.cid-uJvemQ4MTi .mbr-text {
  color: #ffffff;
}
.cid-uJvemQ4MTi .item-name {
  color: #ffffff;
}
.cid-uJvemQ4MTi .item-role {
  color: #c7c7c7;
}
.cid-tJqA73pX6m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tJqA73pX6m .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJqA73pX6m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJqA73pX6m .section-border-item {
  background-color: #fcdb42;
}
.cid-tJqA73pX6m .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-tJqA73pX6m .card-wrap {
  width: 100%;
}
.cid-tJqA73pX6m .card-box {
  width: 100%;
}
.cid-tJqA73pX6m .card-title {
  color: #ffe161;
  text-align: center;
}
.cid-tJqA73pX6m .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-tJqA73pX6m .mbr-text {
    margin-top: 1rem;
  }
}
.cid-tJqzTMFjxv {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tJqzTMFjxv .mbr-section-title {
  color: #06182d;
}
.cid-tJqzTMFjxv .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tJqzTMFjxv .mbr-section-subtitle {
  color: #06182d;
}
.cid-tJqzTMFjxv .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tJqzTMFjxv .card:nth-child(even) {
  margin-top: 70px;
}
.cid-tJqzTMFjxv .card:nth-child(odd)::after {
  content: "";
  background-size: contain;
  background-image: url("../../../assets/images/admin-area1-450x304.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 185px;
  height: 50px;
  z-index: 4;
  top: 1px;
  right: -148px;
}
.cid-tJqzTMFjxv .card:nth-child(2)::after {
  content: "";
  background-size: contain;
  background-image: url("../../../assets/images/admin-area1-450x304.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 175px;
  height: 80px;
  z-index: 4;
  bottom: -12px;
  right: -100px;
  transform: scale(1, -1);
}
.cid-tJqzTMFjxv .card .card-wrapper {
  height: 100%;
}
.cid-tJqzTMFjxv .card .card-wrapper .card-img {
  position: relative;
}
.cid-tJqzTMFjxv .card .card-wrapper .card-img:hover img {
  transform: rotateY(180deg);
}
.cid-tJqzTMFjxv .card .card-wrapper .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
  margin-left: auto;
  margin-right: auto;
}
.cid-tJqzTMFjxv .card .card-wrapper .card-box {
  padding-top: 1rem;
}
.cid-tJqzTMFjxv .card .card-wrapper .card-box .card-title {
  margin-bottom: 0;
  color: #06182d;
  text-align: center;
  font-weight: 700;
}
.cid-tJqzTMFjxv .card .card-wrapper .card-box .mbr-text {
  text-align: center;
  color: #030f1c;
}
@media (max-width: 991px) {
  .cid-tJqzTMFjxv .card:after {
    background-image: none !important;
    display: none !important;
  }
  .cid-tJqzTMFjxv .card:nth-child(even) {
    margin-top: 0;
  }
}
.cid-tJqzTMFjxv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJqzTMFjxv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJqzTMFjxv .mbr-section-title,
.cid-tJqzTMFjxv .col {
  color: #090069;
}
.cid-tsO9v2ybfa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1b0f4d;
  overflow: hidden;
}
