body {
  font-family: Jost;
}

.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}

.display-1>.mbr-iconfont {
  font-size: 5.75rem;
}

.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}

.display-2>.mbr-iconfont {
  font-size: 3.75rem;
}

.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.display-4>.mbr-iconfont {
  font-size: 1.375rem;
}

.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}

.display-5>.mbr-iconfont {
  font-size: 2.125rem;
}

.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.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: 3.68rem;
  }
}

@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc(2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-2 {
    font-size: 2.4rem;
    font-size: calc(1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-4 {
    font-size: 0.88rem;
    font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-5 {
    font-size: 1.36rem;
    font-size: calc(1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.245rem + (1.7 - 1.245) * ((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: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}

.bg-primary {
  background-color: #6b3e90 !important;
}

.bg-success {
  background-color: #40b0bf !important;
}

.bg-info {
  background-color: #47b5ed !important;
}

.bg-warning {
  background-color: #ec9ed3 !important;
}

.bg-danger {
  background-color: #a61978 !important;
}

.btn-primary,
.btn-primary:active {
  background-color: #6b3e90 !important;
  border-color: #6b3e90 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #3e2453 !important;
  border-color: #3e2453 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3e2453 !important;
  border-color: #3e2453 !important;
}

.btn-secondary,
.btn-secondary:active {
  background-color: #6b3e90 !important;
  border-color: #6b3e90 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #3e2453 !important;
  border-color: #3e2453 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3e2453 !important;
  border-color: #3e2453 !important;
}

.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}

.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}

.btn-warning,
.btn-warning:active {
  background-color: #ec9ed3 !important;
  border-color: #ec9ed3 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #de56b2 !important;
  border-color: #de56b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #de56b2 !important;
  border-color: #de56b2 !important;
}

.btn-danger,
.btn-danger:active {
  background-color: #a61978 !important;
  border-color: #a61978 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #5b0e42 !important;
  border-color: #5b0e42 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5b0e42 !important;
  border-color: #5b0e42 !important;
}

.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}

.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}

.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b3e90;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3e2453 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6b3e90 !important;
  border-color: #6b3e90 !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b3e90;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3e2453 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6b3e90 !important;
  border-color: #6b3e90 !important;
}

.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}

.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}

.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ec9ed3;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #de56b2 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ec9ed3 !important;
  border-color: #ec9ed3 !important;
}

.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a61978;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #5b0e42 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a61978 !important;
  border-color: #a61978 !important;
}

.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}

.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}

.text-primary {
  color: #6b3e90 !important;
}

.text-secondary {
  color: #6b3e90 !important;
}

.text-success {
  color: #40b0bf !important;
}

.text-info {
  color: #47b5ed !important;
}

.text-warning {
  color: #ec9ed3 !important;
}

.text-danger {
  color: #a61978 !important;
}

.text-white {
  color: #fafafa !important;
}

.text-black {
  color: #232323 !important;
}

a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #361f49 !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #361f49 !important;
}

a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}

a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}

a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #db49ac !important;
}

a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4d0c38 !important;
}

a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}

a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}

.nav-tabs .nav-link.active {
  color: #6b3e90;
}

.nav-tabs .nav-link:not(.active) {
  color: #232323;
}

.alert-success {
  background-color: #70c770;
}

.alert-info {
  background-color: #47b5ed;
}

.alert-warning {
  background-color: #ec9ed3;
}

.alert-danger {
  background-color: #a61978;
}

.mbr-gallery-filter li.active .btn {
  background-color: #6b3e90;
  border-color: #6b3e90;
  color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}

a,
a:hover {
  color: #6b3e90;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #aa84ca;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e659b8;
}

/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}

.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}

.form-control>.mbr-iconfont {
  font-size: 1.375rem;
}

.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6b3e90 !important;
}

.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}

.form-control:-webkit-input-placeholder>.mbr-iconfont {
  font-size: 1.375rem;
}

blockquote {
  border-color: #6b3e90;
}

/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6b3e90;
  color: #ffffff;
}

.jq-number__spin {
  transition: 0.25s ease;
}

.jq-number__spin:hover {
  border-color: #6b3e90;
}

.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: #6b3e90;
  border-bottom-color: #6b3e90;
}

