body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Khand', sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  line-height: 1.867;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 11px 35px;
  border-radius: 3px;
}
.btn-sm {
  padding: 15px 35px;
  border-radius: 3px;
}
.btn-md {
  padding: 18px 50px;
  border-radius: 3px;
}
.btn-lg {
  padding: 19px 50px;
  border-radius: 3px;
}
.bg-primary {
  background-color: #1732a4 !important;
}
.bg-success {
  background-color: #3caf57 !important;
}
.bg-info {
  background-color: #58d0ff !important;
}
.bg-warning {
  background-color: #ffb51c !important;
}
.bg-danger {
  background-color: #08bbef !important;
}
.btn-primary {
  box-shadow: 0 15px 30px 0 rgba(23, 50, 164, 0.15);
}
.btn-primary,
.btn-primary:active {
  background-color: #1732a4 !important;
  border-color: #1732a4 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #112477 !important;
  border-color: #112477 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #112477 !important;
  border-color: #112477 !important;
}
.btn-primary:before {
  background: #1732a4;
}
.btn-primary:hover {
  color: #ffffff !important;
  border-color: #1732a4 !important;
  box-shadow: 0 15px 30px 0 rgba(23, 50, 164, 0.15);
}
.btn-secondary {
  box-shadow: 0 15px 30px 0 rgba(65, 84, 241, 0.15);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4154f1 !important;
  border-color: #4154f1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #1129ee !important;
  border-color: #1129ee !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1129ee !important;
  border-color: #1129ee !important;
}
.btn-secondary:before {
  background: #4154f1;
}
.btn-secondary:hover {
  color: #ffffff !important;
  border-color: #4154f1 !important;
  box-shadow: 0 15px 30px 0 rgba(65, 84, 241, 0.15);
}
.btn-info {
  box-shadow: 0 15px 30px 0 rgba(88, 208, 255, 0.15);
}
.btn-info,
.btn-info:active {
  background-color: #58d0ff !important;
  border-color: #58d0ff !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #25c2ff !important;
  border-color: #25c2ff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #25c2ff !important;
  border-color: #25c2ff !important;
}
.btn-info:before {
  background: #58d0ff;
}
.btn-info:hover {
  color: #000000 !important;
  border-color: #58d0ff !important;
  box-shadow: 0 15px 30px 0 rgba(88, 208, 255, 0.15);
}
.btn-success {
  box-shadow: 0 15px 30px 0 rgba(60, 175, 87, 0.15);
}
.btn-success,
.btn-success:active {
  background-color: #3caf57 !important;
  border-color: #3caf57 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2f8944 !important;
  border-color: #2f8944 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2f8944 !important;
  border-color: #2f8944 !important;
}
.btn-success:before {
  background: #3caf57;
}
.btn-success:hover {
  color: #ffffff !important;
  border-color: #3caf57 !important;
  box-shadow: 0 15px 30px 0 rgba(60, 175, 87, 0.15);
}
.btn-warning {
  box-shadow: 0 15px 30px 0 rgba(255, 181, 28, 0.15);
}
.btn-warning,
.btn-warning:active {
  background-color: #ffb51c !important;
  border-color: #ffb51c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #e89c00 !important;
  border-color: #e89c00 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #e89c00 !important;
  border-color: #e89c00 !important;
}
.btn-warning:before {
  background: #ffb51c;
}
.btn-warning:hover {
  color: #000000 !important;
  border-color: #ffb51c !important;
  box-shadow: 0 15px 30px 0 rgba(255, 181, 28, 0.15);
}
.btn-danger {
  box-shadow: 0 15px 30px 0 rgba(8, 187, 239, 0.15);
}
.btn-danger,
.btn-danger:active {
  background-color: #08bbef !important;
  border-color: #08bbef !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0694be !important;
  border-color: #0694be !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0694be !important;
  border-color: #0694be !important;
}
.btn-danger:before {
  background: #08bbef;
}
.btn-danger:hover {
  color: #ffffff !important;
  border-color: #08bbef !important;
  box-shadow: 0 15px 30px 0 rgba(8, 187, 239, 0.15);
}
.btn-white {
  color: #1732a4 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(23, 50, 164, 0.15);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:before {
  background: #1732a4;
}
.btn-white:hover {
  color: #ffffff !important;
  border-color: #1732a4 !important;
  background-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  background: #4d4d4d;
}
.btn-black:hover {
  border-color: #4d4d4d !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #1732a4;
  color: #1732a4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #1732a4 !important;
  border-color: #1732a4 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1732a4 !important;
  border-color: #1732a4 !important;
}
.btn-primary-outline:before {
  background: #1732a4;
}
.btn-primary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(23, 50, 164, 0.15);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #4154f1;
  color: #4154f1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #4154f1 !important;
  border-color: #4154f1 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4154f1 !important;
  border-color: #4154f1 !important;
}
.btn-secondary-outline:before {
  background: #4154f1;
}
.btn-secondary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(65, 84, 241, 0.15);
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #58d0ff;
  color: #58d0ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #58d0ff !important;
  border-color: #58d0ff !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #58d0ff !important;
  border-color: #58d0ff !important;
}
.btn-info-outline:before {
  background: #58d0ff;
}
.btn-info-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(88, 208, 255, 0.15);
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #3caf57;
  color: #3caf57;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #3caf57 !important;
  border-color: #3caf57 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #3caf57 !important;
  border-color: #3caf57 !important;
}
.btn-success-outline:before {
  background: #3caf57;
}
.btn-success-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(60, 175, 87, 0.15);
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffb51c;
  color: #ffb51c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #ffb51c !important;
  border-color: #ffb51c !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb51c !important;
  border-color: #ffb51c !important;
}
.btn-warning-outline:before {
  background: #ffb51c;
}
.btn-warning-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 181, 28, 0.15);
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #08bbef;
  color: #08bbef;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #08bbef !important;
  border-color: #08bbef !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #08bbef !important;
  border-color: #08bbef !important;
}
.btn-danger-outline:before {
  background: #08bbef;
}
.btn-danger-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(8, 187, 239, 0.15);
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black-outline:before {
  background: #4d4d4d;
}
.btn-white-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #1732a4 !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-white-outline:before {
  background: #ffffff;
}
.text-primary {
  color: #1732a4 !important;
}
.text-secondary {
  color: #4154f1 !important;
}
.text-success {
  color: #3caf57 !important;
}
.text-info {
  color: #58d0ff !important;
}
.text-warning {
  color: #ffb51c !important;
}
.text-danger {
  color: #08bbef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0a174b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0e21be !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #226331 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00adf1 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b57a00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #056e8c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #1732a4;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #40A50B;
}
.alert-info {
  background-color: #58d0ff;
}
.alert-warning {
  background-color: #ffb51c;
}
.alert-danger {
  background-color: #08bbef;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 45px;
}
.mbr-gallery-filter li a {
  border-radius: 45px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1732a4;
  border-color: #1732a4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 45px !important;
}
a,
a:hover {
  color: #1732a4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5470e7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #91d9a2;
}
.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: #fff8e8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c6f1fd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #1732a4;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 45px !important;
}
.mbr-form .mbr-section-btn button[type="submit"] {
  border-radius: 45px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1732a4;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1732a4;
}
.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: #1732a4;
  border-bottom-color: #1732a4;
}
.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: #1732a4 !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: #4154f1 !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='%231732a4' %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.btn-white {
  color: #1732a4 !important;
}
.mbr-arrow-up {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
}
.mbr-arrow-up a {
  background: rgba(23, 50, 164, 0.6);
}
.mbr-arrow-up a:hover {
  background: #1732a4;
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-skcZSONz3f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6fbff;
}
.cid-skcZSONz3f .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-skcZSONz3f .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #1732a4;
}
.cid-skcZSONz3f .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #4154f1;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-skcZSONz3f .mbr-text {
  line-height: 1.54;
  margin-bottom: 50px;
}
.cid-skcZSONz3f .mbr-section-btn {
  display: inline-block;
}
.cid-skcZSONz3f .popup_video {
  display: inline-flex;
  align-items: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-left: 30px;
}
.cid-skcZSONz3f .popup_video:hover {
  cursor: pointer;
}
.cid-skcZSONz3f .popup_video:hover .popup__text {
  color: #ffffff;
}
.cid-skcZSONz3f .popup_video:hover .popup__text:after {
  transform: scaleX(1);
}
.cid-skcZSONz3f .popup_video:hover .popup__text:before {
  transform: scaleX(0);
}
.cid-skcZSONz3f .popup_video:hover .mbr-media {
  background-color: #ffffff;
}
.cid-skcZSONz3f .popup_video:hover .mbr-media span {
  color: #ff5858;
}
.cid-skcZSONz3f .mbr-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 25px;
  background-color: #ff5858;
  transition: all 0.4s ease-in-out;
  animation: pulse 2s linear infinite;
}
.cid-skcZSONz3f .mbr-media span {
  font-size: 17px;
  position: relative;
  display: inline-block;
  margin-left: 4px;
  color: #ffffff;
}
.cid-skcZSONz3f .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-skcZSONz3f .popup__text {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
.cid-skcZSONz3f .popup__text:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-skcZSONz3f .popup__text:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ffffff;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-skcZSONz3f .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-skcZSONz3f .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-skcZSONz3f .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-skcZSONz3f a.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 10px;
  transition: all 0.2s;
}
.cid-skcZSONz3f a.close:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-skcZSONz3f .head_block {
    order: 1;
    text-align: center;
  }
  .cid-skcZSONz3f .image_img {
    margin-bottom: 40px;
  }
  .cid-skcZSONz3f .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-skcZSONz3f .mbr-text {
    margin-bottom: 20px;
  }
  .cid-skcZSONz3f .popup_video {
    margin-left: 0;
    margin-top: 0px;
  }
  .cid-skcZSONz3f .btn_group {
    flex-direction: column;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
  }
  100% {
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
  }
}
.cid-skcZSONz3f .mbr-text,
.cid-skcZSONz3f .buttons_wrap {
  color: #000000;
}
.cid-skd1Ry0CW0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
  position: relative;
}
.cid-skd1Ry0CW0 .mbr-overlay {
  background: #5eeebb;
}
.cid-skd1Ry0CW0 .wave img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.5rem;
}
.cid-skd1Ry0CW0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-skd1Ry0CW0 .card-title {
  margin-bottom: 26px;
}
.cid-skd1Ry0CW0 .mbr-text {
  margin-bottom: 30px;
}
.cid-skd1Ry0CW0 .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-skd1Ry0CW0 .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-skd1Ry0CW0 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-skd1Ry0CW0 .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-skd1Ry0CW0 .text-wrapper {
    text-align: center;
  }
  .cid-skd1Ry0CW0 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-skd1Ry0CW0 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-skd1Ry0CW0 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-skd1Ry0CW0 .mbr-text,
