@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,600,700,800,900,300i,400i,500i,600i,700i,800i,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Cabin:400,500,600,700,400i,500i,600i,700i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.7rem;
}
.display-7 {
  font-family: 'Cabin', sans-serif;
  font-size: 1.1rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((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))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #613456 !important;
}
.bg-success {
  background-color: #4289a7 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #66458e !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #613456 !important;
  border-color: #613456 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #2f192a !important;
  border-color: #2f192a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2f192a !important;
  border-color: #2f192a !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1f101b;
  color: #1f101b !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #613456;
  border-color: #613456;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #613456 !important;
  border-color: #613456 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #254d5e;
  color: #254d5e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4289a7;
  border-color: #4289a7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #613456 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #4289a7 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #66458e !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1f101b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #254d5e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #352449 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #4289a7;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #66458e;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #613456;
  border-color: #613456;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #613456;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ae679c;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #94c1d5;
}
.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: #a68cc7;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Cabin', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #613456;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #613456;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #613456;
  border-bottom-color: #613456;
}
.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: #613456 !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: #ca4336 !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%;
}
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='%23613456' %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;
}
.cid-tVHXEFTQo3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVHXEFTQo3 nav.navbar {
  position: fixed;
}
.cid-tVHXEFTQo3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVHXEFTQo3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVHXEFTQo3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVHXEFTQo3 .dropdown-item:hover,
.cid-tVHXEFTQo3 .dropdown-item:focus {
  background: #613456 !important;
  color: white !important;
}
.cid-tVHXEFTQo3 .dropdown-item:hover span {
  color: white;
}
.cid-tVHXEFTQo3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVHXEFTQo3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVHXEFTQo3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVHXEFTQo3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVHXEFTQo3 .nav-link {
  position: relative;
}
.cid-tVHXEFTQo3 .container {
  display: flex;
  margin: auto;
}
.cid-tVHXEFTQo3 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVHXEFTQo3 .dropdown-menu,
.cid-tVHXEFTQo3 .navbar.opened {
  background: #ffffff !important;
}
.cid-tVHXEFTQo3 .nav-item:focus,
.cid-tVHXEFTQo3 .nav-link:focus {
  outline: none;
}
.cid-tVHXEFTQo3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVHXEFTQo3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVHXEFTQo3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVHXEFTQo3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVHXEFTQo3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVHXEFTQo3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVHXEFTQo3 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVHXEFTQo3 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tVHXEFTQo3 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tVHXEFTQo3 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-tVHXEFTQo3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tVHXEFTQo3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVHXEFTQo3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tVHXEFTQo3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tVHXEFTQo3 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tVHXEFTQo3 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tVHXEFTQo3 .navbar.collapsed {
  justify-content: center;
}
.cid-tVHXEFTQo3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVHXEFTQo3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVHXEFTQo3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tVHXEFTQo3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVHXEFTQo3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVHXEFTQo3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tVHXEFTQo3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tVHXEFTQo3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVHXEFTQo3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVHXEFTQo3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVHXEFTQo3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVHXEFTQo3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVHXEFTQo3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVHXEFTQo3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tVHXEFTQo3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVHXEFTQo3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVHXEFTQo3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVHXEFTQo3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVHXEFTQo3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVHXEFTQo3 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVHXEFTQo3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVHXEFTQo3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVHXEFTQo3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tVHXEFTQo3 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tVHXEFTQo3 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tVHXEFTQo3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tVHXEFTQo3 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tVHXEFTQo3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tVHXEFTQo3 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tVHXEFTQo3 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tVHXEFTQo3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVHXEFTQo3 .dropdown-item.active,
.cid-tVHXEFTQo3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tVHXEFTQo3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVHXEFTQo3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVHXEFTQo3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVHXEFTQo3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVHXEFTQo3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVHXEFTQo3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVHXEFTQo3 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tVHXEFTQo3 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tVHXEFTQo3 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tVHXEFTQo3 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tVHXEFTQo3 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tVHXEFTQo3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tVHXEFTQo3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tVHXEFTQo3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVHXEFTQo3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tVHXEFTQo3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tVHXEFTQo3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tVHXEFTQo3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVHXEFTQo3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tVHXEFTQo3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tVHXEFTQo3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVHXEFTQo3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVHXEFTQo3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVHXEFTQo3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVHXEFTQo3 .navbar {
    height: 100px;
  }
  .cid-tVHXEFTQo3 .navbar.opened {
    height: auto;
  }
  .cid-tVHXEFTQo3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVHXEFTQo3 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tVHXEFTQo3 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tVHXEFTQo3 .nav-link:before {
  content: '';
  position: absolute;
  color: #613456;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sv2agrAvZP {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sv2agrAvZP .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-sv2agrAvZP .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #613456;
}
.cid-sv2agrAvZP .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #613456;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sv2agrAvZP .mbr-text {
  line-height: 1.54;
  margin-bottom: 50px;
}
.cid-sv2agrAvZP .mbr-section-btn {
  display: inline-block;
}
.cid-sv2agrAvZP .popup_video {
  display: inline-flex;
  align-items: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-left: 30px;
}
.cid-sv2agrAvZP .popup_video:hover {
  cursor: pointer;
}
.cid-sv2agrAvZP .popup_video:hover .popup__text {
  color: #f77d18;
}
.cid-sv2agrAvZP .popup_video:hover .popup__text:after {
  transform: scaleX(1);
}
.cid-sv2agrAvZP .popup_video:hover .popup__text:before {
  transform: scaleX(0);
}
.cid-sv2agrAvZP .popup_video:hover .mbr-media {
  background-color: #f77d18;
}
.cid-sv2agrAvZP .popup_video:hover .mbr-media span {
  color: #ffffff;
}
.cid-sv2agrAvZP .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-sv2agrAvZP .mbr-media span {
  font-size: 17px;
  position: relative;
  display: inline-block;
  margin-left: 4px;
  color: #f77d18;
}
.cid-sv2agrAvZP .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-sv2agrAvZP .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: #f77d18;
}
.cid-sv2agrAvZP .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-sv2agrAvZP .popup__text:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #f77d18;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-sv2agrAvZP .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sv2agrAvZP .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sv2agrAvZP .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-sv2agrAvZP 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-sv2agrAvZP a.close:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sv2agrAvZP .head_block {
    order: 1;
    text-align: center;
  }
  .cid-sv2agrAvZP .image_img {
    margin-bottom: 40px;
  }
  .cid-sv2agrAvZP .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-sv2agrAvZP .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sv2agrAvZP .popup_video {
    margin-left: 0;
    margin-top: 10px;
  }
  .cid-sv2agrAvZP .btn_group {
    flex-direction: column;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(247, 125, 24, 0.08), 0px 0px 0px 5px rgba(247, 125, 24, 0.08), 0px 0px 0px 12px rgba(247, 125, 24, 0.08);
  }
  100% {
    box-shadow: 0px 0px 0px 5px rgba(247, 125, 24, 0.08), 0px 0px 0px 12px rgba(247, 125, 24, 0.08), 0px 0px 0px 18px rgba(247, 125, 24, 0);
  }
}
.cid-sv2agrAvZP .mbr-text,
.cid-sv2agrAvZP .buttons_wrap {
  color: #282727;
}
.cid-qIjMfqP1Ii {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/pa-background-2000x564.jpg");
}
.cid-qIjMfqP1Ii .mbr-section-subtitle {
  color: #767676;
}
.cid-qIjMfqP1Ii .mbr-section-title {
  color: #ffffff;
}
.cid-u4yAtsCygA {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u4yAtsCygA .image_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
}
.cid-u4yAtsCygA .item-img {
  width: 150px;
  margin-bottom: 21px;
  height: 100%;
  display: inline-block;
}
.cid-u4yAtsCygA img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.cid-u4yAtsCygA .item {
  margin-bottom: 70px;
}
.cid-u4yAtsCygA .item-title {
  margin-bottom: 11px;
  color: #202020;
}
.cid-u4yAtsCygA .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-u4yAtsCygA .mbr-text {
  margin-bottom: 18px;
}
.cid-u4yAtsCygA .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-u4yAtsCygA .linkBtn a:after,
.cid-u4yAtsCygA .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-u4yAtsCygA .linkBtn a:before {
  left: 0;
}
.cid-u4yAtsCygA .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-u4yAtsCygA .linkBtn a:hover:before,
.cid-u4yAtsCygA .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-u4yBJnSauM {
  background-image: url("../../../assets/images/vr-jpg-2000x1125.png");
}
.cid-u4yBJnSauM .mbr-overlay {
  background: #879a9f;
}
.cid-u4yBJnSauM .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
}
.cid-u4yBJnSauM .mbr-section-subtitle {
  color: #613456;
}
.cid-u4yBJnSauM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4yBJnSauM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4L8LNH4JS {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u4L8LNH4JS .svg1 {
  position: absolute;
  bottom: 4.6rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.cid-u4L8LNH4JS #e1_circle,
.cid-u4L8LNH4JS #e3_circle,
.cid-u4L8LNH4JS #e4_circle,
.cid-u4L8LNH4JS #e5_circle {
  fill: #ffffff !important;
}
.cid-u4L8LNH4JS #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.cid-u4L8LNH4JS .round {
  border-radius: 100%;
  position: absolute;
  background-color: #ffffff;
  animation: orbit 4s linear infinite;
}
.cid-u4L8LNH4JS .rev {
  animation: rev 4s linear infinite;
}
.cid-u4L8LNH4JS .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.cid-u4L8LNH4JS .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.cid-u4L8LNH4JS .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.cid-u4L8LNH4JS .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.cid-u4L8LNH4JS .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.cid-u4L8LNH4JS .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.cid-u4L8LNH4JS .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.cid-u4L8LNH4JS .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.cid-u4L8LNH4JS .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.cid-u4L8LNH4JS .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.cid-u4L8LNH4JS .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}
.cid-u4L8LNH4JS H1 {
  color: #613456;
}
.cid-u4L8LNH4JS .mbr-text,
.cid-u4L8LNH4JS .mbr-section-btn {
  color: #000000;
}
.cid-u4L8LNH4JS img {
  width: 100%;
  margin: 0 auto;
}
.cid-sv2fw27R1x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sv2fw27R1x .divider {
  max-width: 1440px;
  padding-top: 68px;
  border-top: 1px solid #eef5f4;
}
.cid-sv2fw27R1x .logo__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.cid-sv2fw27R1x .logo__footer img {
  display: block;
  width: 110px;
  object-fit: cover ;
}
.cid-sv2fw27R1x .logo__text {
  display: flex;
  align-items: center;
  padding-top: 5px;
  margin-left: 50px;
}
.cid-sv2fw27R1x .menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-sv2fw27R1x .footer__menu {
  padding-right: 52px;
  padding-bottom: 21px;
}
.cid-sv2fw27R1x .mbr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cid-sv2fw27R1x .item {
  display: flex;
  align-items: center;
  margin-right: 7px;
  margin-bottom: 15px;
}
.cid-sv2fw27R1x .item a {
  font-weight: 600;
}
.cid-sv2fw27R1x .item:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #689bb2;
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
}
.cid-sv2fw27R1x .item:last-child:after {
  display: none;
}
.cid-sv2fw27R1x .footer__social {
  padding-bottom: 21px;
}
.cid-sv2fw27R1x .mbr-iconfont {
  font-size: 33px;
  transition: all .3s ease;
  width: 33px;
  height: 33px;
  color: #613456;
  margin-right: 17px;
  margin-bottom: 10px;
}
.cid-sv2fw27R1x .mbr-iconfont:hover {
  color: #613456;
}
.cid-sv2fw27R1x .footer__copyright {
  padding: 15px 0 12px;
  background-color: #f6f9f8;
}
.cid-sv2fw27R1x .footer__ink {
  text-align: right;
}
.cid-sv2fw27R1x .copyright,
.cid-sv2fw27R1x .ink {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-sv2fw27R1x .footer__menu {
    padding-right: 0;
  }
}
.cid-sv2fw27R1x .copyright {
  color: #000000;
}
.cid-sv2fw27R1x .ink {
  color: #613456;
}
.cid-u4L95q2QW2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u4L95q2QW2 .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-u4L95q2QW2 .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #767676;
}
.cid-u4L95q2QW2 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #613456;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-u4L95q2QW2 .mbr-text {
  line-height: 1.54;
  margin-bottom: 50px;
}
.cid-u4L95q2QW2 .mbr-section-btn {
  display: inline-block;
}
.cid-u4L95q2QW2 .popup_video {
  display: inline-flex;
  align-items: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-u4L95q2QW2 .popup_video:hover {
  cursor: pointer;
}
.cid-u4L95q2QW2 .popup_video:hover .popup__text {
  color: #f77d18;
}
.cid-u4L95q2QW2 .popup_video:hover .popup__text:after {
  transform: scaleX(1);
}
.cid-u4L95q2QW2 .popup_video:hover .popup__text:before {
  transform: scaleX(0);
}
.cid-u4L95q2QW2 .popup_video:hover .mbr-media {
  background-color: #f77d18;
}
.cid-u4L95q2QW2 .popup_video:hover .mbr-media span {
  color: #ffffff;
}
.cid-u4L95q2QW2 .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-u4L95q2QW2 .mbr-media span {
  font-size: 17px;
  position: relative;
  display: inline-block;
  margin-left: 4px;
  color: #f77d18;
}
.cid-u4L95q2QW2 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-u4L95q2QW2 .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: #f77d18;
}
.cid-u4L95q2QW2 .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-u4L95q2QW2 .popup__text:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #f77d18;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-u4L95q2QW2 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u4L95q2QW2 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u4L95q2QW2 .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-u4L95q2QW2 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-u4L95q2QW2 a.close:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u4L95q2QW2 .head_block {
    order: 1;
    text-align: center;
  }
  .cid-u4L95q2QW2 .image_img {
    margin-bottom: 40px;
  }
  .cid-u4L95q2QW2 .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-u4L95q2QW2 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-u4L95q2QW2 .popup_video {
    margin-left: 0;
    margin-top: 10px;
  }
  .cid-u4L95q2QW2 .btn_group {
    flex-direction: column;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(247, 125, 24, 0.08), 0px 0px 0px 5px rgba(247, 125, 24, 0.08), 0px 0px 0px 12px rgba(247, 125, 24, 0.08);
  }
  100% {
    box-shadow: 0px 0px 0px 5px rgba(247, 125, 24, 0.08), 0px 0px 0px 12px rgba(247, 125, 24, 0.08), 0px 0px 0px 18px rgba(247, 125, 24, 0);
  }
}
.cid-u4L95q2QW2 .mbr-text,
.cid-u4L95q2QW2 .buttons_wrap {
  color: #282727;
}
.cid-u4yFBnwJbe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4yFBnwJbe nav.navbar {
  position: fixed;
}
.cid-u4yFBnwJbe .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4yFBnwJbe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4yFBnwJbe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4yFBnwJbe .dropdown-item:hover,
.cid-u4yFBnwJbe .dropdown-item:focus {
  background: #613456 !important;
  color: white !important;
}
.cid-u4yFBnwJbe .dropdown-item:hover span {
  color: white;
}
.cid-u4yFBnwJbe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4yFBnwJbe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4yFBnwJbe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4yFBnwJbe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4yFBnwJbe .nav-link {
  position: relative;
}
.cid-u4yFBnwJbe .container {
  display: flex;
  margin: auto;
}
.cid-u4yFBnwJbe .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4yFBnwJbe .dropdown-menu,
.cid-u4yFBnwJbe .navbar.opened {
  background: #ffffff !important;
}
.cid-u4yFBnwJbe .nav-item:focus,
.cid-u4yFBnwJbe .nav-link:focus {
  outline: none;
}
.cid-u4yFBnwJbe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4yFBnwJbe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4yFBnwJbe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4yFBnwJbe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4yFBnwJbe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4yFBnwJbe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4yFBnwJbe .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4yFBnwJbe .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u4yFBnwJbe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u4yFBnwJbe .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-u4yFBnwJbe .navbar.opened {
  transition: all 0.3s;
}
.cid-u4yFBnwJbe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4yFBnwJbe .navbar .navbar-logo img {
  width: auto;
}
.cid-u4yFBnwJbe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u4yFBnwJbe .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u4yFBnwJbe .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u4yFBnwJbe .navbar.collapsed {
  justify-content: center;
}
.cid-u4yFBnwJbe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4yFBnwJbe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4yFBnwJbe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u4yFBnwJbe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4yFBnwJbe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4yFBnwJbe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4yFBnwJbe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u4yFBnwJbe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4yFBnwJbe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4yFBnwJbe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4yFBnwJbe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4yFBnwJbe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4yFBnwJbe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4yFBnwJbe .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4yFBnwJbe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4yFBnwJbe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4yFBnwJbe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4yFBnwJbe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4yFBnwJbe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4yFBnwJbe .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4yFBnwJbe .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4yFBnwJbe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4yFBnwJbe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u4yFBnwJbe .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u4yFBnwJbe .navbar {
    padding: 0 50px !important;
  }
}
.cid-u4yFBnwJbe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u4yFBnwJbe .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u4yFBnwJbe .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u4yFBnwJbe .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u4yFBnwJbe .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-u4yFBnwJbe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4yFBnwJbe .dropdown-item.active,
.cid-u4yFBnwJbe .dropdown-item:active {
  background-color: transparent;
}
.cid-u4yFBnwJbe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4yFBnwJbe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4yFBnwJbe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4yFBnwJbe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u4yFBnwJbe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4yFBnwJbe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4yFBnwJbe ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u4yFBnwJbe ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u4yFBnwJbe .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u4yFBnwJbe .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u4yFBnwJbe .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u4yFBnwJbe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u4yFBnwJbe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4yFBnwJbe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4yFBnwJbe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4yFBnwJbe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4yFBnwJbe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u4yFBnwJbe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4yFBnwJbe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4yFBnwJbe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4yFBnwJbe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4yFBnwJbe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4yFBnwJbe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4yFBnwJbe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4yFBnwJbe .navbar {
    height: 100px;
  }
  .cid-u4yFBnwJbe .navbar.opened {
    height: auto;
  }
  .cid-u4yFBnwJbe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4yFBnwJbe .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u4yFBnwJbe .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4yFBnwJbe .nav-link:before {
  content: '';
  position: absolute;
  color: #613456;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4yHfswwix {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4yHfswwix .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u4yHfswwix .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yHfswwix .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-u4yHfswwix .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yHfswwix .col-text {
    padding-right: 4.625rem;
  }
}
.cid-u4yHfswwix .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4yHfswwix .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-u4yHfswwix .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-u4yHfswwix .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-u4yHfswwix .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-left: 5rem;
  border-left: 1px solid #d4c5c0;
}
@media (max-width: 767px) {
  .cid-u4yHfswwix .cards-container {
    padding-left: 2rem;
  }
}
.cid-u4yHfswwix .card-text-container {
  flex-grow: 1;
}
.cid-u4yHfswwix .mbr-section-subtitle {
  color: #002549;
  width: 100%;
}
.cid-u4yHfswwix .card-text {
  color: #000000;
  width: 100%;
}
.cid-u4yHfswwix .icon-box {
  margin-top: 0.35rem;
  margin-right: 1rem;
  transform: rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-u4yHfswwix .icon-box span {
  color: #9c88bc;
}
.cid-u4yHfswwix .card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.cid-u4yHfswwix .card:hover .icon-box {
  margin-top: 0;
  margin-bottom: 0.35rem;
  transform: rotateZ(0);
}
.cid-u4yHfswwix .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4yHfswwix .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4yHfswwix .mbr-section-title,
.cid-u4yHfswwix .mbr-section-btn {
  color: #613456;
}
.cid-u4yJcIkORH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e8def8;
}
.cid-u4yJcIkORH .mbr-iconfont {
  color: #66458e;
}
.cid-u4yJcIkORH .mbr-iconfont:hover {
  color: #613456 !important;
}
.cid-u4yJcIkORH .mbr-text {
  margin: 1.5rem 0;
}
.cid-u4yJcIkORH .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-u4yJcIkORH .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-u4yJcIkORH .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-u4yJcIkORH .mbr-section-subtitle,
.cid-u4yJcIkORH .mbr-text,
.cid-u4yJcIkORH .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-u4yJcIkORH .mbr-section-title {
  color: #66458e;
}
.cid-u4yJcIkORH .mbr-section-subtitle {
  color: #59585d;
}
.cid-u4yJcIkORH .mbr-text,
.cid-u4yJcIkORH .social-links .mbr-iconfont {
  color: #465052;
}
.cid-u4Lba5ByBI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/pa-background-2000x564.jpg");
}
.cid-u4Lba5ByBI .mbr-section-subtitle {
  color: #767676;
}
.cid-u4Lba5ByBI .mbr-section-title {
  color: #ffffff;
}
.cid-u4LaROBB9y {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8def8;
}
.cid-u4LaROBB9y .image_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
}
.cid-u4LaROBB9y .item-img {
  width: 150px;
  margin-bottom: 21px;
  height: 100%;
  display: inline-block;
}
.cid-u4LaROBB9y img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.cid-u4LaROBB9y .item {
  margin-bottom: 70px;
}
.cid-u4LaROBB9y .item-title {
  margin-bottom: 11px;
  color: #202020;
}
.cid-u4LaROBB9y .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-u4LaROBB9y .mbr-text {
  margin-bottom: 18px;
}
.cid-u4LaROBB9y .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-u4LaROBB9y .linkBtn a:after,
.cid-u4LaROBB9y .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-u4LaROBB9y .linkBtn a:before {
  left: 0;
}
.cid-u4LaROBB9y .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-u4LaROBB9y .linkBtn a:hover:before,
.cid-u4LaROBB9y .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-u4yKuvrgHn {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u4yKuvrgHn .svg1 {
  position: absolute;
  bottom: 4.6rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.cid-u4yKuvrgHn #e1_circle,
.cid-u4yKuvrgHn #e3_circle,
.cid-u4yKuvrgHn #e4_circle,
.cid-u4yKuvrgHn #e5_circle {
  fill: #ffffff !important;
}
.cid-u4yKuvrgHn #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.cid-u4yKuvrgHn .round {
  border-radius: 100%;
  position: absolute;
  background-color: #ffffff;
  animation: orbit 4s linear infinite;
}
.cid-u4yKuvrgHn .rev {
  animation: rev 4s linear infinite;
}
.cid-u4yKuvrgHn .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.cid-u4yKuvrgHn .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.cid-u4yKuvrgHn .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.cid-u4yKuvrgHn .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.cid-u4yKuvrgHn .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.cid-u4yKuvrgHn .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.cid-u4yKuvrgHn .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.cid-u4yKuvrgHn .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.cid-u4yKuvrgHn .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.cid-u4yKuvrgHn .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.cid-u4yKuvrgHn .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}
.cid-u4yKuvrgHn H1 {
  color: #66458e;
}
.cid-u4yKuvrgHn .mbr-text,
.cid-u4yKuvrgHn .mbr-section-btn {
  color: #000000;
}
.cid-u4yKuvrgHn img {
  width: 100%;
  margin: 0 auto;
}
.cid-u4yFBrDJnH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4yFBrDJnH .divider {
  max-width: 1440px;
  padding-top: 68px;
  border-top: 1px solid #eef5f4;
}
.cid-u4yFBrDJnH .logo__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.cid-u4yFBrDJnH .logo__footer img {
  display: block;
  width: 110px;
  object-fit: cover ;
}
.cid-u4yFBrDJnH .logo__text {
  display: flex;
  align-items: center;
  padding-top: 5px;
  margin-left: 50px;
}
.cid-u4yFBrDJnH .menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-u4yFBrDJnH .footer__menu {
  padding-right: 52px;
  padding-bottom: 21px;
}
.cid-u4yFBrDJnH .mbr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cid-u4yFBrDJnH .item {
  display: flex;
  align-items: center;
  margin-right: 7px;
  margin-bottom: 15px;
}
.cid-u4yFBrDJnH .item a {
  font-weight: 600;
}
.cid-u4yFBrDJnH .item:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #689bb2;
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
}
.cid-u4yFBrDJnH .item:last-child:after {
  display: none;
}
.cid-u4yFBrDJnH .footer__social {
  padding-bottom: 21px;
}
.cid-u4yFBrDJnH .mbr-iconfont {
  font-size: 33px;
  transition: all .3s ease;
  width: 33px;
  height: 33px;
  color: #613456;
  margin-right: 17px;
  margin-bottom: 10px;
}
.cid-u4yFBrDJnH .mbr-iconfont:hover {
  color: #613456;
}
.cid-u4yFBrDJnH .footer__copyright {
  padding: 15px 0 12px;
  background-color: #f6f9f8;
}
.cid-u4yFBrDJnH .footer__ink {
  text-align: right;
}
.cid-u4yFBrDJnH .copyright,
.cid-u4yFBrDJnH .ink {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-u4yFBrDJnH .footer__menu {
    padding-right: 0;
  }
}
.cid-u4yFBrDJnH .copyright {
  color: #000000;
}
.cid-u4yFBrDJnH .ink {
  color: #613456;
}
.cid-u4yLFf5AE0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4yLFf5AE0 nav.navbar {
  position: fixed;
}
.cid-u4yLFf5AE0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4yLFf5AE0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4yLFf5AE0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4yLFf5AE0 .dropdown-item:hover,
.cid-u4yLFf5AE0 .dropdown-item:focus {
  background: #613456 !important;
  color: white !important;
}
.cid-u4yLFf5AE0 .dropdown-item:hover span {
  color: white;
}
.cid-u4yLFf5AE0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4yLFf5AE0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4yLFf5AE0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4yLFf5AE0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4yLFf5AE0 .nav-link {
  position: relative;
}
.cid-u4yLFf5AE0 .container {
  display: flex;
  margin: auto;
}
.cid-u4yLFf5AE0 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4yLFf5AE0 .dropdown-menu,
.cid-u4yLFf5AE0 .navbar.opened {
  background: #ffffff !important;
}
.cid-u4yLFf5AE0 .nav-item:focus,
.cid-u4yLFf5AE0 .nav-link:focus {
  outline: none;
}
.cid-u4yLFf5AE0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4yLFf5AE0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4yLFf5AE0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4yLFf5AE0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4yLFf5AE0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4yLFf5AE0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4yLFf5AE0 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4yLFf5AE0 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u4yLFf5AE0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u4yLFf5AE0 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-u4yLFf5AE0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u4yLFf5AE0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4yLFf5AE0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u4yLFf5AE0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u4yLFf5AE0 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u4yLFf5AE0 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u4yLFf5AE0 .navbar.collapsed {
  justify-content: center;
}
.cid-u4yLFf5AE0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4yLFf5AE0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4yLFf5AE0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u4yLFf5AE0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4yLFf5AE0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4yLFf5AE0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4yLFf5AE0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u4yLFf5AE0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4yLFf5AE0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4yLFf5AE0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4yLFf5AE0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4yLFf5AE0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4yLFf5AE0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4yLFf5AE0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4yLFf5AE0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4yLFf5AE0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4yLFf5AE0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4yLFf5AE0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4yLFf5AE0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4yLFf5AE0 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4yLFf5AE0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4yLFf5AE0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4yLFf5AE0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u4yLFf5AE0 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u4yLFf5AE0 .navbar {
    padding: 0 50px !important;
  }
}
.cid-u4yLFf5AE0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u4yLFf5AE0 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u4yLFf5AE0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u4yLFf5AE0 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u4yLFf5AE0 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-u4yLFf5AE0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4yLFf5AE0 .dropdown-item.active,
.cid-u4yLFf5AE0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u4yLFf5AE0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4yLFf5AE0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4yLFf5AE0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4yLFf5AE0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u4yLFf5AE0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4yLFf5AE0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4yLFf5AE0 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u4yLFf5AE0 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u4yLFf5AE0 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u4yLFf5AE0 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u4yLFf5AE0 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u4yLFf5AE0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u4yLFf5AE0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4yLFf5AE0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4yLFf5AE0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4yLFf5AE0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4yLFf5AE0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u4yLFf5AE0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4yLFf5AE0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4yLFf5AE0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4yLFf5AE0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4yLFf5AE0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4yLFf5AE0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4yLFf5AE0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4yLFf5AE0 .navbar {
    height: 100px;
  }
  .cid-u4yLFf5AE0 .navbar.opened {
    height: auto;
  }
  .cid-u4yLFf5AE0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4yLFf5AE0 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u4yLFf5AE0 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4yLFf5AE0 .nav-link:before {
  content: '';
  position: absolute;
  color: #613456;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4yLFfZhkJ {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4yLFfZhkJ .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u4yLFfZhkJ .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yLFfZhkJ .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-u4yLFfZhkJ .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yLFfZhkJ .col-text {
    padding-right: 4.625rem;
  }
}
.cid-u4yLFfZhkJ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4yLFfZhkJ .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-u4yLFfZhkJ .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-u4yLFfZhkJ .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-u4yLFfZhkJ .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-left: 5rem;
  border-left: 1px solid #d4c5c0;
}
@media (max-width: 767px) {
  .cid-u4yLFfZhkJ .cards-container {
    padding-left: 2rem;
  }
}
.cid-u4yLFfZhkJ .card-text-container {
  flex-grow: 1;
}
.cid-u4yLFfZhkJ .mbr-section-subtitle {
  color: #002549;
  width: 100%;
}
.cid-u4yLFfZhkJ .card-text {
  color: #000000;
  width: 100%;
}
.cid-u4yLFfZhkJ .icon-box {
  margin-top: 0.35rem;
  margin-right: 1rem;
  transform: rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-u4yLFfZhkJ .icon-box span {
  color: #9c88bc;
}
.cid-u4yLFfZhkJ .card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.cid-u4yLFfZhkJ .card:hover .icon-box {
  margin-top: 0;
  margin-bottom: 0.35rem;
  transform: rotateZ(0);
}
.cid-u4yLFfZhkJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4yLFfZhkJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4yLFfZhkJ .mbr-section-title,
.cid-u4yLFfZhkJ .mbr-section-btn {
  color: #66458e;
}
.cid-u4F372UtuD {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background17.jpg");
}
.cid-u4F372UtuD .mbr-section-title {
  margin-bottom: 80px;
  color: #fff;
}
@media (max-width: 992px) {
  .cid-u4F372UtuD .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u4F372UtuD .list-item {
  color: #fff;
  padding: 30px 0;
  border-bottom-color: #ffffff !important;
}
.cid-u4F372UtuD .mbr-section-subtitle {
  line-height: 139%;
}
@media (max-width: 992px) {
  .cid-u4F372UtuD .mbr-section-subtitle {
    margin-bottom: 14px;
  }
}
.cid-u4F372UtuD .mbr-text {
  font-weight: 300;
  line-height: 1.72;
}
.cid-u4F372UtuD .content {
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-u4F372UtuD .content {
    padding-left: 0;
  }
}
.cid-u4yLFhHxqz {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u4yLFhHxqz .svg1 {
  position: absolute;
  bottom: 4.6rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.cid-u4yLFhHxqz #e1_circle,
.cid-u4yLFhHxqz #e3_circle,
.cid-u4yLFhHxqz #e4_circle,
.cid-u4yLFhHxqz #e5_circle {
  fill: #ffffff !important;
}
.cid-u4yLFhHxqz #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.cid-u4yLFhHxqz .round {
  border-radius: 100%;
  position: absolute;
  background-color: #ffffff;
  animation: orbit 4s linear infinite;
}
.cid-u4yLFhHxqz .rev {
  animation: rev 4s linear infinite;
}
.cid-u4yLFhHxqz .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.cid-u4yLFhHxqz .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.cid-u4yLFhHxqz .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.cid-u4yLFhHxqz .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.cid-u4yLFhHxqz .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.cid-u4yLFhHxqz .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.cid-u4yLFhHxqz .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.cid-u4yLFhHxqz .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.cid-u4yLFhHxqz .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.cid-u4yLFhHxqz .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.cid-u4yLFhHxqz .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}
.cid-u4yLFhHxqz H1 {
  color: #66458e;
}
.cid-u4yLFhHxqz .mbr-text,
.cid-u4yLFhHxqz .mbr-section-btn {
  color: #000000;
}
.cid-u4yLFhHxqz img {
  width: 100%;
  margin: 0 auto;
}
.cid-u4yLFicZTB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4yLFicZTB .divider {
  max-width: 1440px;
  padding-top: 68px;
  border-top: 1px solid #eef5f4;
}
.cid-u4yLFicZTB .logo__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.cid-u4yLFicZTB .logo__footer img {
  display: block;
  width: 110px;
  object-fit: cover ;
}
.cid-u4yLFicZTB .logo__text {
  display: flex;
  align-items: center;
  padding-top: 5px;
  margin-left: 50px;
}
.cid-u4yLFicZTB .menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-u4yLFicZTB .footer__menu {
  padding-right: 52px;
  padding-bottom: 21px;
}
.cid-u4yLFicZTB .mbr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cid-u4yLFicZTB .item {
  display: flex;
  align-items: center;
  margin-right: 7px;
  margin-bottom: 15px;
}
.cid-u4yLFicZTB .item a {
  font-weight: 600;
}
.cid-u4yLFicZTB .item:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #689bb2;
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
}
.cid-u4yLFicZTB .item:last-child:after {
  display: none;
}
.cid-u4yLFicZTB .footer__social {
  padding-bottom: 21px;
}
.cid-u4yLFicZTB .mbr-iconfont {
  font-size: 33px;
  transition: all .3s ease;
  width: 33px;
  height: 33px;
  color: #613456;
  margin-right: 17px;
  margin-bottom: 10px;
}
.cid-u4yLFicZTB .mbr-iconfont:hover {
  color: #613456;
}
.cid-u4yLFicZTB .footer__copyright {
  padding: 15px 0 12px;
  background-color: #f6f9f8;
}
.cid-u4yLFicZTB .footer__ink {
  text-align: right;
}
.cid-u4yLFicZTB .copyright,
.cid-u4yLFicZTB .ink {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-u4yLFicZTB .footer__menu {
    padding-right: 0;
  }
}
.cid-u4yLFicZTB .copyright {
  color: #000000;
}
.cid-u4yLFicZTB .ink {
  color: #613456;
}
.cid-u4Fbc3atSi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4Fbc3atSi nav.navbar {
  position: fixed;
}
.cid-u4Fbc3atSi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4Fbc3atSi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4Fbc3atSi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4Fbc3atSi .dropdown-item:hover,
.cid-u4Fbc3atSi .dropdown-item:focus {
  background: #613456 !important;
  color: white !important;
}
.cid-u4Fbc3atSi .dropdown-item:hover span {
  color: white;
}
.cid-u4Fbc3atSi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4Fbc3atSi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4Fbc3atSi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4Fbc3atSi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4Fbc3atSi .nav-link {
  position: relative;
}
.cid-u4Fbc3atSi .container {
  display: flex;
  margin: auto;
}
.cid-u4Fbc3atSi .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4Fbc3atSi .dropdown-menu,
.cid-u4Fbc3atSi .navbar.opened {
  background: #ffffff !important;
}
.cid-u4Fbc3atSi .nav-item:focus,
.cid-u4Fbc3atSi .nav-link:focus {
  outline: none;
}
.cid-u4Fbc3atSi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4Fbc3atSi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4Fbc3atSi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4Fbc3atSi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4Fbc3atSi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4Fbc3atSi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4Fbc3atSi .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4Fbc3atSi .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u4Fbc3atSi .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u4Fbc3atSi .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-u4Fbc3atSi .navbar.opened {
  transition: all 0.3s;
}
.cid-u4Fbc3atSi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4Fbc3atSi .navbar .navbar-logo img {
  width: auto;
}
.cid-u4Fbc3atSi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u4Fbc3atSi .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u4Fbc3atSi .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u4Fbc3atSi .navbar.collapsed {
  justify-content: center;
}
.cid-u4Fbc3atSi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4Fbc3atSi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4Fbc3atSi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u4Fbc3atSi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4Fbc3atSi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4Fbc3atSi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4Fbc3atSi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u4Fbc3atSi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4Fbc3atSi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4Fbc3atSi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4Fbc3atSi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4Fbc3atSi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4Fbc3atSi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4Fbc3atSi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4Fbc3atSi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4Fbc3atSi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4Fbc3atSi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4Fbc3atSi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4Fbc3atSi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4Fbc3atSi .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4Fbc3atSi .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4Fbc3atSi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4Fbc3atSi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u4Fbc3atSi .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u4Fbc3atSi .navbar {
    padding: 0 50px !important;
  }
}
.cid-u4Fbc3atSi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u4Fbc3atSi .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u4Fbc3atSi .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u4Fbc3atSi .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u4Fbc3atSi .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-u4Fbc3atSi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4Fbc3atSi .dropdown-item.active,
.cid-u4Fbc3atSi .dropdown-item:active {
  background-color: transparent;
}
.cid-u4Fbc3atSi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4Fbc3atSi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4Fbc3atSi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4Fbc3atSi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u4Fbc3atSi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4Fbc3atSi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4Fbc3atSi ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u4Fbc3atSi ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u4Fbc3atSi .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u4Fbc3atSi .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u4Fbc3atSi .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u4Fbc3atSi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u4Fbc3atSi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4Fbc3atSi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4Fbc3atSi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4Fbc3atSi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4Fbc3atSi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u4Fbc3atSi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4Fbc3atSi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4Fbc3atSi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4Fbc3atSi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4Fbc3atSi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4Fbc3atSi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4Fbc3atSi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4Fbc3atSi .navbar {
    height: 100px;
  }
  .cid-u4Fbc3atSi .navbar.opened {
    height: auto;
  }
  .cid-u4Fbc3atSi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4Fbc3atSi .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u4Fbc3atSi .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4Fbc3atSi .nav-link:before {
  content: '';
  position: absolute;
  color: #613456;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4Fbc3Z7xl {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4Fbc3Z7xl .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u4Fbc3Z7xl .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4Fbc3Z7xl .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-u4Fbc3Z7xl .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4Fbc3Z7xl .col-text {
    padding-right: 4.625rem;
  }
}
.cid-u4Fbc3Z7xl .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4Fbc3Z7xl .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-u4Fbc3Z7xl .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-u4Fbc3Z7xl .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-u4Fbc3Z7xl .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-left: 5rem;
  border-left: 1px solid #d4c5c0;
}
@media (max-width: 767px) {
  .cid-u4Fbc3Z7xl .cards-container {
    padding-left: 2rem;
  }
}
.cid-u4Fbc3Z7xl .card-text-container {
  flex-grow: 1;
}
.cid-u4Fbc3Z7xl .mbr-section-subtitle {
  color: #002549;
  width: 100%;
}
.cid-u4Fbc3Z7xl .card-text {
  color: #000000;
  width: 100%;
}
.cid-u4Fbc3Z7xl .icon-box {
  margin-top: 0.35rem;
  margin-right: 1rem;
  transform: rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-u4Fbc3Z7xl .icon-box span {
  color: #9c88bc;
}
.cid-u4Fbc3Z7xl .card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.cid-u4Fbc3Z7xl .card:hover .icon-box {
  margin-top: 0;
  margin-bottom: 0.35rem;
  transform: rotateZ(0);
}
.cid-u4Fbc3Z7xl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4Fbc3Z7xl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4Fbc3Z7xl .mbr-section-title,
.cid-u4Fbc3Z7xl .mbr-section-btn {
  color: #66458e;
}
.cid-u4FbVznYlN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u4FbVznYlN .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u4FbVznYlN .row-element,
.cid-u4FbVznYlN .image-element {
  padding: 0;
}
.cid-u4FbVznYlN .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u4FbVznYlN .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-u4FbVznYlN .text-content {
  padding: 3rem;
}
.cid-u4FbVznYlN .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u4FbVznYlN .text-content {
    padding: 2rem 1rem;
  }
  .cid-u4FbVznYlN .mbr-title,
  .cid-u4FbVznYlN .underline,
  .cid-u4FbVznYlN .mbr-text,
  .cid-u4FbVznYlN .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-u4FbVznYlN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4FbVznYlN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4FcjTQY1F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u4FcjTQY1F .row-element,
.cid-u4FcjTQY1F .image-element {
  padding: 0;
}
.cid-u4FcjTQY1F .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u4FcjTQY1F .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-u4FcjTQY1F .text-content {
  padding: 3rem;
}
.cid-u4FcjTQY1F .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u4FcjTQY1F .text-content {
    padding: 2rem 1rem;
  }
  .cid-u4FcjTQY1F .mbr-title,
  .cid-u4FcjTQY1F .underline,
  .cid-u4FcjTQY1F .mbr-text,
  .cid-u4FcjTQY1F .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-u4FcjTQY1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4FcjTQY1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4Fbc55D6m {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u4Fbc55D6m .svg1 {
  position: absolute;
  bottom: 4.6rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.cid-u4Fbc55D6m #e1_circle,
.cid-u4Fbc55D6m #e3_circle,
.cid-u4Fbc55D6m #e4_circle,
.cid-u4Fbc55D6m #e5_circle {
  fill: #ffffff !important;
}
.cid-u4Fbc55D6m #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.cid-u4Fbc55D6m .round {
  border-radius: 100%;
  position: absolute;
  background-color: #ffffff;
  animation: orbit 4s linear infinite;
}
.cid-u4Fbc55D6m .rev {
  animation: rev 4s linear infinite;
}
.cid-u4Fbc55D6m .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.cid-u4Fbc55D6m .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.cid-u4Fbc55D6m .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.cid-u4Fbc55D6m .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.cid-u4Fbc55D6m .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.cid-u4Fbc55D6m .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.cid-u4Fbc55D6m .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.cid-u4Fbc55D6m .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.cid-u4Fbc55D6m .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.cid-u4Fbc55D6m .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.cid-u4Fbc55D6m .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}
.cid-u4Fbc55D6m H1 {
  color: #66458e;
}
.cid-u4Fbc55D6m .mbr-text,
.cid-u4Fbc55D6m .mbr-section-btn {
  color: #000000;
}
.cid-u4Fbc55D6m img {
  width: 100%;
  margin: 0 auto;
}
.cid-u4Fbc5njVK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4Fbc5njVK .divider {
  max-width: 1440px;
  padding-top: 68px;
  border-top: 1px solid #eef5f4;
}
.cid-u4Fbc5njVK .logo__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.cid-u4Fbc5njVK .logo__footer img {
  display: block;
  width: 110px;
  object-fit: cover ;
}
.cid-u4Fbc5njVK .logo__text {
  display: flex;
  align-items: center;
  padding-top: 5px;
  margin-left: 50px;
}
.cid-u4Fbc5njVK .menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-u4Fbc5njVK .footer__menu {
  padding-right: 52px;
  padding-bottom: 21px;
}
.cid-u4Fbc5njVK .mbr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cid-u4Fbc5njVK .item {
  display: flex;
  align-items: center;
  margin-right: 7px;
  margin-bottom: 15px;
}
.cid-u4Fbc5njVK .item a {
  font-weight: 600;
}
.cid-u4Fbc5njVK .item:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #689bb2;
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
}
.cid-u4Fbc5njVK .item:last-child:after {
  display: none;
}
.cid-u4Fbc5njVK .footer__social {
  padding-bottom: 21px;
}
.cid-u4Fbc5njVK .mbr-iconfont {
  font-size: 33px;
  transition: all .3s ease;
  width: 33px;
  height: 33px;
  color: #613456;
  margin-right: 17px;
  margin-bottom: 10px;
}
.cid-u4Fbc5njVK .mbr-iconfont:hover {
  color: #613456;
}
.cid-u4Fbc5njVK .footer__copyright {
  padding: 15px 0 12px;
  background-color: #f6f9f8;
}
.cid-u4Fbc5njVK .footer__ink {
  text-align: right;
}
.cid-u4Fbc5njVK .copyright,
.cid-u4Fbc5njVK .ink {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-u4Fbc5njVK .footer__menu {
    padding-right: 0;
  }
}
.cid-u4Fbc5njVK .copyright {
  color: #000000;
}
.cid-u4Fbc5njVK .ink {
  color: #613456;
}
.cid-u4KwxWfvo0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4KwxWfvo0 nav.navbar {
  position: fixed;
}
.cid-u4KwxWfvo0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4KwxWfvo0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4KwxWfvo0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4KwxWfvo0 .dropdown-item:hover,
.cid-u4KwxWfvo0 .dropdown-item:focus {
  background: #613456 !important;
  color: white !important;
}
.cid-u4KwxWfvo0 .dropdown-item:hover span {
  color: white;
}
.cid-u4KwxWfvo0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4KwxWfvo0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4KwxWfvo0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4KwxWfvo0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4KwxWfvo0 .nav-link {
  position: relative;
}
.cid-u4KwxWfvo0 .container {
  display: flex;
  margin: auto;
}
.cid-u4KwxWfvo0 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4KwxWfvo0 .dropdown-menu,
.cid-u4KwxWfvo0 .navbar.opened {
  background: #ffffff !important;
}
.cid-u4KwxWfvo0 .nav-item:focus,
.cid-u4KwxWfvo0 .nav-link:focus {
  outline: none;
}
.cid-u4KwxWfvo0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4KwxWfvo0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4KwxWfvo0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4KwxWfvo0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4KwxWfvo0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4KwxWfvo0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4KwxWfvo0 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4KwxWfvo0 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u4KwxWfvo0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u4KwxWfvo0 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-u4KwxWfvo0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u4KwxWfvo0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4KwxWfvo0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u4KwxWfvo0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u4KwxWfvo0 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u4KwxWfvo0 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u4KwxWfvo0 .navbar.collapsed {
  justify-content: center;
}
.cid-u4KwxWfvo0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4KwxWfvo0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4KwxWfvo0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u4KwxWfvo0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4KwxWfvo0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4KwxWfvo0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4KwxWfvo0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u4KwxWfvo0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4KwxWfvo0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4KwxWfvo0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4KwxWfvo0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4KwxWfvo0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4KwxWfvo0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4KwxWfvo0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4KwxWfvo0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4KwxWfvo0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4KwxWfvo0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4KwxWfvo0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4KwxWfvo0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4KwxWfvo0 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4KwxWfvo0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4KwxWfvo0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4KwxWfvo0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u4KwxWfvo0 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u4KwxWfvo0 .navbar {
    padding: 0 50px !important;
  }
}
.cid-u4KwxWfvo0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u4KwxWfvo0 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u4KwxWfvo0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u4KwxWfvo0 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u4KwxWfvo0 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-u4KwxWfvo0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4KwxWfvo0 .dropdown-item.active,
.cid-u4KwxWfvo0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u4KwxWfvo0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4KwxWfvo0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4KwxWfvo0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4KwxWfvo0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u4KwxWfvo0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4KwxWfvo0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4KwxWfvo0 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u4KwxWfvo0 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u4KwxWfvo0 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u4KwxWfvo0 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u4KwxWfvo0 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u4KwxWfvo0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u4KwxWfvo0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4KwxWfvo0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4KwxWfvo0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4KwxWfvo0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4KwxWfvo0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u4KwxWfvo0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4KwxWfvo0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4KwxWfvo0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4KwxWfvo0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4KwxWfvo0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4KwxWfvo0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4KwxWfvo0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4KwxWfvo0 .navbar {
    height: 100px;
  }
  .cid-u4KwxWfvo0 .navbar.opened {
    height: auto;
  }
  .cid-u4KwxWfvo0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4KwxWfvo0 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u4KwxWfvo0 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4KwxWfvo0 .nav-link:before {
  content: '';
  position: absolute;
  color: #613456;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4KwxWY3Cp {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4KwxWY3Cp .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u4KwxWY3Cp .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4KwxWY3Cp .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-u4KwxWY3Cp .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4KwxWY3Cp .col-text {
    padding-right: 4.625rem;
  }
}
.cid-u4KwxWY3Cp .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4KwxWY3Cp .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-u4KwxWY3Cp .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-u4KwxWY3Cp .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-u4KwxWY3Cp .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-left: 5rem;
  border-left: 1px solid #d4c5c0;
}
@media (max-width: 767px) {
  .cid-u4KwxWY3Cp .cards-container {
    padding-left: 2rem;
  }
}
.cid-u4KwxWY3Cp .card-text-container {
  flex-grow: 1;
}
.cid-u4KwxWY3Cp .mbr-section-subtitle {
  color: #002549;
  width: 100%;
}
.cid-u4KwxWY3Cp .card-text {
  color: #000000;
  width: 100%;
}
.cid-u4KwxWY3Cp .icon-box {
  margin-top: 0.35rem;
  margin-right: 1rem;
  transform: rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-u4KwxWY3Cp .icon-box span {
  color: #9c88bc;
}
.cid-u4KwxWY3Cp .card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.cid-u4KwxWY3Cp .card:hover .icon-box {
  margin-top: 0;
  margin-bottom: 0.35rem;
  transform: rotateZ(0);
}
.cid-u4KwxWY3Cp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4KwxWY3Cp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4KwxWY3Cp .mbr-section-title,
.cid-u4KwxWY3Cp .mbr-section-btn {
  color: #66458e;
}
.cid-u4KwxXlqvq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u4KwxXlqvq .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u4KwxXlqvq .row-element,
.cid-u4KwxXlqvq .image-element {
  padding: 0;
}
.cid-u4KwxXlqvq .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u4KwxXlqvq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-u4KwxXlqvq .text-content {
  padding: 3rem;
}
.cid-u4KwxXlqvq .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u4KwxXlqvq .text-content {
    padding: 2rem 1rem;
  }
  .cid-u4KwxXlqvq .mbr-title,
  .cid-u4KwxXlqvq .underline,
  .cid-u4KwxXlqvq .mbr-text,
  .cid-u4KwxXlqvq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-u4KwxXlqvq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4KwxXlqvq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4KwxXyebd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u4KwxXyebd .row-element,
.cid-u4KwxXyebd .image-element {
  padding: 0;
}
.cid-u4KwxXyebd .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u4KwxXyebd .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-u4KwxXyebd .text-content {
  padding: 3rem;
}
.cid-u4KwxXyebd .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u4KwxXyebd .text-content {
    padding: 2rem 1rem;
  }
  .cid-u4KwxXyebd .mbr-title,
  .cid-u4KwxXyebd .underline,
  .cid-u4KwxXyebd .mbr-text,
  .cid-u4KwxXyebd .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-u4KwxXyebd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4KwxXyebd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4KxivK0Wh {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background17.jpg");
}
.cid-u4KxivK0Wh .mbr-section-title {
  margin-bottom: 80px;
  color: #fff;
}
@media (max-width: 992px) {
  .cid-u4KxivK0Wh .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u4KxivK0Wh .list-item {
  color: #fff;
  padding: 30px 0;
  border-bottom-color: #ffffff !important;
}
.cid-u4KxivK0Wh .mbr-section-subtitle {
  line-height: 139%;
}
@media (max-width: 992px) {
  .cid-u4KxivK0Wh .mbr-section-subtitle {
    margin-bottom: 14px;
  }
}
.cid-u4KxivK0Wh .mbr-text {
  font-weight: 300;
  line-height: 1.72;
}
.cid-u4KxivK0Wh .content {
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-u4KxivK0Wh .content {
    padding-left: 0;
  }
}
.cid-u4L5x7bnjN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4L5x7bnjN .row {
  align-items: center;
}
.cid-u4L5x7bnjN .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-u4L5x7bnjN .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-u4L5x7bnjN .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4L5x7bnjN .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-u4L5x7bnjN .header-text {
    padding-right: 0;
  }
}
.cid-u4L5x7bnjN .label-text {
  width: 100%;
  color: #111111;
}
.cid-u4L5x7bnjN .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #613456;
}
.cid-u4L5x7bnjN .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-u4L5x7bnjN .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-u4L5x7bnjN .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-u4L5x7bnjN .iconfont-wrapper {
  color: #111111 !important;
}
.cid-u4L5x7bnjN .iconfont-wrapper:hover {
  color: #613456 !important;
}
.cid-u4L5x7bnjN .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-u4L5x7bnjN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4L5x7bnjN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4KwxXY5Q0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4KwxXY5Q0 .divider {
  max-width: 1440px;
  padding-top: 68px;
  border-top: 1px solid #eef5f4;
}
.cid-u4KwxXY5Q0 .logo__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.cid-u4KwxXY5Q0 .logo__footer img {
  display: block;
  width: 110px;
  object-fit: cover ;
}
.cid-u4KwxXY5Q0 .logo__text {
  display: flex;
  align-items: center;
  padding-top: 5px;
  margin-left: 50px;
}
.cid-u4KwxXY5Q0 .menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-u4KwxXY5Q0 .footer__menu {
  padding-right: 52px;
  padding-bottom: 21px;
}
.cid-u4KwxXY5Q0 .mbr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cid-u4KwxXY5Q0 .item {
  display: flex;
  align-items: center;
  margin-right: 7px;
  margin-bottom: 15px;
}
.cid-u4KwxXY5Q0 .item a {
  font-weight: 600;
}
.cid-u4KwxXY5Q0 .item:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #689bb2;
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
}
.cid-u4KwxXY5Q0 .item:last-child:after {
  display: none;
}
.cid-u4KwxXY5Q0 .footer__social {
  padding-bottom: 21px;
}
.cid-u4KwxXY5Q0 .mbr-iconfont {
  font-size: 33px;
  transition: all .3s ease;
  width: 33px;
  height: 33px;
  color: #613456;
  margin-right: 17px;
  margin-bottom: 10px;
}
.cid-u4KwxXY5Q0 .mbr-iconfont:hover {
  color: #613456;
}
.cid-u4KwxXY5Q0 .footer__copyright {
  padding: 15px 0 12px;
  background-color: #f6f9f8;
}
.cid-u4KwxXY5Q0 .footer__ink {
  text-align: right;
}
.cid-u4KwxXY5Q0 .copyright,
.cid-u4KwxXY5Q0 .ink {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-u4KwxXY5Q0 .footer__menu {
    padding-right: 0;
  }
}
.cid-u4KwxXY5Q0 .copyright {
  color: #000000;
}
.cid-u4KwxXY5Q0 .ink {
  color: #613456;
}
.cid-u4L7Scqpo0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4L7Scqpo0 nav.navbar {
  position: fixed;
}
.cid-u4L7Scqpo0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4L7Scqpo0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4L7Scqpo0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4L7Scqpo0 .dropdown-item:hover,
.cid-u4L7Scqpo0 .dropdown-item:focus {
  background: #613456 !important;
  color: white !important;
}
.cid-u4L7Scqpo0 .dropdown-item:hover span {
  color: white;
}
.cid-u4L7Scqpo0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4L7Scqpo0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4L7Scqpo0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4L7Scqpo0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4L7Scqpo0 .nav-link {
  position: relative;
}
.cid-u4L7Scqpo0 .container {
  display: flex;
  margin: auto;
}
.cid-u4L7Scqpo0 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4L7Scqpo0 .dropdown-menu,
.cid-u4L7Scqpo0 .navbar.opened {
  background: #ffffff !important;
}
.cid-u4L7Scqpo0 .nav-item:focus,
.cid-u4L7Scqpo0 .nav-link:focus {
  outline: none;
}
.cid-u4L7Scqpo0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4L7Scqpo0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4L7Scqpo0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4L7Scqpo0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4L7Scqpo0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4L7Scqpo0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4L7Scqpo0 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4L7Scqpo0 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u4L7Scqpo0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u4L7Scqpo0 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-u4L7Scqpo0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u4L7Scqpo0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4L7Scqpo0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u4L7Scqpo0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u4L7Scqpo0 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u4L7Scqpo0 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u4L7Scqpo0 .navbar.collapsed {
  justify-content: center;
}
.cid-u4L7Scqpo0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4L7Scqpo0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4L7Scqpo0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u4L7Scqpo0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4L7Scqpo0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4L7Scqpo0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4L7Scqpo0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u4L7Scqpo0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4L7Scqpo0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4L7Scqpo0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4L7Scqpo0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4L7Scqpo0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4L7Scqpo0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4L7Scqpo0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4L7Scqpo0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4L7Scqpo0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4L7Scqpo0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4L7Scqpo0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4L7Scqpo0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4L7Scqpo0 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4L7Scqpo0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4L7Scqpo0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4L7Scqpo0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u4L7Scqpo0 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u4L7Scqpo0 .navbar {
    padding: 0 50px !important;
  }
}
.cid-u4L7Scqpo0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u4L7Scqpo0 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u4L7Scqpo0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u4L7Scqpo0 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u4L7Scqpo0 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-u4L7Scqpo0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4L7Scqpo0 .dropdown-item.active,
.cid-u4L7Scqpo0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u4L7Scqpo0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4L7Scqpo0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4L7Scqpo0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4L7Scqpo0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u4L7Scqpo0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4L7Scqpo0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4L7Scqpo0 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u4L7Scqpo0 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u4L7Scqpo0 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u4L7Scqpo0 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u4L7Scqpo0 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u4L7Scqpo0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u4L7Scqpo0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4L7Scqpo0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4L7Scqpo0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4L7Scqpo0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4L7Scqpo0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u4L7Scqpo0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4L7Scqpo0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4L7Scqpo0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4L7Scqpo0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4L7Scqpo0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4L7Scqpo0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4L7Scqpo0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4L7Scqpo0 .navbar {
    height: 100px;
  }
  .cid-u4L7Scqpo0 .navbar.opened {
    height: auto;
  }
  .cid-u4L7Scqpo0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4L7Scqpo0 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u4L7Scqpo0 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4L7Scqpo0 .nav-link:before {
  content: '';
  position: absolute;
  color: #613456;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4L7XIOeRN {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4L7XIOeRN .row {
  align-items: center;
}
.cid-u4L7XIOeRN .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-u4L7XIOeRN .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-u4L7XIOeRN .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4L7XIOeRN .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-u4L7XIOeRN .header-text {
    padding-right: 0;
  }
}
.cid-u4L7XIOeRN .label-text {
  width: 100%;
  color: #111111;
}
.cid-u4L7XIOeRN .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #613456;
}
.cid-u4L7XIOeRN .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-u4L7XIOeRN .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-u4L7XIOeRN .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-u4L7XIOeRN .iconfont-wrapper {
  color: #111111 !important;
}
.cid-u4L7XIOeRN .iconfont-wrapper:hover {
  color: #613456 !important;
}
.cid-u4L7XIOeRN .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-u4L7XIOeRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4L7XIOeRN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4LbAONwwT {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #f2f3f7;
}
.cid-u4LbAONwwT .col-lg-6 {
  padding: 0 2rem;
}
.cid-u4LbAONwwT .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-u4LbAONwwT .card-wrapper {
  overflow: visible;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-u4LbAONwwT .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u4LbAONwwT .card-wrapper {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
.cid-u4LbAONwwT .mbr-iconfont {
  font-size: 1.5rem;
  color: #72c367;
  padding: 1rem;
  width: fit-content;
  transition: all 0.3s;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  margin: 0 0.5rem;
  margin-bottom: 2rem;
  display: block;
}
.cid-u4LbAONwwT .mbr-iconfont:hover {
  background: #ffffff;
}
.cid-u4LbAONwwT .card-box {
  max-width: 340px;
}
@media (max-width: 767px) {
  .cid-u4LbAONwwT .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-u4LbAONwwT .mt-5 {
    margin-top: 0.5rem!important;
  }
}
@media (max-width: 767px) {
  .cid-u4LbAONwwT .icon-wrapper {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
  }
}
.cid-u4LbAONwwT .card-text {
  color: #6c758f;
}
.cid-u4LbAONwwT .card-title {
  color: #14142b;
}
.cid-u4LbAONwwT .card-phone {
  color: #353535;
}
.cid-u4LbAONwwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4LbAONwwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4Lbrza7Uy {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-u4Lbrza7Uy .col-lg-6 {
  padding: 0 2rem;
}
.cid-u4Lbrza7Uy .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-u4Lbrza7Uy .card-wrapper {
  overflow: visible;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-u4Lbrza7Uy .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u4Lbrza7Uy .card-wrapper {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
.cid-u4Lbrza7Uy .mbr-iconfont {
  font-size: 1.5rem;
  color: #72c367;
  padding: 1rem;
  width: fit-content;
  transition: all 0.3s;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  margin: 0 0.5rem;
  margin-bottom: 2rem;
  display: block;
}
.cid-u4Lbrza7Uy .mbr-iconfont:hover {
  background: #ffffff;
}
.cid-u4Lbrza7Uy .card-box {
  max-width: 340px;
}
@media (max-width: 767px) {
  .cid-u4Lbrza7Uy .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-u4Lbrza7Uy .mt-5 {
    margin-top: 0.5rem!important;
  }
}
@media (max-width: 767px) {
  .cid-u4Lbrza7Uy .icon-wrapper {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
  }
}
.cid-u4Lbrza7Uy .card-text {
  color: #6c758f;
}
.cid-u4Lbrza7Uy .card-title {
  color: #14142b;
}
.cid-u4Lbrza7Uy .card-phone {
  color: #353535;
}
.cid-u4Lbrza7Uy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4Lbrza7Uy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4L7SfdrPS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4L7SfdrPS .divider {
  max-width: 1440px;
  padding-top: 68px;
  border-top: 1px solid #eef5f4;
}
.cid-u4L7SfdrPS .logo__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.cid-u4L7SfdrPS .logo__footer img {
  display: block;
  width: 110px;
  object-fit: cover ;
}
.cid-u4L7SfdrPS .logo__text {
  display: flex;
  align-items: center;
  padding-top: 5px;
  margin-left: 50px;
}
.cid-u4L7SfdrPS .menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-u4L7SfdrPS .footer__menu {
  padding-right: 52px;
  padding-bottom: 21px;
}
.cid-u4L7SfdrPS .mbr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cid-u4L7SfdrPS .item {
  display: flex;
  align-items: center;
  margin-right: 7px;
  margin-bottom: 15px;
}
.cid-u4L7SfdrPS .item a {
  font-weight: 600;
}
.cid-u4L7SfdrPS .item:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #689bb2;
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
}
.cid-u4L7SfdrPS .item:last-child:after {
  display: none;
}
.cid-u4L7SfdrPS .footer__social {
  padding-bottom: 21px;
}
.cid-u4L7SfdrPS .mbr-iconfont {
  font-size: 33px;
  transition: all .3s ease;
  width: 33px;
  height: 33px;
  color: #613456;
  margin-right: 17px;
  margin-bottom: 10px;
}
.cid-u4L7SfdrPS .mbr-iconfont:hover {
  color: #613456;
}
.cid-u4L7SfdrPS .footer__copyright {
  padding: 15px 0 12px;
  background-color: #f6f9f8;
}
.cid-u4L7SfdrPS .footer__ink {
  text-align: right;
}
.cid-u4L7SfdrPS .copyright,
.cid-u4L7SfdrPS .ink {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-u4L7SfdrPS .footer__menu {
    padding-right: 0;
  }
}
.cid-u4L7SfdrPS .copyright {
  color: #000000;
}
.cid-u4L7SfdrPS .ink {
  color: #613456;
}