.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: #6b3e90 !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: #6b3e90 !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='%236b3e90' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
  opacity: 0.5;
}

body {
  overflow-x: hidden;
}

a {
  transition: color 0.6s;
}

.cid-tjhEU342qb {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}

.cid-tjhEU342qb .nav-item,
.cid-tjhEU342qb .nav-link,
.cid-tjhEU342qb .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}

.cid-tjhEU342qb .nav-item:hover,
.cid-tjhEU342qb .nav-link:hover,
.cid-tjhEU342qb .navbar-caption:hover {
  color: #a61978 !important;
}

.cid-tjhEU342qb .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 575px),
(min-width: 991px) {
  .cid-tjhEU342qb .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}

.cid-tjhEU342qb .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}

.cid-tjhEU342qb .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.cid-tjhEU342qb .container-fluid,
.cid-tjhEU342qb .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}

.cid-tjhEU342qb .navbar-brand {
  padding: 0;
}

.cid-tjhEU342qb .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}

.cid-tjhEU342qb .nav-link:hover:before {
  width: 100%;
}

.cid-tjhEU342qb .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}

@media (max-width: 991px) {
  .cid-tjhEU342qb .nav-link {
    margin: 0 !important;
  }
}

.cid-tjhEU342qb .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cid-tjhEU342qb .widget p,
.cid-tjhEU342qb .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}

.cid-tjhEU342qb .widget p a,
.cid-tjhEU342qb .widget .icons-menu a {
  margin-left: 15px;
}

.cid-tjhEU342qb .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(100, 105, 122, 0.8);
  font-size: 17px;
  color: rgba(100, 105, 122, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}

.cid-tjhEU342qb .icons__wrap:hover {
  color: #ffffff;
  background-color: #a61978;
  border-color: #a61978;
}

.cid-tjhEU342qb .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}

@media (max-width: 1200px) {

  .cid-tjhEU342qb .block__phone,
  .cid-tjhEU342qb .icons-menu {
    display: none;
  }

  .cid-tjhEU342qb .navbar .navbar-collapse {
    align-items: center !important;
  }
}

.cid-tjhEU342qb .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #a61978 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}

.cid-tjhEU342qb .mbr-section-btn .btn-secondary:hover {
  background-color: #a61978 !important;
  color: #ffffff !important;
}

.cid-tjhEU342qb .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}

.cid-tjhEU342qb .navbar>.container,
.cid-tjhEU342qb .navbar>.container-fluid {
  align-items: center;
}

@media (min-width: 992px) {
  .cid-tjhEU342qb .btn {
    white-space: nowrap;
  }

  .cid-tjhEU342qb .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #e9e9e9;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }

  .cid-tjhEU342qb .nav-item:hover .nav-link+.dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }

  .is-builder .cid-tjhEU342qb .nav-item:hover .nav-link+.dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }

  .cid-tjhEU342qb .dropdown-toggle::after,
  .cid-tjhEU342qb .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }

  .cid-tjhEU342qb .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}

.cid-tjhEU342qb .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}

.cid-tjhEU342qb .dropdown-menu .dropdown-item:hover {
  color: #a61978 !important;
}

.cid-tjhEU342qb .dropdown.open .dropdown-toggle[aria-expanded="true"]+.dropdown-submenu {
  visibility: visible;
}

.cid-tjhEU342qb .navbar .dropdown.open>.dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}

.cid-tjhEU342qb .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}

.cid-tjhEU342qb .nav-item:focus,
.cid-tjhEU342qb .nav-link:focus {
  outline: none;
}

.cid-tjhEU342qb .dropdown-menu .dropdown:hover>.dropdown-item {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

.cid-tjhEU342qb .dropdown-menu .dropdown>.dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.cid-tjhEU342qb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}

.cid-tjhEU342qb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tjhEU342qb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}

.cid-tjhEU342qb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-tjhEU342qb .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}

.cid-tjhEU342qb ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-tjhEU342qb .navbar {
  min-height: 50px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}

.cid-tjhEU342qb .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}

.cid-tjhEU342qb .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.cid-tjhEU342qb .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}

.cid-tjhEU342qb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-tjhEU342qb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-tjhEU342qb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 80px - 1rem);
  }
}

.cid-tjhEU342qb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}