.cid-skd1Ry0CW0 .mbr-section-btn {
  color: #e0e5ff;
}
.cid-ttltbMn8zg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttltbMn8zg .mbr-section-title {
  margin-bottom: 20px;
  color: #4154f1;
}
.cid-ttltbMn8zg .mbr-text {
  margin-bottom: 30px;
  color: #191c2f;
}
.cid-ttltbMn8zg .tab_text {
  margin-bottom: 0;
}
.cid-ttltbMn8zg .nav-tabs .nav-item.open .nav-link:focus,
.cid-ttltbMn8zg .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-ttltbMn8zg .nav-tabs {
  margin-bottom: 40px;
  flex-wrap: wrap;
  border: none;
  position: relative;
}
.cid-ttltbMn8zg .nav-tabs:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #c2cad3;
  height: 1px;
}
@media (max-width: 767px) {
  .cid-ttltbMn8zg .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-ttltbMn8zg .nav-tabs .nav-link {
  border: none;
  border-radius: 0 !important;
}
.cid-ttltbMn8zg .nav-tabs .nav-link:not(.active) {
  color: #6a7c92;
}
.cid-ttltbMn8zg .nav-link {
  padding: 15px 30px;
  background-color: transparent;
  position: relative;
}
.cid-ttltbMn8zg .nav-link:before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -1px;
  background-color: #4154f1;
  opacity: 0;
  height: 3px;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-ttltbMn8zg .nav-link:hover {
  color: #4154f1 !important;
}
.cid-ttltbMn8zg .nav-link:hover:before {
  left: 0px;
  right: 0px;
  opacity: 1;
}
.cid-ttltbMn8zg .nav-link.active:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background-color: #4154f1;
  height: 3px;
  opacity: 1;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-ttltbMn8zg .mbr-section-btn {
  margin-top: 30px;
}
.cid-ttltbMn8zg .nav-tabs .nav-link.active {
  color: #4154f1;
}
@media (max-width: 991px) {
  .cid-ttltbMn8zg .title_block,
  .cid-ttltbMn8zg .tab-content {
    text-align: center;
  }
  .cid-ttltbMn8zg .image {
    margin-bottom: 40px;
  }
  .cid-ttltbMn8zg .nav-link {
    padding: 12px 25px;
  }
  .cid-ttltbMn8zg .mbr-section-btn {
    text-align: center;
  }
}
.cid-ttkHB4Svmq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f4f4f4;
}
.cid-ttkHB4Svmq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttkHB4Svmq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttkHB4Svmq .plan-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
.cid-ttkHB4Svmq .btn {
  width: 100%;
  margin: 0;
  border-radius: 10px;
}
.cid-ttkHB4Svmq .mbr-section-btn {
  margin: 0;
  padding-top: 2rem;
}
.cid-ttkHB4Svmq img {
  height: 150px;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-ttkHB4Svmq .plan-title {
  background: black;
  border-radius: 16px;
  padding: 6px 16px;
  width: fit-content;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ttkHB4Svmq .plan-title {
    margin: auto;
  }
}
.cid-ttkHB4Svmq .price a {
  background: #4154f1;
  border-radius: 16px;
  padding: 3px 10px;
}
.cid-ttkHB4Svmq .li-item {
  align-items: center;
  display: flex;
}
.cid-ttkHB4Svmq .item {
  color: #e43f3f;
}
.cid-ttkHB4Svmq svg {
  margin-right: 0.5rem;
  width: 25px;
  height: 15px;
}
.cid-ttkHB4Svmq path {
  fill: currentColor;
}
.cid-ttkHB4Svmq .item,
.cid-ttkHB4Svmq path {
  color: #000000;
  text-align: left;
}
.cid-ttkHB4Svmq .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-ttkHB4Svmq .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttkHB4Svmq .price {
  color: #191c2f;
}
.cid-ttkHB4Svmq .plan {
  word-break: break-word;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  padding-top: 0;
}
@media (max-width: 767px) {
  .cid-ttkHB4Svmq .plan {
    padding: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-ttkHB4Svmq .plan {
    margin-bottom: 2rem;
  }
}
.cid-ttkHB4Svmq .main-title {
  text-align: center;
  color: #000000;
}
.cid-skdxCTm8q9 {
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-skdxCTm8q9 .carousel {
  padding: 0;
}
.cid-skdxCTm8q9 .figure_outline {
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-skdxCTm8q9 .figure_outline .img {
  position: absolute;
}
.cid-skdxCTm8q9 .figure_outline .img img {
  width: 100%;
  display: block;
}
.cid-skdxCTm8q9 .figure_outline .img .img_2 {
  position: absolute;
  top: -45px;
  left: 0;
  width: 104%;
}
.cid-skdxCTm8q9 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff5858;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-skdxCTm8q9 .mbr-section-title {
  margin-bottom: 36px;
  color: #191c2f;
}
.cid-skdxCTm8q9 .icon_block {
  display: inline-block;
  position: relative;
}
.cid-skdxCTm8q9 .icon_block .mbr-iconfont {
  font-size: 150px;
  position: absolute;
  top: -10px;
  left: 12px;
  opacity: .2;
  color: #ffffff;
}
.cid-skdxCTm8q9 .carousel-controls {
  margin-top: 30px;
  width: 100%;
  position: relative;
  height: 50px;
}
.cid-skdxCTm8q9 .carousel-controls a span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  color: #191c2f;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #191c2f;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skdxCTm8q9 .carousel-controls a span:hover {
  background-color: #58d0ff;
  color: #000000;
}
.cid-skdxCTm8q9 .carousel-control-prev {
  position: static;
  margin-right: 10px;
  width: 50px;
}
.cid-skdxCTm8q9 .carousel-control-next {
  position: static;
  width: 50px;
}
.cid-skdxCTm8q9 .show_md {
  display: none;
}
.cid-skdxCTm8q9 .user_text {
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  min-height: 90px;
}
.cid-skdxCTm8q9 .user_image {
  width: 80px;
  height: 80px;
  margin: 25px auto 35px auto;
  position: relative;
  z-index: 1;
  padding: 6px;
}
.cid-skdxCTm8q9 .user_image img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  min-width: 100%;
  min-height: 100%;
}
.cid-skdxCTm8q9 .user_image .shape_1 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  left: 10px;
  top: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-skdxCTm8q9 .user_image .shape_2 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  right: 0;
  top: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-skdxCTm8q9 .user_image .shape_3 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0px;
  left: 7px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-skdxCTm8q9 .user_name {
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: 600;
  color: #ffffff;
}
.cid-skdxCTm8q9 .user_prof {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-skdxCTm8q9 .carousel-item {
    justify-content: center;
  }
  .cid-skdxCTm8q9 .figure_outline .img img {
    width: 87%;
  }
  .cid-skdxCTm8q9 .figure_outline .img .img_2 {
    position: absolute;
    top: -45px;
    left: -13px;
    width: 88%;
  }
  .cid-skdxCTm8q9 .user {
    max-width: 400px;
  }
  .cid-skdxCTm8q9 .icon_block .mbr-iconfont {
    font-size: 120px;
    top: 10px;
    left: 0;
  }
  .cid-skdxCTm8q9 .title_block {
    text-align: center;
    margin-top: 40px;
  }
  .cid-skdxCTm8q9 .mbr-section-title {
    margin-bottom: 26px;
  }
  .cid-skdxCTm8q9 .hide_md {
    display: none;
  }
  .cid-skdxCTm8q9 .show_md {
    display: flex;
    justify-content: center;
    margin-top: 105px;
  }
}
@media (max-width: 767px) {
  .cid-skdxCTm8q9 .figure_outline,
  .cid-skdxCTm8q9 .icon_block {
    display: none;
  }
  .cid-skdxCTm8q9 .user_text {
    color: inherit;
    margin-bottom: 20px;
  }
  .cid-skdxCTm8q9 .user_prof {
    color: inherit;
  }
  .cid-skdxCTm8q9 .user_name {
    color: #4154f1;
    margin-bottom: 5px;
  }
  .cid-skdxCTm8q9 .show_md {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }
}
.cid-tg9rsr8uNt .google-map {
  height: 25rem;
  position: relative;
}
.cid-tg9rsr8uNt .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tg9rsr8uNt .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tg9rsr8uNt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tg9rsr8uNt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tgV9g4Srt4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tgV9g4Srt4 nav.navbar {
  position: fixed;
}
.cid-tgV9g4Srt4 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-tgV9g4Srt4 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-tgV9g4Srt4 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-tgV9g4Srt4 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-tgV9g4Srt4 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-tgV9g4Srt4 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-tgV9g4Srt4 .dropdown-item:hover,
.cid-tgV9g4Srt4 .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-tgV9g4Srt4 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-tgV9g4Srt4 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-tgV9g4Srt4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-tgV9g4Srt4 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-tgV9g4Srt4 .nav-link:hover {
  color: #1732a4 !important;
}
.cid-tgV9g4Srt4 .container {
  display: flex;
  margin: auto;
}
.cid-tgV9g4Srt4 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-tgV9g4Srt4 .dropdown-menu,
.cid-tgV9g4Srt4 .navbar.opened {
  background: #000000 !important;
}
.cid-tgV9g4Srt4 .nav-item:focus,
.cid-tgV9g4Srt4 .nav-link:focus {
  outline: none;
}
.cid-tgV9g4Srt4 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-tgV9g4Srt4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgV9g4Srt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgV9g4Srt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgV9g4Srt4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgV9g4Srt4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgV9g4Srt4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-tgV9g4Srt4 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-tgV9g4Srt4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgV9g4Srt4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgV9g4Srt4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tgV9g4Srt4 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-tgV9g4Srt4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tgV9g4Srt4 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tgV9g4Srt4 .navbar.collapsed {
  justify-content: center;
}
.cid-tgV9g4Srt4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgV9g4Srt4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tgV9g4Srt4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tgV9g4Srt4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgV9g4Srt4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgV9g4Srt4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-tgV9g4Srt4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgV9g4Srt4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tgV9g4Srt4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgV9g4Srt4 .navbar .dropdown-menu {
    display: none;
  }
  .cid-tgV9g4Srt4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgV9g4Srt4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgV9g4Srt4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-tgV9g4Srt4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgV9g4Srt4 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-tgV9g4Srt4 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-tgV9g4Srt4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgV9g4Srt4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgV9g4Srt4 .navbar .navbar-buttons,
  .cid-tgV9g4Srt4 .navbar .icons-menu {
    display: none;
  }
  .cid-tgV9g4Srt4 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-tgV9g4Srt4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tgV9g4Srt4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgV9g4Srt4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgV9g4Srt4 .dropdown-item.active,
.cid-tgV9g4Srt4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tgV9g4Srt4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgV9g4Srt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tgV9g4Srt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tgV9g4Srt4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tgV9g4Srt4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgV9g4Srt4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tgV9g4Srt4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tgV9g4Srt4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgV9g4Srt4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgV9g4Srt4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgV9g4Srt4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgV9g4Srt4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgV9g4Srt4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgV9g4Srt4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgV9g4Srt4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgV9g4Srt4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tgV9g4Srt4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tgV9g4Srt4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tgV9g4Srt4 .navbar {
    height: 70px;
  }
  .cid-tgV9g4Srt4 .navbar.opened {
    height: auto;
  }
  .cid-tgV9g4Srt4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgV9g6iWld {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tgV9g6iWld .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tgV9g6iWld .text-white {
  color: #a99fc5 !important;
}
.cid-tgV9g6iWld .text-white:hover {
  color: #ffffff !important;
}
.cid-tgV9g6iWld .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tgV9g6iWld .foot-menu li {
  padding: 10px;
}
.cid-tgV9g6iWld .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tgV9g6iWld .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tgV9g6iWld .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tgV9g6iWld .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tgV9g6iWld .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tgV9g6iWld .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tgV9g6iWld .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tgV9g6iWld .social-list a:hover {
  opacity: 1;
}
.cid-tgV9g6iWld .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tgV9g6iWld .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tgV9g6iWld .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tj3xvIVYlB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tj3xvIVYlB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tj3xvIVYlB .card-title {
  margin-bottom: 26px;
  color: #4154f1;
}
.cid-tj3xvIVYlB .mbr-text {
  margin-bottom: 30px;
}
.cid-tj3xvIVYlB .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-tj3xvIVYlB .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-tj3xvIVYlB .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-tj3xvIVYlB .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-tj3xvIVYlB .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-tj3xvIVYlB .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-tj3xvIVYlB .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tj3xvIVYlB .text-wrapper {
    text-align: center;
  }
  .cid-tj3xvIVYlB .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tj3xvIVYlB .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tj3xvIVYlB .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tj5M90Pl8G {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tj5M90Pl8G .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #4154f1;
}
.cid-tj5M90Pl8G .mbr-section-title {
  margin-bottom: 0;
  color: #4154f1;
}
.cid-tj5M90Pl8G .card_wrapper {
  margin-top: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 3px 4px 0 rgba(38, 59, 94, 0.1);
}
.cid-tj5M90Pl8G .card_wrapper:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px 0 rgba(38, 59, 94, 0.1);
}
.cid-tj5M90Pl8G .card_wrapper:hover .card_title a {
  color: #1732a4 !important;
}
.cid-tj5M90Pl8G .card_wrapper:hover .card_link .mbr-iconfont {
  color: #1732a4 !important;
}
.cid-tj5M90Pl8G .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-tj5M90Pl8G .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-tj5M90Pl8G .card_wrapper:hover .shape_2 {
  transform: rotate(360deg);
  top: -6px;
  right: -2px;
}
.cid-tj5M90Pl8G .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-tj5M90Pl8G .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-tj5M90Pl8G .icon_block {
  margin-bottom: 40px;
}
.cid-tj5M90Pl8G .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  background-image: linear-gradient(40deg, #039ecb 0%, rgba(56, 208, 252, 0.8) 100%);
}
.cid-tj5M90Pl8G .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-tj5M90Pl8G .card_title {
  margin-bottom: 20px;
  color: #4154f1;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tj5M90Pl8G .card_text {
  margin-bottom: 50px;
}
.cid-tj5M90Pl8G .card_link {
  display: block;
}
.cid-tj5M90Pl8G .card_link a {
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
.cid-tj5M90Pl8G .card_link a:hover {
  transform: translateX(6px);
}
.cid-tj5M90Pl8G .card_link .mbr-iconfont {
  line-height: 1;
  font-size: 48px;
  color: #afb8ce;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tj5M90Pl8G .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-tj5M90Pl8G .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #3caf57;
  border-radius: 50%;
}
.cid-tj5M90Pl8G .shape_2 {
  top: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #58d0ff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-tj5M90Pl8G .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #ffb51c;
}
.cid-tj5M90Pl8G .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #08bbef;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .cid-tj5M90Pl8G .card_wrapper {
    padding: 40px 30px;
    max-width: 370px;
    margin: 30px auto 0;
  }
  .cid-tj5M90Pl8G .card_title {
    margin-bottom: 15px;
  }
  .cid-tj5M90Pl8G .card_text {
    margin-bottom: 20px;
  }
  .cid-tj5M90Pl8G .card_link .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tn7sL64FKx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tn7sL64FKx nav.navbar {
  position: fixed;
}
.cid-tn7sL64FKx .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-tn7sL64FKx .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-tn7sL64FKx .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-tn7sL64FKx .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-tn7sL64FKx .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-tn7sL64FKx .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-tn7sL64FKx .dropdown-item:hover,
.cid-tn7sL64FKx .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-tn7sL64FKx .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-tn7sL64FKx .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-tn7sL64FKx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-tn7sL64FKx .nav-link {
  position: relative;
  line-height: 1;
}
.cid-tn7sL64FKx .nav-link:hover {
  color: #1732a4 !important;
}
.cid-tn7sL64FKx .container {
  display: flex;
  margin: auto;
}
.cid-tn7sL64FKx .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-tn7sL64FKx .dropdown-menu,
.cid-tn7sL64FKx .navbar.opened {
  background: #000000 !important;
}
.cid-tn7sL64FKx .nav-item:focus,
.cid-tn7sL64FKx .nav-link:focus {
  outline: none;
}
.cid-tn7sL64FKx .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-tn7sL64FKx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tn7sL64FKx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tn7sL64FKx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tn7sL64FKx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tn7sL64FKx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-tn7sL64FKx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-tn7sL64FKx .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-tn7sL64FKx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tn7sL64FKx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tn7sL64FKx .navbar.opened {
  transition: all 0.3s;
}
.cid-tn7sL64FKx .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-tn7sL64FKx .navbar .navbar-logo img {
  width: auto;
}
.cid-tn7sL64FKx .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tn7sL64FKx .navbar.collapsed {
  justify-content: center;
}
.cid-tn7sL64FKx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tn7sL64FKx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tn7sL64FKx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tn7sL64FKx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tn7sL64FKx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tn7sL64FKx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-tn7sL64FKx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tn7sL64FKx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tn7sL64FKx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tn7sL64FKx .navbar .dropdown-menu {
    display: none;
  }
  .cid-tn7sL64FKx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tn7sL64FKx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tn7sL64FKx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-tn7sL64FKx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tn7sL64FKx .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-tn7sL64FKx .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-tn7sL64FKx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tn7sL64FKx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tn7sL64FKx .navbar .navbar-buttons,
  .cid-tn7sL64FKx .navbar .icons-menu {
    display: none;
  }
  .cid-tn7sL64FKx .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-tn7sL64FKx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tn7sL64FKx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tn7sL64FKx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tn7sL64FKx .dropdown-item.active,
.cid-tn7sL64FKx .dropdown-item:active {
  background-color: transparent;
}
.cid-tn7sL64FKx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tn7sL64FKx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tn7sL64FKx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tn7sL64FKx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tn7sL64FKx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tn7sL64FKx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tn7sL64FKx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tn7sL64FKx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tn7sL64FKx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tn7sL64FKx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tn7sL64FKx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tn7sL64FKx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tn7sL64FKx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tn7sL64FKx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tn7sL64FKx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tn7sL64FKx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tn7sL64FKx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tn7sL64FKx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tn7sL64FKx .navbar {
    height: 70px;
  }
  .cid-tn7sL64FKx .navbar.opened {
    height: auto;
  }
  .cid-tn7sL64FKx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tn7sL7hq12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tn7sL7hq12 .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-tn7sL7hq12 .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #301cab;
}
.cid-tn7sL7hq12 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #1732a4;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tn7sL7hq12 .mbr-text {
  line-height: 1.54;
  margin-bottom: 50px;
}
.cid-tn7sL7hq12 .mbr-section-btn {
  display: inline-block;
}
.cid-tn7sL7hq12 .popup_video {
  display: inline-flex;
  align-items: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-left: 30px;
}
.cid-tn7sL7hq12 .popup_video:hover {
  cursor: pointer;
}
.cid-tn7sL7hq12 .popup_video:hover .popup__text {
  color: #ffffff;
}
.cid-tn7sL7hq12 .popup_video:hover .popup__text:after {
  transform: scaleX(1);
}
.cid-tn7sL7hq12 .popup_video:hover .popup__text:before {
  transform: scaleX(0);
}
.cid-tn7sL7hq12 .popup_video:hover .mbr-media {
  background-color: #ffffff;
}
.cid-tn7sL7hq12 .popup_video:hover .mbr-media span {
  color: #ff5858;
}
.cid-tn7sL7hq12 .mbr-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 25px;
  background-color: #ff5858;
  transition: all 0.4s ease-in-out;
  animation: pulse 2s linear infinite;
}
.cid-tn7sL7hq12 .mbr-media span {
  font-size: 17px;
  position: relative;
  display: inline-block;
  margin-left: 4px;
  color: #ffffff;
}
.cid-tn7sL7hq12 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-tn7sL7hq12 .popup__text {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
.cid-tn7sL7hq12 .popup__text:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-tn7sL7hq12 .popup__text:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ffffff;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-tn7sL7hq12 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tn7sL7hq12 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tn7sL7hq12 .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-tn7sL7hq12 a.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 10px;
  transition: all 0.2s;
}
.cid-tn7sL7hq12 a.close:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tn7sL7hq12 .head_block {
    order: 1;
    text-align: center;
  }
  .cid-tn7sL7hq12 .image_img {
    margin-bottom: 40px;
  }
  .cid-tn7sL7hq12 .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-tn7sL7hq12 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tn7sL7hq12 .popup_video {
    margin-left: 0;
    margin-top: 10px;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
  }
  100% {
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
  }
}
.cid-tn7sL7hq12 .mbr-text,
.cid-tn7sL7hq12 .buttons_wrap {
  color: #000000;
}
.cid-tn7sL7UrNP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tn7sL7UrNP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn7sL7UrNP .mbr-section-title {
  margin-bottom: 20px;
  color: #191c2f;
}
.cid-tn7sL7UrNP .mbr-text {
  margin-bottom: 50px;
}
.cid-tn7sL7UrNP .card_wrap {
  margin-bottom: 20px;
}
.cid-tn7sL7UrNP .item:nth-child(1) .icon_block svg polygon {
  fill: #ffffff;
}
.cid-tn7sL7UrNP .item:nth-child(1) .mbr-iconfont {
  color: #ffb51c;
}
.cid-tn7sL7UrNP .item:nth-child(2) .icon_block svg polygon {
  fill: #ffffff;
}
.cid-tn7sL7UrNP .item:nth-child(2) .mbr-iconfont {
  color: #58d0ff;
}
.cid-tn7sL7UrNP .item .icon_block {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  width: 90px;
  height: 90px;
}
.cid-tn7sL7UrNP .item .icon_block svg {
  width: 100px;
  height: 100px;
  transform: rotate(90deg);
}
.cid-tn7sL7UrNP .item .icon_block .mbr-iconfont {
  line-height: 100px;
  font-size: 36px;
  position: absolute;
  top: 0;
  left: 33px;
}
.cid-tn7sL7UrNP .card_title {
  margin-bottom: 18px;
  color: #191c2f;
}
.cid-tn7sL7UrNP .card_text {
  margin-bottom: 0;
  color: #6a6b78;
}
.cid-tn7sL7UrNP .mbr-section-btn {
  margin-top: 30px;
}
.cid-tn7sL7UrNP .shape {
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-tn7sL7UrNP .shape_1 {
  top: 10px;
  left: 19px;
  width: 10px;
  height: 10px;
  background: #3caf57;
  border-radius: 50%;
}
.cid-tn7sL7UrNP .shape_2 {
  top: 17px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #58d0ff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(22deg);
}
.cid-tn7sL7UrNP .shape_3 {
  left: 14px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-color: #ffb51c;
}
.cid-tn7sL7UrNP .shape_4 {
  right: -5px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #08bbef;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cid-tn7sL7UrNP .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tn7sL7UrNP .text-wrapper {
    text-align: center;
  }
  .cid-tn7sL7UrNP .card_wrap {
    margin-bottom: 20px;
  }
  .cid-tn7sL7UrNP .icon_block {
    margin-bottom: 20px;
  }
  .cid-tn7sL7UrNP .card_title {
    margin-bottom: 10px;
  }
  .cid-tn7sL7UrNP .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tn7sL7UrNP .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-tn7sL7UrNP .mbr-text,
.cid-tn7sL7UrNP .mbr-section-btn {
  color: #6a6b78;
}
.cid-tn7sL8eFOd {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1732a4;
  overflow: hidden;
  position: relative;
}
.cid-tn7sL8eFOd .mbr-overlay {
  background: #5eeebb;
}
.cid-tn7sL8eFOd .wave img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
}
.cid-tn7sL8eFOd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn7sL8eFOd .card-title {
  margin-bottom: 26px;
}
.cid-tn7sL8eFOd .mbr-text {
  margin-bottom: 30px;
}
.cid-tn7sL8eFOd .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-tn7sL8eFOd .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-tn7sL8eFOd .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tn7sL8eFOd .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tn7sL8eFOd .text-wrapper {
    text-align: center;
  }
  .cid-tn7sL8eFOd .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tn7sL8eFOd .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tn7sL8eFOd .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tn7sL8eFOd .mbr-text,