.cid-tjhEU342qb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-tjhEU342qb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .cid-tjhEU342qb .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tjhEU342qb .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-tjhEU342qb .navbar .dropdown-menu {
    background: #ffffff !important;
  }

  .cid-tjhEU342qb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-tjhEU342qb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }

  .cid-tjhEU342qb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}

.cid-tjhEU342qb .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}

.cid-tjhEU342qb .navbar.navbar-short .nav-dropdown {
  height: 70px;
}

.cid-tjhEU342qb .navbar.navbar-short .navbar-brand {
  padding: 0;
}

.cid-tjhEU342qb .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}

.cid-tjhEU342qb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}

.cid-tjhEU342qb .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-tjhEU342qb .dropdown-item.active,
.cid-tjhEU342qb .dropdown-item:active {
  background-color: transparent;
}

.cid-tjhEU342qb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}

.cid-tjhEU342qb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}

.cid-tjhEU342qb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-tjhEU342qb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #6b3e90;
}

.cid-tjhEU342qb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-tjhEU342qb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tjhEU342qb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tjhEU342qb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-tjhEU342qb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tjhEU342qb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-tjhEU342qb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-tjhEU342qb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tjhEU342qb .navbar-dropdown {
  position: absolute;
  position: fixed;
}

.cid-tjhEU342qb a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.cid-tjhEU342qb a.nav-link:hover {
  color: #a61978 !important;
}

@media (max-width: 991px) {
  .cid-tjhEU342qb .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }

  .cid-tjhEU342qb .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #e9e9e9;
  }

  .cid-tjhEU342qb .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }

  .cid-tjhEU342qb .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }

  .cid-tjhEU342qb .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }

  .cid-tjhEU342qb .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }

  .cid-tjhEU342qb .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }

  .cid-tjhEU342qb .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }

  .cid-tjhEU342qb .dropdown-menu .dropdown:hover>.dropdown-item {
    border: none;
  }

  .cid-tjhEU342qb .dropdown-menu .dropdown>.dropdown-item {
    border: none;
  }

  .cid-tjhEU342qb a.nav-link {
    justify-content: flex-start;
  }

  .cid-tjhEU342qb ul.navbar-nav {
    padding: 0;
    margin: 0;
  }

  .cid-tjhEU342qb .navbar-brand {
    padding: 0;
  }

  .cid-tjhEU342qb .block__phone,
  .cid-tjhEU342qb .icons-menu {
    display: block;
    padding-bottom: 10px;
  }

  .cid-tjhEU342qb .widget {
    flex-direction: column;
  }

  .cid-tjhEU342qb .widget p,
  .cid-tjhEU342qb .widget .icons-menu {
    margin-right: 0;
  }
}

.is-builder .cid-tjhEU342qb .dropdown.open>.dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .cid-tjhEU342qb .navbar {
    height: 97px;
  }

  .cid-tjhEU342qb .navbar.opened {
    height: auto;
  }

  .cid-tjhEU342qb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-tI0zRrcxMa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}

.cid-tI0zRrcxMa .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}

.cid-tI0zRrcxMa .modal-body .close {
  background: #1b1b1b;
}

.cid-tI0zRrcxMa .modal-body .close span {
  font-style: normal;
}

.cid-tI0zRrcxMa .carousel-inner>.active,
.cid-tI0zRrcxMa .carousel-inner>.next,
.cid-tI0zRrcxMa .carousel-inner>.prev {
  display: flex;
}

.cid-tI0zRrcxMa .carousel-control .icon-next,
.cid-tI0zRrcxMa .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}

.cid-tI0zRrcxMa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  .cid-tI0zRrcxMa .container .carousel-control {
    margin-bottom: 0;
  }

  .cid-tI0zRrcxMa .content-slider-wrap {
    width: 100% !important;
  }
}

.cid-tI0zRrcxMa .boxed-slider {
  position: relative;
  padding: 93px 0;
}

.cid-tI0zRrcxMa .boxed-slider>div {
  position: relative;
}

.cid-tI0zRrcxMa .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -170px;
  /* object-fit: cover;
  object-position: -100px;*/
}

.cid-tI0zRrcxMa .container img+.row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.cid-tI0zRrcxMa .mbr-section {
  padding: 0;
  background-attachment: scroll;
}

.cid-tI0zRrcxMa .mbr-table-cell {
  padding: 0;
}

.cid-tI0zRrcxMa .container .carousel-indicators {
  margin-bottom: 3px;
}

.cid-tI0zRrcxMa .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cid-tI0zRrcxMa .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}

.cid-tI0zRrcxMa .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

@media (max-width: 576px) {
  .cid-tI0zRrcxMa .carousel-item .container {
    width: 100%;
  }


  .slider2Text {
    margin-top: 169px;
  }
}

.cid-tI0zRrcxMa .carousel-item-next.carousel-item-left,
.cid-tI0zRrcxMa .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cid-tI0zRrcxMa .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}

.cid-tI0zRrcxMa .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}

.cid-tI0zRrcxMa .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}

.cid-tI0zRrcxMa .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .cid-tI0zRrcxMa .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}

.cid-tI0zRrcxMa .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}

.cid-tI0zRrcxMa .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}

.cid-tI0zRrcxMa .mbr-slider .carousel-indicators li.active,
.cid-tI0zRrcxMa .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}

.cid-tI0zRrcxMa .mbr-slider .carousel-indicators li::after,
.cid-tI0zRrcxMa .mbr-slider .carousel-indicators li::before {
  content: none;
}

.cid-tI0zRrcxMa .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}

@media (max-width: 576px) {
  .cid-tI0zRrcxMa .mbr-slider .carousel-indicators {
    display: none !important;
  }
}

.cid-tI0zRrcxMa .mbr-slider>.container img {
  width: 100%;
}

.cid-tI0zRrcxMa .mbr-slider>.container img+.row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cid-tI0zRrcxMa .mbr-slider>.container .carousel-indicators {
  margin-bottom: 3px;
}

@media (max-width: 576px) {
  .cid-tI0zRrcxMa .mbr-slider>.container .carousel-control {
    margin-bottom: 0;
  }

}

@media (max-width: 976px) {

  .cid-tI0zRrcxMa .image_wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    height: 350px !important;
    min-height: 350px !important;
    overflow: hidden;
  }

  .lead {
    display: none;
  }
}

.cid-tI0zRrcxMa .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}

.cid-tI0zRrcxMa .mbr-slider .mbr-table-cell {
  padding: 0;
}

.cid-tI0zRrcxMa .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}

.cid-tI0zRrcxMa .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.cid-tI0zRrcxMa .full-screen .slider-fullscreen-image.active {
  display: flex;
}

.cid-tI0zRrcxMa .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}

.cid-tI0zRrcxMa .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.cid-tI0zRrcxMa .full-screen .carousel-item .container.container-slide img {
  display: none;
}

.cid-tI0zRrcxMa .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cid-tI0zRrcxMa .mbr-overlay~.container-slide {
  z-index: auto;
}

.cid-tI0zRrcxMa .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}

.cid-tI0zRrcxMa .carousel-inner {
  height: 100%;
}

.cid-tI0zRrcxMa .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}

.cid-tI0zRrcxMa .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}

.cid-tI0zRrcxMa .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}

.cid-tI0zRrcxMa .content-slider-wrap {
  width: 100%;
}

.cid-tI0zRrcxMa H2 {
  color: #c6f0f1;
}

.cid-tjXXZ3BF41 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #8c29cc;
}

.cid-tjXXZ3BF41 .mbr-fallback-image.disabled {
  display: none;
}

.cid-tjXXZ3BF41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tjXXZ3BF41 .mbr-section-title {
  color: #ffffff;
}

.cid-tjXPxQ3Fxs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #8c29cc;
}

.cid-tjXPxQ3Fxs .container,
.cid-tjXPxQ3Fxs .container-fluid {
  pointer-events: none;
}

.cid-tjXPxQ3Fxs .title__block,
.cid-tjXPxQ3Fxs .wrap,
.cid-tjXPxQ3Fxs .mbr-arrow,
.cid-tjXPxQ3Fxs .mbr-section-btn {
  pointer-events: all;
}

.cid-tjXPxQ3Fxs .mbr-section-title {
  color: #6b3e90;
}