.cid-tn7sL8eFOd .mbr-section-btn {
  color: #e0e5ff;
}
.cid-tn7sL8sHvX {
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tn7sL8sHvX .carousel {
  padding: 0;
}
.cid-tn7sL8sHvX .figure_outline {
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-tn7sL8sHvX .figure_outline .img {
  position: absolute;
}
.cid-tn7sL8sHvX .figure_outline .img img {
  width: 100%;
  display: block;
}
.cid-tn7sL8sHvX .figure_outline .img .img_2 {
  position: absolute;
  top: -45px;
  left: 0;
  width: 104%;
}
.cid-tn7sL8sHvX .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff5858;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tn7sL8sHvX .mbr-section-title {
  margin-bottom: 36px;
  color: #191c2f;
}
.cid-tn7sL8sHvX .icon_block {
  display: inline-block;
  position: relative;
}
.cid-tn7sL8sHvX .icon_block .mbr-iconfont {
  font-size: 150px;
  position: absolute;
  top: -10px;
  left: 12px;
  opacity: .2;
  color: #ffffff;
}
.cid-tn7sL8sHvX .carousel-controls {
  margin-top: 30px;
  width: 100%;
  position: relative;
  height: 50px;
}
.cid-tn7sL8sHvX .carousel-controls a span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  color: #191c2f;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #191c2f;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tn7sL8sHvX .carousel-controls a span:hover {
  background-color: #58d0ff;
  color: #000000;
}
.cid-tn7sL8sHvX .carousel-control-prev {
  position: static;
  margin-right: 10px;
  width: 50px;
}
.cid-tn7sL8sHvX .carousel-control-next {
  position: static;
  width: 50px;
}
.cid-tn7sL8sHvX .show_md {
  display: none;
}
.cid-tn7sL8sHvX .user_text {
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  min-height: 90px;
}
.cid-tn7sL8sHvX .user_image {
  width: 80px;
  height: 80px;
  margin: 25px auto 35px auto;
  position: relative;
  z-index: 1;
  padding: 6px;
}
.cid-tn7sL8sHvX .user_image img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  min-width: 100%;
  min-height: 100%;
}
.cid-tn7sL8sHvX .user_image .shape_1 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  left: 10px;
  top: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-tn7sL8sHvX .user_image .shape_2 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  right: 0;
  top: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-tn7sL8sHvX .user_image .shape_3 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0px;
  left: 7px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-tn7sL8sHvX .user_name {
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: 600;
  color: #ffffff;
}
.cid-tn7sL8sHvX .user_prof {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tn7sL8sHvX .carousel-item {
    justify-content: center;
  }
  .cid-tn7sL8sHvX .figure_outline .img img {
    width: 87%;
  }
  .cid-tn7sL8sHvX .figure_outline .img .img_2 {
    position: absolute;
    top: -45px;
    left: -13px;
    width: 88%;
  }
  .cid-tn7sL8sHvX .user {
    max-width: 400px;
  }
  .cid-tn7sL8sHvX .icon_block .mbr-iconfont {
    font-size: 120px;
    top: 10px;
    left: 0;
  }
  .cid-tn7sL8sHvX .title_block {
    text-align: center;
    margin-top: 40px;
  }
  .cid-tn7sL8sHvX .mbr-section-title {
    margin-bottom: 26px;
  }
  .cid-tn7sL8sHvX .hide_md {
    display: none;
  }
  .cid-tn7sL8sHvX .show_md {
    display: flex;
    justify-content: center;
    margin-top: 105px;
  }
}
@media (max-width: 767px) {
  .cid-tn7sL8sHvX .figure_outline,
  .cid-tn7sL8sHvX .icon_block {
    display: none;
  }
  .cid-tn7sL8sHvX .user_text {
    color: inherit;
    margin-bottom: 20px;
  }
  .cid-tn7sL8sHvX .user_prof {
    color: inherit;
  }
  .cid-tn7sL8sHvX .user_name {
    color: #4154f1;
    margin-bottom: 5px;
  }
  .cid-tn7sL8sHvX .show_md {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }
}
.cid-tn7sL9jgnU .google-map {
  height: 25rem;
  position: relative;
}
.cid-tn7sL9jgnU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tn7sL9jgnU .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tn7sL9jgnU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tn7sL9jgnU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tn7sL9waK0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e0e5ff;
  background: linear-gradient(180deg, rgba(224, 229, 255, 0.8) 0%, #ffffff 100%);
}
.cid-tn7sL9waK0 .mbr-overlay {
  background: #5eeebb;
}
.cid-tn7sL9waK0 .title_block {
  margin-bottom: 50px;
}
.cid-tn7sL9waK0 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #1732a4;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tn7sL9waK0 .mbr-section-title {
  color: #191c2f;
}
.cid-tn7sL9waK0 .card_wrap {
  background-color: #ffffff;
  padding: 45px 65px;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-tn7sL9waK0 .card_wrap:hover {
  transform: translateY(-16px);
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
}
.cid-tn7sL9waK0 .card_header {
  margin-bottom: 40px;
}
.cid-tn7sL9waK0 .card_price {
  color: #051441;
}
.cid-tn7sL9waK0 .card_price sup {
  margin-right: 5px;
}
.cid-tn7sL9waK0 .card_price sub {
  font-size: 16px;
  line-height: 1;
}
.cid-tn7sL9waK0 .card_image {
  width: 160px;
  height: 125px;
  margin: 0px auto 50px;
}
.cid-tn7sL9waK0 .card_image img {
  width: 160px;
  height: 125px;
  object-fit: contain;
}
.cid-tn7sL9waK0 .card_list {
  margin-bottom: 40px;
}
.cid-tn7sL9waK0 .card_list .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-tn7sL9waK0 .card_list .list li {
  line-height: 1.1;
  margin-bottom: 25px;
}
.cid-tn7sL9waK0 .item:nth-child(1) .card_title {
  color: #1732a4;
}
.cid-tn7sL9waK0 .item:nth-child(2) .card_title {
  color: #3caf57;
}
.cid-tn7sL9waK0 .item:nth-child(3) .card_title {
  color: #ffb51c;
}
.cid-tn7sL9waK0 .card_title {
  margin-bottom: 20px;
}
.cid-tn7sL9waK0 .tabs_text {
  margin-bottom: 0;
  color: #6a6b78;
}
.cid-tn7sL9waK0 .tabs_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tn7sL9waK0 .nav-tabs {
  margin: 0 10px;
  border: none;
  background-color: #ffffff !important;
  border-radius: 16px;
}
.cid-tn7sL9waK0 .nav-tabs .li_item1 {
  left: -2px;
}
.cid-tn7sL9waK0 .nav-tabs .li_item2 {
  right: -2px;
}
.cid-tn7sL9waK0 .nav-tabs .nav-item {
  margin: 0;
  width: 30px;
  height: 24px;
  display: flex;
  align-items: center;
}
.cid-tn7sL9waK0 .nav-tabs .nav-item .btn {
  border-radius: 50px !important;
  transition: all 0.25s;
  border-color: transparent !important;
  background-color: transparent !important;
  padding: 8px !important;
  height: 30px;
  width: 30px;
  position: relative;
  transform: scale(1) !important;
  margin: 0px !important;
  box-shadow: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .cid-tn7sL9waK0 .nav-tabs .nav-item .btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 1;
    padding: 0;
    background-color: transparent !important;
    animation: none;
    z-index: -1;
  }
  .cid-tn7sL9waK0 .nav-tabs .nav-item .btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: inherit;
    z-index: -1;
    transition: transform 0.3s, background-color 0.2s;
  }
  .cid-tn7sL9waK0 .nav-tabs .nav-item .btn.active:before {
    background-color: #1732a4 !important;
    box-shadow: 0px 5px 20px 0px rgba(94, 44, 237, 0.25) !important;
  }
}
@media (max-width: 767px) {
  .cid-tn7sL9waK0 .nav-tabs .nav-item .btn {
    padding: 8px !important;
    vertical-align: middle;
  }
}
.cid-tn7sL9waK0 .nav-tabs .nav-item .btn:hover {
  cursor: pointer;
  color: #1732a4 !important;
  box-shadow: none !important;
}
.cid-tn7sL9waK0 .nav-tabs .nav-item .btn.active {
  color: #ffffff !important;
  box-shadow: 0px 5px 20px 0px rgba(94, 44, 237, 0.25) !important;
}
@media (max-width: 767px) {
  .cid-tn7sL9waK0 .nav-tabs .nav-item .btn.active {
    background-color: #1732a4 !important;
  }
}
@media (min-width: 768px) {
  .cid-tn7sL9waK0 .nav-tabs .nav-item:first-child > .btn:after {
    border-right: none!important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-tn7sL9waK0 .nav-tabs .nav-item:last-child > .btn:after {
    border-left: none!important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .cid-tn7sL9waK0 .nav-tabs .nav-item:first-child > .btn:before {
    transform: translateX(50%);
  }
  .cid-tn7sL9waK0 .nav-tabs .nav-item:last-child > .btn:before {
    transform: translateX(-50%);
  }
  .cid-tn7sL9waK0 .nav-tabs .nav-item:first-child > .btn.active:before {
    transform: translateX(0);
  }
  .cid-tn7sL9waK0 .nav-tabs .nav-item:last-child > .btn.active:before {
    transform: translateX(0);
  }
}
@media (max-width: 991px) {
  .cid-tn7sL9waK0 .title_block {
    margin-bottom: 30px;
  }
  .cid-tn7sL9waK0 .tabs_wrap {
    margin-bottom: 30px;
  }
  .cid-tn7sL9waK0 .card_wrap {
    margin-top: 30px;
    padding: 40px 30px;
  }
  .cid-tn7sL9waK0 .card_header {
    margin-bottom: 30px;
  }
  .cid-tn7sL9waK0 .card_image {
    width: 140px;
    height: 100px;
    margin-bottom: 30px;
  }
  .cid-tn7sL9waK0 .card_image img {
    width: 140px;
    height: 100px;
  }
  .cid-tn7sL9waK0 .card_list {
    margin-bottom: 30px;
  }
  .cid-tn7sL9waK0 .card_list .list li {
    margin-bottom: 18px;
  }
}
.cid-tn7sL9waK0 .list {
  color: #6a6b78;
}
.cid-tn7sLa12AC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tn7sLa12AC .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tn7sLa12AC .text-white {
  color: #a99fc5 !important;
}
.cid-tn7sLa12AC .text-white:hover {
  color: #ffffff !important;
}
.cid-tn7sLa12AC .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tn7sLa12AC .foot-menu li {
  padding: 10px;
}
.cid-tn7sLa12AC .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tn7sLa12AC .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tn7sLa12AC .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tn7sLa12AC .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tn7sLa12AC .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tn7sLa12AC .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tn7sLa12AC .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tn7sLa12AC .social-list a:hover {
  opacity: 1;
}
.cid-tn7sLa12AC .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tn7sLa12AC .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tn7sLa12AC .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tngIR0BTLU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tngIR0BTLU nav.navbar {
  position: fixed;
}
.cid-tngIR0BTLU .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-tngIR0BTLU .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-tngIR0BTLU .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-tngIR0BTLU .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-tngIR0BTLU .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-tngIR0BTLU .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-tngIR0BTLU .dropdown-item:hover,
.cid-tngIR0BTLU .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-tngIR0BTLU .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-tngIR0BTLU .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-tngIR0BTLU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-tngIR0BTLU .nav-link {
  position: relative;
  line-height: 1;
}
.cid-tngIR0BTLU .nav-link:hover {
  color: #1732a4 !important;
}
.cid-tngIR0BTLU .container {
  display: flex;
  margin: auto;
}
.cid-tngIR0BTLU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-tngIR0BTLU .dropdown-menu,
.cid-tngIR0BTLU .navbar.opened {
  background: #000000 !important;
}
.cid-tngIR0BTLU .nav-item:focus,
.cid-tngIR0BTLU .nav-link:focus {
  outline: none;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tngIR0BTLU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tngIR0BTLU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-tngIR0BTLU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-tngIR0BTLU .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-tngIR0BTLU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tngIR0BTLU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tngIR0BTLU .navbar.opened {
  transition: all 0.3s;
}
.cid-tngIR0BTLU .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-tngIR0BTLU .navbar .navbar-logo img {
  width: auto;
}
.cid-tngIR0BTLU .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tngIR0BTLU .navbar.collapsed {
  justify-content: center;
}
.cid-tngIR0BTLU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tngIR0BTLU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tngIR0BTLU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-tngIR0BTLU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tngIR0BTLU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu {
    display: none;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-tngIR0BTLU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tngIR0BTLU .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-tngIR0BTLU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tngIR0BTLU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tngIR0BTLU .navbar .navbar-buttons,
  .cid-tngIR0BTLU .navbar .icons-menu {
    display: none;
  }
  .cid-tngIR0BTLU .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-tngIR0BTLU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tngIR0BTLU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tngIR0BTLU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tngIR0BTLU .dropdown-item.active,
.cid-tngIR0BTLU .dropdown-item:active {
  background-color: transparent;
}
.cid-tngIR0BTLU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tngIR0BTLU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tngIR0BTLU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tngIR0BTLU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tngIR0BTLU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tngIR0BTLU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tngIR0BTLU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tngIR0BTLU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tngIR0BTLU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tngIR0BTLU .navbar {
    height: 70px;
  }
  .cid-tngIR0BTLU .navbar.opened {
    height: auto;
  }
  .cid-tngIR0BTLU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tngJ6DEzZV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tngJ6DEzZV .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #4154f1;
  text-align: center;
}
.cid-tngJ6DEzZV .mbr-section-title {
  margin-bottom: 0;
  color: #4154f1;
  text-align: center;
}
.cid-tngJ6DEzZV .card_wrapper {
  margin-top: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 3px 4px 0 rgba(38, 59, 94, 0.1);
}
.cid-tngJ6DEzZV .card_wrapper:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px 0 rgba(38, 59, 94, 0.1);
}
.cid-tngJ6DEzZV .card_wrapper:hover .card_title a {
  color: #1732a4 !important;
}
.cid-tngJ6DEzZV .card_wrapper:hover .card_link .mbr-iconfont {
  color: #1732a4 !important;
}
.cid-tngJ6DEzZV .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-tngJ6DEzZV .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-tngJ6DEzZV .card_wrapper:hover .shape_2 {
  transform: rotate(360deg);
  top: -6px;
  right: -2px;
}
.cid-tngJ6DEzZV .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-tngJ6DEzZV .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-tngJ6DEzZV .icon_block {
  margin-bottom: 40px;
}
.cid-tngJ6DEzZV .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  background-image: linear-gradient(40deg, #039ecb 0%, rgba(56, 208, 252, 0.8) 100%);
}
.cid-tngJ6DEzZV .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-tngJ6DEzZV .card_title {
  margin-bottom: 20px;
  color: #4154f1;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tngJ6DEzZV .card_text {
  margin-bottom: 50px;
}
.cid-tngJ6DEzZV .card_link {
  display: block;
}
.cid-tngJ6DEzZV .card_link a {
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
.cid-tngJ6DEzZV .card_link a:hover {
  transform: translateX(6px);
}
.cid-tngJ6DEzZV .card_link .mbr-iconfont {
  line-height: 1;
  font-size: 48px;
  color: #afb8ce;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tngJ6DEzZV .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-tngJ6DEzZV .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #3caf57;
  border-radius: 50%;
}
.cid-tngJ6DEzZV .shape_2 {
  top: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #58d0ff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-tngJ6DEzZV .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #ffb51c;
}
.cid-tngJ6DEzZV .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #08bbef;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .cid-tngJ6DEzZV .card_wrapper {
    padding: 40px 30px;
    max-width: 370px;
    margin: 30px auto 0;
  }
  .cid-tngJ6DEzZV .card_title {
    margin-bottom: 15px;
  }
  .cid-tngJ6DEzZV .card_text {
    margin-bottom: 20px;
  }
  .cid-tngJ6DEzZV .card_link .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-tngIR3CYNR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #301cab;
}
.cid-tngIR3CYNR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tngIR3CYNR .mbr-section-title {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tngIR3CYNR .mbr-text {
  margin-bottom: 50px;
}
.cid-tngIR3CYNR .card_wrap {
  margin-bottom: 20px;
}
.cid-tngIR3CYNR .item:nth-child(1) .icon_block svg polygon {
  fill: #ffffff;
}
.cid-tngIR3CYNR .item:nth-child(1) .mbr-iconfont {
  color: #ffb51c;
}
.cid-tngIR3CYNR .item:nth-child(2) .icon_block svg polygon {
  fill: #ffffff;
}
.cid-tngIR3CYNR .item:nth-child(2) .mbr-iconfont {
  color: #58d0ff;
}
.cid-tngIR3CYNR .item .icon_block {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  width: 90px;
  height: 90px;
}
.cid-tngIR3CYNR .item .icon_block svg {
  width: 100px;
  height: 100px;
  transform: rotate(90deg);
}
.cid-tngIR3CYNR .item .icon_block .mbr-iconfont {
  line-height: 100px;
  font-size: 36px;
  position: absolute;
  top: 0;
  left: 33px;
}
.cid-tngIR3CYNR .card_title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-tngIR3CYNR .card_text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tngIR3CYNR .mbr-section-btn {
  margin-top: 30px;
}
.cid-tngIR3CYNR .shape {
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-tngIR3CYNR .shape_1 {
  top: 10px;
  left: 19px;
  width: 10px;
  height: 10px;
  background: #3caf57;
  border-radius: 50%;
}
.cid-tngIR3CYNR .shape_2 {
  top: 17px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #58d0ff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(22deg);
}
.cid-tngIR3CYNR .shape_3 {
  left: 14px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-color: #ffb51c;
}
.cid-tngIR3CYNR .shape_4 {
  right: -5px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #08bbef;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cid-tngIR3CYNR .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tngIR3CYNR .text-wrapper {
    text-align: center;
  }
  .cid-tngIR3CYNR .card_wrap {
    margin-bottom: 20px;
  }
  .cid-tngIR3CYNR .icon_block {
    margin-bottom: 20px;
  }
  .cid-tngIR3CYNR .card_title {
    margin-bottom: 10px;
  }
  .cid-tngIR3CYNR .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tngIR3CYNR .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-tngIR3CYNR .mbr-text,
.cid-tngIR3CYNR .mbr-section-btn {
  color: #ffffff;
}
.cid-tngIR4CKqj {
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tngIR4CKqj .carousel {
  padding: 0;
}
.cid-tngIR4CKqj .figure_outline {
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-tngIR4CKqj .figure_outline .img {
  position: absolute;
}
.cid-tngIR4CKqj .figure_outline .img img {
  width: 100%;
  display: block;
}
.cid-tngIR4CKqj .figure_outline .img .img_2 {
  position: absolute;
  top: -45px;
  left: 0;
  width: 104%;
}
.cid-tngIR4CKqj .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff5858;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tngIR4CKqj .mbr-section-title {
  margin-bottom: 36px;
  color: #191c2f;
}
.cid-tngIR4CKqj .icon_block {
  display: inline-block;
  position: relative;
}
.cid-tngIR4CKqj .icon_block .mbr-iconfont {
  font-size: 150px;
  position: absolute;
  top: -10px;
  left: 12px;
  opacity: .2;
  color: #ffffff;
}
.cid-tngIR4CKqj .carousel-controls {
  margin-top: 30px;
  width: 100%;
  position: relative;
  height: 50px;
}
.cid-tngIR4CKqj .carousel-controls a span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  color: #191c2f;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #191c2f;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tngIR4CKqj .carousel-controls a span:hover {
  background-color: #58d0ff;
  color: #000000;
}
.cid-tngIR4CKqj .carousel-control-prev {
  position: static;
  margin-right: 10px;
  width: 50px;
}
.cid-tngIR4CKqj .carousel-control-next {
  position: static;
  width: 50px;
}
.cid-tngIR4CKqj .show_md {
  display: none;
}
.cid-tngIR4CKqj .user_text {
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  min-height: 90px;
}
.cid-tngIR4CKqj .user_image {
  width: 80px;
  height: 80px;
  margin: 25px auto 35px auto;
  position: relative;
  z-index: 1;
  padding: 6px;
}
.cid-tngIR4CKqj .user_image img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  min-width: 100%;
  min-height: 100%;
}
.cid-tngIR4CKqj .user_image .shape_1 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  left: 10px;
  top: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-tngIR4CKqj .user_image .shape_2 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  right: 0;
  top: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-tngIR4CKqj .user_image .shape_3 {
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0px;
  left: 7px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.cid-tngIR4CKqj .user_name {
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: 600;
  color: #ffffff;
}
.cid-tngIR4CKqj .user_prof {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tngIR4CKqj .carousel-item {
    justify-content: center;
  }
  .cid-tngIR4CKqj .figure_outline .img img {
    width: 87%;
  }
  .cid-tngIR4CKqj .figure_outline .img .img_2 {
    position: absolute;
    top: -45px;
    left: -13px;
    width: 88%;
  }
  .cid-tngIR4CKqj .user {
    max-width: 400px;
  }
  .cid-tngIR4CKqj .icon_block .mbr-iconfont {
    font-size: 120px;
    top: 10px;
    left: 0;
  }
  .cid-tngIR4CKqj .title_block {
    text-align: center;
    margin-top: 40px;
  }
  .cid-tngIR4CKqj .mbr-section-title {
    margin-bottom: 26px;
  }
  .cid-tngIR4CKqj .hide_md {
    display: none;
  }
  .cid-tngIR4CKqj .show_md {
    display: flex;
    justify-content: center;
    margin-top: 105px;
  }
}
@media (max-width: 767px) {
  .cid-tngIR4CKqj .figure_outline,
  .cid-tngIR4CKqj .icon_block {
    display: none;
  }
  .cid-tngIR4CKqj .user_text {
    color: inherit;
    margin-bottom: 20px;
  }
  .cid-tngIR4CKqj .user_prof {
    color: inherit;
  }
  .cid-tngIR4CKqj .user_name {
    color: #4154f1;
    margin-bottom: 5px;
  }
  .cid-tngIR4CKqj .show_md {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }
}
.cid-tngIR5P1aS .google-map {
  height: 25rem;
  position: relative;
}
.cid-tngIR5P1aS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tngIR5P1aS .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tngIR5P1aS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tngIR5P1aS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tngIR6Xy49 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tngIR6Xy49 .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tngIR6Xy49 .text-white {
  color: #a99fc5 !important;
}
.cid-tngIR6Xy49 .text-white:hover {
  color: #ffffff !important;
}
.cid-tngIR6Xy49 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tngIR6Xy49 .foot-menu li {
  padding: 10px;
}
.cid-tngIR6Xy49 .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tngIR6Xy49 .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tngIR6Xy49 .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tngIR6Xy49 .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tngIR6Xy49 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tngIR6Xy49 .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tngIR6Xy49 .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tngIR6Xy49 .social-list a:hover {
  opacity: 1;
}
.cid-tngIR6Xy49 .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tngIR6Xy49 .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tngIR6Xy49 .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tngIR0BTLU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tngIR0BTLU nav.navbar {
  position: fixed;
}
.cid-tngIR0BTLU .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-tngIR0BTLU .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-tngIR0BTLU .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-tngIR0BTLU .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-tngIR0BTLU .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-tngIR0BTLU .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-tngIR0BTLU .dropdown-item:hover,
.cid-tngIR0BTLU .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-tngIR0BTLU .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-tngIR0BTLU .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-tngIR0BTLU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-tngIR0BTLU .nav-link {
  position: relative;
  line-height: 1;
}
.cid-tngIR0BTLU .nav-link:hover {
  color: #1732a4 !important;
}
.cid-tngIR0BTLU .container {
  display: flex;
  margin: auto;
}
.cid-tngIR0BTLU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-tngIR0BTLU .dropdown-menu,
.cid-tngIR0BTLU .navbar.opened {
  background: #000000 !important;
}
.cid-tngIR0BTLU .nav-item:focus,
.cid-tngIR0BTLU .nav-link:focus {
  outline: none;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tngIR0BTLU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tngIR0BTLU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tngIR0BTLU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-tngIR0BTLU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-tngIR0BTLU .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-tngIR0BTLU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tngIR0BTLU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tngIR0BTLU .navbar.opened {
  transition: all 0.3s;
}
.cid-tngIR0BTLU .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-tngIR0BTLU .navbar .navbar-logo img {
  width: auto;
}
.cid-tngIR0BTLU .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tngIR0BTLU .navbar.collapsed {
  justify-content: center;
}
.cid-tngIR0BTLU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tngIR0BTLU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tngIR0BTLU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-tngIR0BTLU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tngIR0BTLU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tngIR0BTLU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu {
    display: none;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-tngIR0BTLU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tngIR0BTLU .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-tngIR0BTLU .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-tngIR0BTLU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tngIR0BTLU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tngIR0BTLU .navbar .navbar-buttons,
  .cid-tngIR0BTLU .navbar .icons-menu {
    display: none;
  }
  .cid-tngIR0BTLU .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-tngIR0BTLU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tngIR0BTLU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tngIR0BTLU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tngIR0BTLU .dropdown-item.active,
.cid-tngIR0BTLU .dropdown-item:active {
  background-color: transparent;
}
.cid-tngIR0BTLU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tngIR0BTLU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tngIR0BTLU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tngIR0BTLU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tngIR0BTLU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tngIR0BTLU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tngIR0BTLU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tngIR0BTLU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tngIR0BTLU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tngIR0BTLU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tngIR0BTLU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tngIR0BTLU .navbar {
    height: 70px;
  }
  .cid-tngIR0BTLU .navbar.opened {
    height: auto;
  }
  .cid-tngIR0BTLU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEV3aWz714 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tEV3aWz714 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEV3aWz714 .card-title {
  margin-bottom: 26px;
  color: #4154f1;
}
.cid-tEV3aWz714 .mbr-text {
  margin-bottom: 30px;
}
.cid-tEV3aWz714 .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-tEV3aWz714 .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-tEV3aWz714 .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-tEV3aWz714 .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-tEV3aWz714 .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-tEV3aWz714 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-tEV3aWz714 .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEV3aWz714 .text-wrapper {
    text-align: center;
  }
  .cid-tEV3aWz714 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tEV3aWz714 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tEV3aWz714 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tngIR6Xy49 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tngIR6Xy49 .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tngIR6Xy49 .text-white {
  color: #a99fc5 !important;
}
.cid-tngIR6Xy49 .text-white:hover {
  color: #ffffff !important;
}
.cid-tngIR6Xy49 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tngIR6Xy49 .foot-menu li {
  padding: 10px;
}
.cid-tngIR6Xy49 .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tngIR6Xy49 .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tngIR6Xy49 .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tngIR6Xy49 .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tngIR6Xy49 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tngIR6Xy49 .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tngIR6Xy49 .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tngIR6Xy49 .social-list a:hover {
  opacity: 1;
}
.cid-tngIR6Xy49 .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tngIR6Xy49 .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tngIR6Xy49 .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tBGZpZo5Se {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBGZpZo5Se nav.navbar {
  position: fixed;
}
.cid-tBGZpZo5Se .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-tBGZpZo5Se .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-tBGZpZo5Se .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-tBGZpZo5Se .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-tBGZpZo5Se .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-tBGZpZo5Se .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-tBGZpZo5Se .dropdown-item:hover,
.cid-tBGZpZo5Se .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-tBGZpZo5Se .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-tBGZpZo5Se .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-tBGZpZo5Se .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-tBGZpZo5Se .nav-link {
  position: relative;
  line-height: 1;
}
.cid-tBGZpZo5Se .nav-link:hover {
  color: #1732a4 !important;
}
.cid-tBGZpZo5Se .container {
  display: flex;
  margin: auto;
}
.cid-tBGZpZo5Se .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-tBGZpZo5Se .dropdown-menu,
.cid-tBGZpZo5Se .navbar.opened {
  background: #000000 !important;
}
.cid-tBGZpZo5Se .nav-item:focus,
.cid-tBGZpZo5Se .nav-link:focus {
  outline: none;
}
.cid-tBGZpZo5Se .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-tBGZpZo5Se .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBGZpZo5Se .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBGZpZo5Se .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBGZpZo5Se .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBGZpZo5Se .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBGZpZo5Se .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-tBGZpZo5Se .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-tBGZpZo5Se .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBGZpZo5Se .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBGZpZo5Se .navbar.opened {
  transition: all 0.3s;
}
.cid-tBGZpZo5Se .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-tBGZpZo5Se .navbar .navbar-logo img {
  width: auto;
}
.cid-tBGZpZo5Se .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tBGZpZo5Se .navbar.collapsed {
  justify-content: center;
}
.cid-tBGZpZo5Se .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBGZpZo5Se .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBGZpZo5Se .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBGZpZo5Se .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBGZpZo5Se .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBGZpZo5Se .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-tBGZpZo5Se .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBGZpZo5Se .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tBGZpZo5Se .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBGZpZo5Se .navbar .dropdown-menu {
    display: none;
  }
  .cid-tBGZpZo5Se .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBGZpZo5Se .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBGZpZo5Se .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-tBGZpZo5Se .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBGZpZo5Se .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-tBGZpZo5Se .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-tBGZpZo5Se .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBGZpZo5Se .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBGZpZo5Se .navbar .navbar-buttons,
  .cid-tBGZpZo5Se .navbar .icons-menu {
    display: none;
  }
  .cid-tBGZpZo5Se .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-tBGZpZo5Se .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBGZpZo5Se .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBGZpZo5Se .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBGZpZo5Se .dropdown-item.active,
.cid-tBGZpZo5Se .dropdown-item:active {
  background-color: transparent;
}
.cid-tBGZpZo5Se .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBGZpZo5Se .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tBGZpZo5Se .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBGZpZo5Se ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBGZpZo5Se .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBGZpZo5Se button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBGZpZo5Se button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tBGZpZo5Se button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBGZpZo5Se button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBGZpZo5Se button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBGZpZo5Se button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBGZpZo5Se nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBGZpZo5Se nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBGZpZo5Se nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBGZpZo5Se nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBGZpZo5Se .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBGZpZo5Se a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tBGZpZo5Se .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBGZpZo5Se .navbar {
    height: 70px;
  }
  .cid-tBGZpZo5Se .navbar.opened {
    height: auto;
  }
  .cid-tBGZpZo5Se .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBGZq1FBUq .google-map {
  height: 25rem;
  position: relative;
}
.cid-tBGZq1FBUq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tBGZq1FBUq .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tBGZq1FBUq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tBGZq1FBUq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tBGZq1Rwg9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tBGZq1Rwg9 .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tBGZq1Rwg9 .text-white {
  color: #a99fc5 !important;
}
.cid-tBGZq1Rwg9 .text-white:hover {
  color: #ffffff !important;
}
.cid-tBGZq1Rwg9 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBGZq1Rwg9 .foot-menu li {
  padding: 10px;
}
.cid-tBGZq1Rwg9 .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tBGZq1Rwg9 .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tBGZq1Rwg9 .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tBGZq1Rwg9 .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tBGZq1Rwg9 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tBGZq1Rwg9 .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tBGZq1Rwg9 .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tBGZq1Rwg9 .social-list a:hover {
  opacity: 1;
}
.cid-tBGZq1Rwg9 .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tBGZq1Rwg9 .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tBGZq1Rwg9 .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLYexwegqp {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tLYexwegqp .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-tLYexwegqp .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #4154f1;
}
.cid-tLYexwegqp .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #1732a4;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tLYexwegqp .mbr-text {
  line-height: 1.54;
  margin-bottom: 50px;
}
.cid-tLYexwegqp .mbr-section-btn {
  display: inline-block;
}
.cid-tLYexwegqp .popup_video {
  display: inline-flex;
  align-items: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-left: 30px;
}
.cid-tLYexwegqp .popup_video:hover {
  cursor: pointer;
}
.cid-tLYexwegqp .popup_video:hover .popup__text {
  color: #4154f1;
}
.cid-tLYexwegqp .popup_video:hover .popup__text:after {
  transform: scaleX(1);
}
.cid-tLYexwegqp .popup_video:hover .popup__text:before {
  transform: scaleX(0);
}
.cid-tLYexwegqp .popup_video:hover .mbr-media {
  background-color: #4154f1;
}
.cid-tLYexwegqp .popup_video:hover .mbr-media span {
  color: #ffffff;
}
.cid-tLYexwegqp .mbr-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 25px;
  background-color: #ffffff;
  transition: all 0.4s ease-in-out;
  animation: pulse 2s linear infinite;
}
.cid-tLYexwegqp .mbr-media span {
  font-size: 17px;
  position: relative;
  display: inline-block;
  margin-left: 4px;
  color: #4154f1;
}
.cid-tLYexwegqp .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-tLYexwegqp .popup__text {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tLYexwegqp .popup__text:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-tLYexwegqp .popup__text:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #4154f1;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-tLYexwegqp .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tLYexwegqp .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tLYexwegqp .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-tLYexwegqp a.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 10px;
  transition: all 0.2s;
}
.cid-tLYexwegqp a.close:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tLYexwegqp .head_block {
    order: 1;
    text-align: center;
  }
  .cid-tLYexwegqp .image_img {
    margin-bottom: 40px;
  }
  .cid-tLYexwegqp .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-tLYexwegqp .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tLYexwegqp .popup_video {
    margin-left: 0;
    margin-top: 10px;
  }
  .cid-tLYexwegqp .btn_group {
    flex-direction: column;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(65, 84, 241, 0.08), 0px 0px 0px 5px rgba(65, 84, 241, 0.08), 0px 0px 0px 12px rgba(65, 84, 241, 0.08);
  }
  100% {
    box-shadow: 0px 0px 0px 5px rgba(65, 84, 241, 0.08), 0px 0px 0px 12px rgba(65, 84, 241, 0.08), 0px 0px 0px 18px rgba(65, 84, 241, 0);
  }
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZvo0XGYdt {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-tZvo0XGYdt .mbr-overlay {
  background: #6b3df0;
  background: linear-gradient(to right, #6b3df0, #5e2ced);
}
.cid-tZvo0XGYdt .title_block {
  margin-bottom: 50px;
}
.cid-tZvo0XGYdt .mbr-section-subtitle {
  letter-spacing: 1.6px;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 600;
  color: #4154f1;
}
.cid-tZvo0XGYdt .mbr-section-title {
  margin-bottom: 36px;
  color: #301cab;
}
.cid-tZvo0XGYdt .mbr-text {
  margin-bottom: 30px;
}
.cid-tZvo0XGYdt .mbr-section-btn .btn-white {
  color: #58d0ff !important;
}
.cid-tZvo0XGYdt .mbr-section-btn .btn-white:before {
  background: #58d0ff !important;
}
.cid-tZvo0XGYdt .mbr-section-btn .btn-white:hover {
  border-color: #fff !important;
  color: #fff !important;
}
.cid-tZvo0XGYdt .mbr-section-btn .btn-white:hover::before {
  background: #58d0ff !important;
}
.cid-tZvo0XGYdt .mbr-section-btn .btn-white-outline:hover {
  color: #58d0ff !important;
}
.cid-tZvo0XGYdt .mbr-section-btn .mbr-iconfont {
  order: 0;
  margin-right: 4px;
  margin-bottom: 2px;
  font-size: 16px;
}
.cid-tZvo0XGYdt .image_block {
  width: 460px;
  margin: 0 auto;
}
.cid-tZvo0XGYdt .image_block img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tZvo0XGYdt .title_block {
    text-align: center;
  }
  .cid-tZvo0XGYdt .image_block {
    margin-bottom: 40px;
    width: auto;
    max-width: 370px;
  }
  .cid-tZvo0XGYdt .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-tZvo0XGYdt .btn {
    padding: 14px 26px;
  }
}
.cid-tZvo0XGYdt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZvo0XGYdt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZvo0XGYdt .mbr-text,
.cid-tZvo0XGYdt .mbr-section-btn {
  color: #191c2f;
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tZw5iSF4fm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZw5iSF4fm nav.navbar {
  position: fixed;
}
.cid-tZw5iSF4fm .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-tZw5iSF4fm .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-tZw5iSF4fm .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-tZw5iSF4fm .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-tZw5iSF4fm .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-tZw5iSF4fm .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-tZw5iSF4fm .dropdown-item:hover,
.cid-tZw5iSF4fm .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-tZw5iSF4fm .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-tZw5iSF4fm .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-tZw5iSF4fm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-tZw5iSF4fm .nav-link {
  position: relative;
  line-height: 1;
}
.cid-tZw5iSF4fm .nav-link:hover {
  color: #1732a4 !important;
}
.cid-tZw5iSF4fm .container {
  display: flex;
  margin: auto;
}
.cid-tZw5iSF4fm .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-tZw5iSF4fm .dropdown-menu,
.cid-tZw5iSF4fm .navbar.opened {
  background: #000000 !important;
}
.cid-tZw5iSF4fm .nav-item:focus,
.cid-tZw5iSF4fm .nav-link:focus {
  outline: none;
}
.cid-tZw5iSF4fm .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-tZw5iSF4fm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZw5iSF4fm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZw5iSF4fm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZw5iSF4fm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZw5iSF4fm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZw5iSF4fm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-tZw5iSF4fm .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-tZw5iSF4fm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZw5iSF4fm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZw5iSF4fm .navbar.opened {
  transition: all 0.3s;
}
.cid-tZw5iSF4fm .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-tZw5iSF4fm .navbar .navbar-logo img {
  width: auto;
}
.cid-tZw5iSF4fm .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZw5iSF4fm .navbar.collapsed {
  justify-content: center;
}
.cid-tZw5iSF4fm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZw5iSF4fm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZw5iSF4fm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tZw5iSF4fm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZw5iSF4fm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZw5iSF4fm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-tZw5iSF4fm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZw5iSF4fm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tZw5iSF4fm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZw5iSF4fm .navbar .dropdown-menu {
    display: none;
  }
  .cid-tZw5iSF4fm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZw5iSF4fm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZw5iSF4fm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-tZw5iSF4fm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZw5iSF4fm .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-tZw5iSF4fm .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-tZw5iSF4fm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZw5iSF4fm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZw5iSF4fm .navbar .navbar-buttons,
  .cid-tZw5iSF4fm .navbar .icons-menu {
    display: none;
  }
  .cid-tZw5iSF4fm .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-tZw5iSF4fm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZw5iSF4fm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZw5iSF4fm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZw5iSF4fm .dropdown-item.active,
.cid-tZw5iSF4fm .dropdown-item:active {
  background-color: transparent;
}
.cid-tZw5iSF4fm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZw5iSF4fm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tZw5iSF4fm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZw5iSF4fm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZw5iSF4fm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZw5iSF4fm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZw5iSF4fm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tZw5iSF4fm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZw5iSF4fm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZw5iSF4fm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZw5iSF4fm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZw5iSF4fm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZw5iSF4fm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZw5iSF4fm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZw5iSF4fm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZw5iSF4fm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZw5iSF4fm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZw5iSF4fm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZw5iSF4fm .navbar {
    height: 70px;
  }
  .cid-tZw5iSF4fm .navbar.opened {
    height: auto;
  }
  .cid-tZw5iSF4fm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZw5iTC51G {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tZw5iTC51G .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tZw5iTC51G .text-white {
  color: #a99fc5 !important;
}
.cid-tZw5iTC51G .text-white:hover {
  color: #ffffff !important;
}
.cid-tZw5iTC51G .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZw5iTC51G .foot-menu li {
  padding: 10px;
}
.cid-tZw5iTC51G .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tZw5iTC51G .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tZw5iTC51G .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tZw5iTC51G .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tZw5iTC51G .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tZw5iTC51G .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tZw5iTC51G .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tZw5iTC51G .social-list a:hover {
  opacity: 1;
}
.cid-tZw5iTC51G .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tZw5iTC51G .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tZw5iTC51G .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tZw8VtpW0u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZw8VtpW0u nav.navbar {
  position: fixed;
}
.cid-tZw8VtpW0u .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-tZw8VtpW0u .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-tZw8VtpW0u .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-tZw8VtpW0u .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-tZw8VtpW0u .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-tZw8VtpW0u .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-tZw8VtpW0u .dropdown-item:hover,
.cid-tZw8VtpW0u .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-tZw8VtpW0u .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-tZw8VtpW0u .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-tZw8VtpW0u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-tZw8VtpW0u .nav-link {
  position: relative;
  line-height: 1;
}
.cid-tZw8VtpW0u .nav-link:hover {
  color: #1732a4 !important;
}
.cid-tZw8VtpW0u .container {
  display: flex;
  margin: auto;
}
.cid-tZw8VtpW0u .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-tZw8VtpW0u .dropdown-menu,
.cid-tZw8VtpW0u .navbar.opened {
  background: #000000 !important;
}
.cid-tZw8VtpW0u .nav-item:focus,
.cid-tZw8VtpW0u .nav-link:focus {
  outline: none;
}
.cid-tZw8VtpW0u .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-tZw8VtpW0u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZw8VtpW0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZw8VtpW0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZw8VtpW0u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZw8VtpW0u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZw8VtpW0u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-tZw8VtpW0u .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-tZw8VtpW0u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZw8VtpW0u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZw8VtpW0u .navbar.opened {
  transition: all 0.3s;
}
.cid-tZw8VtpW0u .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-tZw8VtpW0u .navbar .navbar-logo img {
  width: auto;
}
.cid-tZw8VtpW0u .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tZw8VtpW0u .navbar.collapsed {
  justify-content: center;
}
.cid-tZw8VtpW0u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZw8VtpW0u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZw8VtpW0u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tZw8VtpW0u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZw8VtpW0u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZw8VtpW0u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-tZw8VtpW0u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZw8VtpW0u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tZw8VtpW0u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZw8VtpW0u .navbar .dropdown-menu {
    display: none;
  }
  .cid-tZw8VtpW0u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZw8VtpW0u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZw8VtpW0u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-tZw8VtpW0u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZw8VtpW0u .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-tZw8VtpW0u .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-tZw8VtpW0u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZw8VtpW0u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZw8VtpW0u .navbar .navbar-buttons,
  .cid-tZw8VtpW0u .navbar .icons-menu {
    display: none;
  }
  .cid-tZw8VtpW0u .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-tZw8VtpW0u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZw8VtpW0u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZw8VtpW0u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZw8VtpW0u .dropdown-item.active,
.cid-tZw8VtpW0u .dropdown-item:active {
  background-color: transparent;
}
.cid-tZw8VtpW0u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZw8VtpW0u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tZw8VtpW0u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZw8VtpW0u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZw8VtpW0u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZw8VtpW0u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZw8VtpW0u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tZw8VtpW0u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZw8VtpW0u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZw8VtpW0u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZw8VtpW0u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZw8VtpW0u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZw8VtpW0u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZw8VtpW0u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZw8VtpW0u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZw8VtpW0u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZw8VtpW0u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZw8VtpW0u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZw8VtpW0u .navbar {
    height: 70px;
  }
  .cid-tZw8VtpW0u .navbar.opened {
    height: auto;
  }
  .cid-tZw8VtpW0u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZw9pr5516 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZw9pr5516 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZw9pr5516 .card-title {
  margin-bottom: 26px;
  color: #4154f1;
}
.cid-tZw9pr5516 .mbr-text {
  margin-bottom: 30px;
}
.cid-tZw9pr5516 .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(23, 50, 164, 0.4);
  background-image: linear-gradient(125deg, #1732a4 0%, #3d5de4 100%);
}
.cid-tZw9pr5516 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tZw9pr5516 .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tZw9pr5516 .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tZw9pr5516 .btn_link:hover {
  cursor: pointer;
}
.cid-tZw9pr5516 .btn_link:hover a {
  color: #1732a4 !important;
}
.cid-tZw9pr5516 .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tZw9pr5516 .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZw9pr5516 .text-wrapper {
    text-align: center;
  }
  .cid-tZw9pr5516 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tZw9pr5516 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tZw9pr5516 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tZw9pr5516 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZw9pr5516 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZw8VvTQtN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tZw8VvTQtN .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tZw8VvTQtN .text-white {
  color: #a99fc5 !important;
}
.cid-tZw8VvTQtN .text-white:hover {
  color: #ffffff !important;
}
.cid-tZw8VvTQtN .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZw8VvTQtN .foot-menu li {
  padding: 10px;
}
.cid-tZw8VvTQtN .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tZw8VvTQtN .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tZw8VvTQtN .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tZw8VvTQtN .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tZw8VvTQtN .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tZw8VvTQtN .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tZw8VvTQtN .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tZw8VvTQtN .social-list a:hover {
  opacity: 1;
}
.cid-tZw8VvTQtN .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tZw8VvTQtN .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tZw8VvTQtN .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1AP5cDl2x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1AP5cDl2x .mbr-section-subtitle,
.cid-u1AP5cDl2x .item-subtitle,
.cid-u1AP5cDl2x .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-u1AP5cDl2x .main_title {
    padding-right: 1rem;
  }
}
.cid-u1AP5cDl2x .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-u1AP5cDl2x .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-u1AP5cDl2x .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-u1AP5cDl2x .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-u1AP5cDl2x .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-u1AP5cDl2x .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #4154f1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-u1AP5cDl2x .card_wrapper:hover .item-title a {
  color: #4154f1 !important;
}
.cid-u1AP5cDl2x .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u1AP5cDl2x .mbr-section-btn .btn-secondary-outline:hover,
.cid-u1AP5cDl2x .mbr-section-btn .btn-secondary-outline .active,
.cid-u1AP5cDl2x .mbr-section-btn .btn-secondary-outline:focus {
  color: #1732a4 !important;
}
@media (max-width: 991px) {
  .cid-u1AP5cDl2x .main_title {
    margin-bottom: 50px;
  }
  .cid-u1AP5cDl2x .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-u1AP5cDl2x .card_wrapper {
    padding-left: 20px;
  }
  .cid-u1AP5cDl2x .card_item {
    margin-bottom: 30px;
  }
}
.cid-u1AP5cDl2x .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1AP5cDl2x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1AP5cDl2x .item-title {
  color: #301cab;
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-u1AZjKxSNJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1AZjKxSNJ nav.navbar {
  position: fixed;
}
.cid-u1AZjKxSNJ .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-u1AZjKxSNJ .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-u1AZjKxSNJ .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-u1AZjKxSNJ .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-u1AZjKxSNJ .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-u1AZjKxSNJ .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-u1AZjKxSNJ .dropdown-item:hover,
.cid-u1AZjKxSNJ .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-u1AZjKxSNJ .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-u1AZjKxSNJ .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-u1AZjKxSNJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-u1AZjKxSNJ .nav-link {
  position: relative;
  line-height: 1;
}
.cid-u1AZjKxSNJ .nav-link:hover {
  color: #1732a4 !important;
}
.cid-u1AZjKxSNJ .container {
  display: flex;
  margin: auto;
}
.cid-u1AZjKxSNJ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-u1AZjKxSNJ .dropdown-menu,
.cid-u1AZjKxSNJ .navbar.opened {
  background: #000000 !important;
}
.cid-u1AZjKxSNJ .nav-item:focus,
.cid-u1AZjKxSNJ .nav-link:focus {
  outline: none;
}
.cid-u1AZjKxSNJ .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-u1AZjKxSNJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1AZjKxSNJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1AZjKxSNJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1AZjKxSNJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1AZjKxSNJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1AZjKxSNJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-u1AZjKxSNJ .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-u1AZjKxSNJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1AZjKxSNJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1AZjKxSNJ .navbar.opened {
  transition: all 0.3s;
}
.cid-u1AZjKxSNJ .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-u1AZjKxSNJ .navbar .navbar-logo img {
  width: auto;
}
.cid-u1AZjKxSNJ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-u1AZjKxSNJ .navbar.collapsed {
  justify-content: center;
}
.cid-u1AZjKxSNJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1AZjKxSNJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1AZjKxSNJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u1AZjKxSNJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1AZjKxSNJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1AZjKxSNJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-u1AZjKxSNJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1AZjKxSNJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u1AZjKxSNJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1AZjKxSNJ .navbar .dropdown-menu {
    display: none;
  }
  .cid-u1AZjKxSNJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1AZjKxSNJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1AZjKxSNJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-u1AZjKxSNJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1AZjKxSNJ .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-u1AZjKxSNJ .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-u1AZjKxSNJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1AZjKxSNJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1AZjKxSNJ .navbar .navbar-buttons,
  .cid-u1AZjKxSNJ .navbar .icons-menu {
    display: none;
  }
  .cid-u1AZjKxSNJ .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-u1AZjKxSNJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u1AZjKxSNJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1AZjKxSNJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1AZjKxSNJ .dropdown-item.active,
.cid-u1AZjKxSNJ .dropdown-item:active {
  background-color: transparent;
}
.cid-u1AZjKxSNJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1AZjKxSNJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u1AZjKxSNJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1AZjKxSNJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1AZjKxSNJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1AZjKxSNJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1AZjKxSNJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1AZjKxSNJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1AZjKxSNJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1AZjKxSNJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1AZjKxSNJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1AZjKxSNJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1AZjKxSNJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1AZjKxSNJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1AZjKxSNJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1AZjKxSNJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1AZjKxSNJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u1AZjKxSNJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u1AZjKxSNJ .navbar {
    height: 70px;
  }
  .cid-u1AZjKxSNJ .navbar.opened {
    height: auto;
  }
  .cid-u1AZjKxSNJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1AZjJvS6j {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1AZjJvS6j .image-wrapper img {
  width: 90%;
  object-fit: cover;
}
.cid-u1AZjJvS6j .card-title {
  margin-bottom: 26px;
  color: #4154f1;
}
.cid-u1AZjJvS6j .mbr-text {
  margin-bottom: 30px;
}
.cid-u1AZjJvS6j .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-u1AZjJvS6j .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-u1AZjJvS6j .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-u1AZjJvS6j .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-u1AZjJvS6j .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-u1AZjJvS6j .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-u1AZjJvS6j .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u1AZjJvS6j .text-wrapper {
    text-align: center;
  }
  .cid-u1AZjJvS6j .image-wrapper {
    margin-bottom: 20px;
  }
  .cid-u1AZjJvS6j .mbr-text {
    margin-bottom: 10px;
  }
  .cid-u1AZjJvS6j .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u1AZjJvS6j .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1AZjJvS6j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1AZjL8VyY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u1AZjL8VyY .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-u1AZjL8VyY .text-white {
  color: #a99fc5 !important;
}
.cid-u1AZjL8VyY .text-white:hover {
  color: #ffffff !important;
}
.cid-u1AZjL8VyY .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1AZjL8VyY .foot-menu li {
  padding: 10px;
}
.cid-u1AZjL8VyY .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-u1AZjL8VyY .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-u1AZjL8VyY .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-u1AZjL8VyY .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u1AZjL8VyY .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-u1AZjL8VyY .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-u1AZjL8VyY .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-u1AZjL8VyY .social-list a:hover {
  opacity: 1;
}
.cid-u1AZjL8VyY .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u1AZjL8VyY .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-u1AZjL8VyY .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-skcLuebpkE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-skcLuebpkE nav.navbar {
  position: fixed;
}
.cid-skcLuebpkE .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-skcLuebpkE .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-skcLuebpkE .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-skcLuebpkE .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-skcLuebpkE .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-skcLuebpkE .dropdown-item:hover,
.cid-skcLuebpkE .dropdown-item:focus {
  background: rgba(23, 50, 164, 0.1) !important;
  color: #1732a4 !important;
}
.cid-skcLuebpkE .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-skcLuebpkE .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-skcLuebpkE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-skcLuebpkE .nav-link {
  position: relative;
  line-height: 1;
}
.cid-skcLuebpkE .nav-link:hover {
  color: #1732a4 !important;
}
.cid-skcLuebpkE .container {
  display: flex;
  margin: auto;
}
.cid-skcLuebpkE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-skcLuebpkE .dropdown-menu,
.cid-skcLuebpkE .navbar.opened {
  background: #000000 !important;
}
.cid-skcLuebpkE .nav-item:focus,
.cid-skcLuebpkE .nav-link:focus {
  outline: none;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-skcLuebpkE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-skcLuebpkE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-skcLuebpkE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-skcLuebpkE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-skcLuebpkE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-skcLuebpkE .navbar.opened {
  transition: all 0.3s;
}
.cid-skcLuebpkE .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-skcLuebpkE .navbar .navbar-logo img {
  width: auto;
}
.cid-skcLuebpkE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-skcLuebpkE .navbar.collapsed {
  justify-content: center;
}
.cid-skcLuebpkE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-skcLuebpkE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skcLuebpkE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-skcLuebpkE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skcLuebpkE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-skcLuebpkE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-skcLuebpkE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-skcLuebpkE .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-skcLuebpkE .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-skcLuebpkE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-skcLuebpkE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-skcLuebpkE .navbar .navbar-buttons,
  .cid-skcLuebpkE .navbar .icons-menu {
    display: none;
  }
  .cid-skcLuebpkE .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-skcLuebpkE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skcLuebpkE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skcLuebpkE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skcLuebpkE .dropdown-item.active,
.cid-skcLuebpkE .dropdown-item:active {
  background-color: transparent;
}
.cid-skcLuebpkE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-skcLuebpkE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-skcLuebpkE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-skcLuebpkE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-skcLuebpkE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skcLuebpkE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skcLuebpkE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skcLuebpkE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-skcLuebpkE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-skcLuebpkE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-skcLuebpkE .navbar {
    height: 70px;
  }
  .cid-skcLuebpkE .navbar.opened {
    height: auto;
  }
  .cid-skcLuebpkE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1ASsF1C5f {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u1ASsF1C5f .image-wrapper img {
  width: 90%;
  object-fit: cover;
}
.cid-u1ASsF1C5f .card-title {
  margin-bottom: 26px;
  color: #4154f1;
}
.cid-u1ASsF1C5f .mbr-text {
  margin-bottom: 30px;
}
.cid-u1ASsF1C5f .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-u1ASsF1C5f .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-u1ASsF1C5f .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-u1ASsF1C5f .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-u1ASsF1C5f .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-u1ASsF1C5f .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-u1ASsF1C5f .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u1ASsF1C5f .text-wrapper {
    text-align: center;
  }
  .cid-u1ASsF1C5f .image-wrapper {
    margin-bottom: 20px;
  }
  .cid-u1ASsF1C5f .mbr-text {
    margin-bottom: 10px;
  }
  .cid-u1ASsF1C5f .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u1ASsF1C5f .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1ASsF1C5f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-skd2oVCawz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-skd2oVCawz .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-skd2oVCawz .text-white {
  color: #a99fc5 !important;
}
.cid-skd2oVCawz .text-white:hover {
  color: #ffffff !important;
}
.cid-skd2oVCawz .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-skd2oVCawz .foot-menu li {
  padding: 10px;
}
.cid-skd2oVCawz .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-skd2oVCawz .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-skd2oVCawz .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-skd2oVCawz .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-skd2oVCawz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-skd2oVCawz .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-skd2oVCawz .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-skd2oVCawz .social-list a:hover {
  opacity: 1;
}
.cid-skd2oVCawz .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-skd2oVCawz .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-skd2oVCawz .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