.cid-tjXPxQ3Fxs .title__block {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .cid-tjXPxQ3Fxs .title__block {
    margin-bottom: 25px;
  }
}

.cid-tjXPxQ3Fxs .card__wrap {
  position: relative;
  margin-top: 50px;
  padding: 0 20px;
}

@media (max-width: 575px) {
  .cid-tjXPxQ3Fxs .card__wrap {
    padding: 0;
  }
}

.cid-tjXPxQ3Fxs .image {
  margin: auto;
  max-height: 230px;
  max-width: 250px;
  position: relative;
}

.cid-tjXPxQ3Fxs .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 575px) {
  .cid-tjXPxQ3Fxs .image {
    max-width: none;
    max-height: none;
  }
}

.cid-tjXPxQ3Fxs .card__title {
  margin-top: 45px;
  color: #ffffff;
}

.cid-tjXPxQ3Fxs .card__text {
  margin-top: 30px;
  color: #9fdbf8;
}

.cid-tjXPxQ3Fxs .mbr-section-btn {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .cid-tjXPxQ3Fxs .mbr-section-btn {
    margin-top: 50px;
  }
}

.cid-tjXPxQ3Fxs .mbr-arrow {
  bottom: -30px;
  left: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0px 15px 20px 0px rgba(209, 218, 235, 0.35);
  background: #fff;
  color: #6b3e90;
}

.cid-tjXPxQ3Fxs .mbr-arrow>a {
  color: #6b3e90;
}

.cid-tjXPxQ3Fxs .mbr-arrow>a>i {
  font-size: 20px;
  left: 20px;
  top: 1px;
}

@media (min-width: 992px) {
  .cid-tjXPxQ3Fxs .row .wrap .image:before {
    content: "";
    position: absolute;
    width: 145px;
    height: 1px;
    border-top: 1px dashed #e9e9e9;
    top: 45%;
    right: -140px;
    z-index: -1;
  }

  .cid-tjXPxQ3Fxs .art3:before {
    content: none !important;
  }
}

@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }

  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }

  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }

  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }

  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }

  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }

  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

.cid-tH475OPmCL {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}

@media (min-width: 1400px) {
  .cid-tH475OPmCL .container {
    max-width: 1368px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .cid-tH475OPmCL .container .row {
    margin-left: -24px;
    margin-right: -24px;
  }

  .cid-tH475OPmCL .container .row>[class*="col"] {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.cid-tH475OPmCL .row {
  display: flex;
  align-items: stretch;
}

.cid-tH475OPmCL .mbr-section-head {
  margin-bottom: 50px;
}

.cid-tH475OPmCL .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 20px;
}

.cid-tH475OPmCL .label-text span {
  padding: 8px 18px;
  background-color: #f0e4ff;
  border-radius: 15px;
  color: inherit;
}

.cid-tH475OPmCL .mbr-section-title {
  color: #8c29cc;
  margin-bottom: 0;
}

.cid-tH475OPmCL .colored-text {
  color: #913bff;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 4px;
}

.cid-tH475OPmCL .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 20px;
}

.cid-tH475OPmCL .item:focus,
.cid-tH475OPmCL span:focus {
  outline: none;
}

.cid-tH475OPmCL .item {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.cid-tH475OPmCL .item-wrapper {
  position: relative;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 73, 140, 0.05);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.cid-tH475OPmCL .item-wrapper .item-content a:hover {
  color: #6b3e90 !important;
}

.cid-tH475OPmCL .item-wrapper:hover {
  transform: translateY(-5px);
}

.cid-tH475OPmCL .item-wrapper:hover .item-img {
  overflow: hidden;
}

.cid-tH475OPmCL .item-wrapper:hover .item-img::before {
  transform: scale(1);
}

.cid-tH475OPmCL .item-wrapper:hover .item-img .icon-box {
  transform: scale(1);
}

.cid-tH475OPmCL .item-img {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  height: 318px;
}

@media (max-width: 1399px) {
  .cid-tH475OPmCL .item-img {
    height: 284px;
  }
}

@media (max-width: 1199px) {
  .cid-tH475OPmCL .item-img {
    height: 238px;
  }
}

@media (max-width: 991px) {
  .cid-tH475OPmCL .item-img {
    height: 262px;
  }
}

@media (max-width: 767px) {
  .cid-tH475OPmCL .item-img {
    height: 192px;
  }
}

@media (max-width: 575px) {
  .cid-tH475OPmCL .item-img {
    height: 100%;
    max-height: 426px;
  }
}

.cid-tH475OPmCL .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cid-tH475OPmCL .item-img::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #6b3e90;
  right: -85px;
  bottom: -85px;
  z-index: 1;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.cid-tH475OPmCL .item-img .icon-box {
  position: absolute;
  color: #ffffff;
  font-size: 22px;
  right: 22px;
  bottom: 12px;
  z-index: 2;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.cid-tH475OPmCL .item-content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 32px 20px;
}

@media (max-width: 1199px) {
  .cid-tH475OPmCL .item-content-container {
    padding: 20px 15px;
  }
}

.cid-tH475OPmCL .mbr-section-btn {
  margin-top: 20px;
}

.cid-tH475OPmCL .item-title {
  text-align: left;
  width: 100%;
  color: #a61978;
  margin-bottom: 0;
}

.cid-tH475OPmCL .mbr-text {
  color: #010d4c;
  width: 100%;
  margin: 8px 0;
}

.cid-tH475OPmCL .mbr-text,
.cid-tH475OPmCL .mbr-section-btn {
  color: #353535;
}

.cid-tjk59nB9Z5 {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #6b3e90;
}

.cid-tjk59nB9Z5 p {
  color: #767676;
}

.cid-tjk59nB9Z5 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}

.cid-tjk59nB9Z5 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}

.cid-tjk59nB9Z5 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}

.cid-tjk59nB9Z5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}

.cid-tjk59nB9Z5 .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}

.cid-tjk59nB9Z5 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}

.cid-tjk59nB9Z5 H2 {
  color: #ffffff;
}

.cid-tjk59nB9Z5 H4 {
  color: #ffffff;
}

.cid-tjk59nB9Z5 .panel-text {
  color: #ffffff;
}

.cid-tnhkdxvHoK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}

.cid-tnhkdxvHoK .google-map {
  height: 30rem;
  position: relative;
}

.cid-tnhkdxvHoK .google-map iframe {
  height: 100%;
  width: 100%;
}

.cid-tnhkdxvHoK .google-map [data-state-details] {
  color: #6b6763;
  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-tnhkdxvHoK .google-map[data-state] {
  background: #e9e5dc;
}

.cid-tnhkdxvHoK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}

.cid-tnhkdxvHoK .mbr-section-title {
  color: #6b3e90;
}

.cid-tjjXEaL4o7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #353535;
}

.cid-tjjXEaL4o7 .container {
  pointer-events: none;
}

.cid-tjjXEaL4o7 .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}

.cid-tjjXEaL4o7 .brand__text {
  padding: 12px 0 25px;
}

.cid-tjjXEaL4o7 .brand__email {
  margin-bottom: 15px;
}

.cid-tjjXEaL4o7 .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}

.cid-tjjXEaL4o7 .footer__title {
  padding: 12px 0 25px;
  color: #ffffff;
}

.cid-tjjXEaL4o7 .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}

.cid-tjjXEaL4o7 .footer__items a:hover {
  color: #a61978 !important;
}

.cid-tjjXEaL4o7 .social {
  margin-top: 30px;
}

.cid-tjjXEaL4o7 .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  margin-right: 10px;
  color: #dbdbdb;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}

.cid-tjjXEaL4o7 .social .social__items:hover {
  background-color: #a61978;
  border-color: #a61978;
}

.cid-tjjXEaL4o7 .social .social__items:hover span {
  color: #ffffff !important;
}

.cid-tjjXEaL4o7 .social .social__items:last-child {
  margin-right: 0;
}

.cid-tjjXEaL4o7 .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}

.cid-tjjXEaL4o7 .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}

.cid-tjjXEaL4o7 .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}

.cid-tjjXEaL4o7 .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}

.cid-tjjXEaL4o7 .footer__bot_items a:hover {
  color: #a61978 !important;
}

.cid-tjjXEaL4o7 .footer__bot_items:last-child {
  margin-right: 0;
}

.cid-tjjXEaL4o7 .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}

.cid-tjjXEaL4o7 .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #a61978;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}

.cid-tjjXEaL4o7 .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .cid-tjjXEaL4o7 .divider {
    margin-top: 30px;
  }

  .cid-tjjXEaL4o7 .footer__bottom {
    padding: 30px 0;
  }

  .cid-tjjXEaL4o7 .align-right,
  .cid-tjjXEaL4o7 .privacy {
    text-align: center;
  }

  .cid-tjjXEaL4o7 .footer__bot_items {
    margin: 10px 7px 0;
  }
}

@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.cid-tjjXEaL4o7 .footer__adress {
  color: #ffffff;
}

.cid-tjjXEaL4o7 .privacy {
  color: #ffffff;
}

.cid-tpm57omm7u {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}

.cid-tpm57omm7u .mbr-fallback-image.disabled {
  display: none;
}

.cid-tpm57omm7u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tpm57omm7u .mbr-section-title {
  color: #a61978;
}

.cid-tpm5D8mw8d {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}

.cid-tpm5D8mw8d .mbr-section-title {
  color: #233d63;
  margin-bottom: 25px;
}

.cid-tpm5D8mw8d .icon__block {
  background: linear-gradient(135deg, rgba(191, 108, 255, 0.54) 0%, rgba(191, 108, 255, 0.85) 60%, #bf6cff 100%);
}

.cid-tpm5D8mw8d .mbr-section-title,
.cid-tpm5D8mw8d .icon__wrap {
  text-align: center;
}

.cid-tpm5D8mw8d .mbr-section-subtitle {
  text-align: center;
  color: #353535;
}

.cid-tpm5D8mw8d .icon__wrap {
  width: 100%;
  margin-bottom: 23px;
}

.cid-tpm5D8mw8d .icon__wrap .icon__block {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 10px;
}

.cid-tpm5D8mw8d .icon__wrap .icon__block::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-45deg);
}

.cid-tpm5D8mw8d .icon__wrap .icon__block::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
}

.cid-tpm5D8mw8d .icon__wrap .icon__block .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  position: relative;
  z-index: 10;
}

.cid-tpm57uhyaN {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #353535;
}

.cid-tpm57uhyaN .container {
  pointer-events: none;
}

.cid-tpm57uhyaN .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}

.cid-tpm57uhyaN .brand__text {
  padding: 12px 0 25px;
}

.cid-tpm57uhyaN .brand__email {
  margin-bottom: 15px;
}

.cid-tpm57uhyaN .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}

.cid-tpm57uhyaN .footer__title {
  padding: 12px 0 25px;
  color: #ffffff;
}

.cid-tpm57uhyaN .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}

.cid-tpm57uhyaN .footer__items a:hover {
  color: #a61978 !important;
}

.cid-tpm57uhyaN .social {
  margin-top: 30px;
}

.cid-tpm57uhyaN .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  margin-right: 10px;
  color: #dbdbdb;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}

.cid-tpm57uhyaN .social .social__items:hover {
  background-color: #a61978;
  border-color: #a61978;
}

.cid-tpm57uhyaN .social .social__items:hover span {
  color: #ffffff !important;
}

.cid-tpm57uhyaN .social .social__items:last-child {
  margin-right: 0;
}

.cid-tpm57uhyaN .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}

.cid-tpm57uhyaN .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}

.cid-tpm57uhyaN .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}

.cid-tpm57uhyaN .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}

.cid-tpm57uhyaN .footer__bot_items a:hover {
  color: #a61978 !important;
}

.cid-tpm57uhyaN .footer__bot_items:last-child {
  margin-right: 0;
}

.cid-tpm57uhyaN .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}

.cid-tpm57uhyaN .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #a61978;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}

.cid-tpm57uhyaN .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .cid-tpm57uhyaN .divider {
    margin-top: 30px;
  }

  .cid-tpm57uhyaN .footer__bottom {
    padding: 30px 0;
  }

  .cid-tpm57uhyaN .align-right,
  .cid-tpm57uhyaN .privacy {
    text-align: center;
  }

  .cid-tpm57uhyaN .footer__bot_items {
    margin: 10px 7px 0;
  }
}

@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.cid-tpm57uhyaN .footer__adress {
  color: #ffffff;
}

.cid-tpm57uhyaN .privacy {
  color: #ffffff;
}