body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Great Vibes', handwriting;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-7 {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 2rem;
}
/* ---- 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: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #8264fd !important;
}
.bg-success {
  background-color: #5a31fb !important;
}
.bg-info {
  background-color: #a38dfd !important;
}
.bg-warning {
  background-color: #a38dfd !important;
}
.bg-danger {
  background-color: #a38dfd !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #4518fc;
  border-color: #4518fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #8264fd !important;
  border-color: #8264fd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4518fc !important;
  border-color: #4518fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4518fc !important;
  border-color: #4518fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #4518fc;
  border-color: #4518fc;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #8264fd !important;
  border-color: #8264fd !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #4518fc !important;
  border-color: #4518fc !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4518fc !important;
  border-color: #4518fc !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #3004db;
  border-color: #3004db;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #5a31fb !important;
  border-color: #5a31fb !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #3004db !important;
  border-color: #3004db !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3004db !important;
  border-color: #3004db !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.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:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.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:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.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 {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #8264fd;
  border-color: #8264fd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #3303f8;
  color: #3303f8 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #8264fd;
  border-color: #8264fd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8264fd !important;
  border-color: #8264fd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #8264fd;
  border-color: #8264fd;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #3303f8;
  color: #3303f8 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #8264fd;
  border-color: #8264fd;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8264fd !important;
  border-color: #8264fd !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #5a31fb;
  border-color: #5a31fb;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #2a04c2;
  color: #2a04c2 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #5a31fb;
  border-color: #5a31fb;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #5a31fb !important;
  border-color: #5a31fb !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.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:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.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;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #8264fd !important;
}
.text-secondary {
  color: #8264fd !important;
}
.text-success {
  color: #5a31fb !important;
}
.text-info {
  color: #a38dfd !important;
}
.text-warning {
  color: #a38dfd !important;
}
.text-danger {
  color: #a38dfd !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #3303f8 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #3303f8 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2a04c2 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5229fb !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #5229fb !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #5229fb !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: #5a31fb;
}
.alert-info {
  background-color: #a38dfd;
}
.alert-warning {
  background-color: #a38dfd;
}
.alert-danger {
  background-color: #a38dfd;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .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: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  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: #8264fd;
  border-color: #8264fd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8264fd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #faf9ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 2rem;
}
blockquote {
  border-color: #8264fd;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 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;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #8264fd;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.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-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8264fd;
  border-bottom-color: #8264fd;
}
.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: #8264fd !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: #8264fd !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='%238264fd' %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-uSrZlL4Vua .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .nav-item:focus,
.cid-uSrZlL4Vua .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uSrZlL4Vua .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link {
    position: relative;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #8264fd, #8264fd);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uSrZlL4Vua .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uSrZlL4Vua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSrZlL4Vua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSrZlL4Vua .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uSrZlL4Vua .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #a38dfd;
  background: linear-gradient(#ffffff, #a38dfd);
}
.cid-uSrZlL4Vua .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-uSrZlL4Vua .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uSrZlL4Vua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uSrZlL4Vua .navbar.collapsed .right-menu,
.cid-uSrZlL4Vua .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show .brand-container,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uSrZlL4Vua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uSrZlL4Vua .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uSrZlL4Vua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSrZlL4Vua .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uSrZlL4Vua .navbar .right-menu,
  .cid-uSrZlL4Vua .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uSrZlL4Vua .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSrZlL4Vua .navbar.navbar-short .mbr-overlay {
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSrZlL4Vua .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSrZlL4Vua .dropdown-item.active,
.cid-uSrZlL4Vua .dropdown-item:active {
  background-color: transparent;
}
.cid-uSrZlL4Vua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38dfd;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSrZlL4Vua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSrZlL4Vua ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uSrZlL4Vua .navbar-buttons {
  margin-left: auto;
}
.cid-uSrZlL4Vua button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua .navbar-dropdown {
  position: fixed;
}
.cid-uSrZlL4Vua a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSrZlL4Vua .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uSrZlL4Vua .right-menu,
.cid-uSrZlL4Vua .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uSrZlL4Vua .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uSrZlL4Vua .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uSrZlL4Vua .card-wrapper {
  z-index: 3;
}
.cid-uSrZlL4Vua .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSrXStyF3D {
  background-image: url("../../../assets/images/2edb221910065fa91ed4358af427087f.jpg-828x1035.jpg");
}
.cid-uSrXStyF3D .mbr-section-title,
.cid-uSrXStyF3D .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uSrXStyF3D .mbr-section-text {
  color: #767676;
}
.cid-uSrXStyF3D .mbr-text,
.cid-uSrXStyF3D .typed-text,
.cid-uSrXStyF3D .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uSrXStyF3D .btn {
  margin-left: 4px !important;
}
.cid-uSrXStyF3D .animated-element {
  color: #5a31fb;
}
.cid-uSrXStyF3D .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #5a31fb;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uSrXStyF3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSrXStyF3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSrXStyF3D .mbr-section-title {
  color: #000000;
}
.cid-udJTgibDGW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-udJTgibDGW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-udJTgibDGW .row {
  flex-direction: row-reverse;
}
.cid-udJTgibDGW img {
  width: 100%;
}
.cid-udJTgibDGW .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #8264fd;
}
.cid-udJTgibDGW .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-udJTgibDGW .svg-top {
    width: 1000px;
  }
}
.cid-udJTgibDGW .mbr-description {
  color: #ffffff;
}
.cid-ud3vQDwqWm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ud3vQDwqWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud3vQDwqWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ud3vQDwqWm .container {
    padding: 0 30px;
  }
}
.cid-ud3vQDwqWm .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-ud3vQDwqWm .items-wrapper {
    display: block;
  }
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper {
  padding: 0 60px 0 40px;
  border-left: 1px solid #000000;
  margin-bottom: 60px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ud3vQDwqWm .items-wrapper .item .item-wrapper {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .circle-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #5a31fb;
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #8264fd;
  opacity: .6;
  border-radius: 100%;
  z-index: 1;
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  backdrop-filter: blur(5px);
  border-radius: 100%;
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: #000000;
}
.cid-ud3vQDwqWm .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ud3vQDwqWm .item-text {
  color: #144031;
}
.cid-ud3vQDwqWm .item-text,
.cid-ud3vQDwqWm .icon-wrapper {
  color: #000000;
}
.cid-ucXxLL0FQy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ucXxLL0FQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucXxLL0FQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucXxLL0FQy .container,
.cid-ucXxLL0FQy .container-fluid {
  position: relative;
}
.cid-ucXxLL0FQy .row {
  justify-content: left;
}
.cid-ucXxLL0FQy .col-content {
  position: relative;
  z-index: 10;
}
.cid-ucXxLL0FQy .mbr-section-title {
  color: #000000;
}
.cid-ucXxLL0FQy .mbr-section-subtitle {
  color: #000000;
}
.cid-ucXxLL0FQy .mbr-text {
  color: #2B2B2B;
}
.cid-ucXxLL0FQy .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-ucXxLL0FQy .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-ucXxLL0FQy .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-ucXxLL0FQy .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ucXxLL0FQy .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #a38dfd 27%, #a38dfd 50%, #a38dfd 79%);
}
.cid-ucXxLL0FQy .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ucXxLL0FQy .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrVaZXKxD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSrVaZXKxD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSrVaZXKxD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uSrVaZXKxD .container {
    padding: 0 26px;
  }
}
.cid-uSrVaZXKxD .row {
  justify-content: center;
}
.cid-uSrVaZXKxD .item {
  padding: 0 25px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uSrVaZXKxD .item {
    padding: 0 12px;
  }
}
.cid-uSrVaZXKxD .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  margin-bottom: 30px;
  border: 1px solid #8264fd;
  padding: 20px;
}
.cid-uSrVaZXKxD .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-uSrVaZXKxD .item .item-wrapper .item-content .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSrVaZXKxD .item-title {
  color: #000000;
  text-align: center;
}
.cid-uSrVaZXKxD .mbr-desc {
  color: #cacaca;
  text-align: center;
}
.cid-uIPJVNh9ra {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uIPJVNh9ra .mbr-section-title {
  color: #000000;
}
.cid-uIPJVNh9ra .mbr-section-subtitle {
  color: #111019;
}
@media (max-width: 992px) {
  .cid-uIPJVNh9ra .align-right,
  .cid-uIPJVNh9ra .align-left {
    text-align: center;
  }
}
.cid-uIPJVNh9ra .title {
  display: flex;
  align-items: center;
}
.cid-uIPJVNh9ra .row {
  transition: all 0.3s;
  margin: 0;
  padding: 4rem 2rem;
  border-radius: 3rem;
  box-shadow: 0 0 40px 0 lightgray;
}
@media (max-width: 767px) {
  .cid-uIPJVNh9ra .row {
    padding: 2rem 1rem;
  }
}
.cid-uIPJVNh9ra .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIPJVNh9ra .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udkes0Owcy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-udkes0Owcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-udkes0Owcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-udkes0Owcy .container {
    padding: 0 22px;
  }
}
.cid-udkes0Owcy .card {
  justify-content: center;
}
.cid-udkes0Owcy .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-udkes0Owcy .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-udkes0Owcy .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-udkes0Owcy .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udkes0Owcy .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-udkes0Owcy .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #5a31fb;
}
@media (max-width: 1440px) {
  .cid-udkes0Owcy .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-udkes0Owcy .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-udkes0Owcy .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-udkes0Owcy .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-udkes0Owcy .mbr-section-title {
  color: #8264fd;
}
.cid-udkes0Owcy .mbr-text {
  color: #000000;
}
.cid-uSrKg6NgxI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSrKg6NgxI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSrKg6NgxI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSrKg6NgxI .container,
.cid-uSrKg6NgxI .container-fluid {
  position: relative;
}
.cid-uSrKg6NgxI .row {
  justify-content: left;
}
.cid-uSrKg6NgxI .col-content {
  position: relative;
  z-index: 10;
}
.cid-uSrKg6NgxI .mbr-section-title {
  color: #000000;
}
.cid-uSrKg6NgxI .mbr-section-subtitle {
  color: #000000;
}
.cid-uSrKg6NgxI .mbr-text {
  color: #2B2B2B;
}
.cid-uSrKg6NgxI .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-uSrKg6NgxI .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-uSrKg6NgxI .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-uSrKg6NgxI .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrKg6NgxI .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #a38dfd 27%, #a38dfd 50%, #a38dfd 79%);
}
.cid-uSrKg6NgxI .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrKg6NgxI .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uIPLU0VIcD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIPLU0VIcD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIPLU0VIcD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIPLU0VIcD .row.card {
  padding: 0 90px;
  background-color: #ffffff;
  border-radius: 60px;
  flex-direction: row;
}
@media (max-width: 768px) {
  .cid-uIPLU0VIcD .row.card {
    padding: 0 32px;
    margin: 0;
  }
}
.cid-uIPLU0VIcD .row.card .subtitle-wrapper {
  margin: -25px 0 0 0;
  transform: rotate(-5deg);
  background-color: #e71313;
  border-radius: 17px;
  padding: 20px;
}
.cid-uIPLU0VIcD .row.card .subtitle-wrapper .mbr-section-subtitle {
  margin: 0;
}
.cid-uIPLU0VIcD .row.card .mbr-section-title {
  margin: 60px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uIPLU0VIcD .row.card .mbr-section-title {
    margin: 32px 0 0 0;
  }
}
.cid-uIPLU0VIcD .row.card .image-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 96px 0 -4rem 0;
}
@media (max-width: 992px) {
  .cid-uIPLU0VIcD .row.card .image-wrapper {
    margin: 32px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-uIPLU0VIcD .row.card .image-wrapper {
    display: block;
  }
}
.cid-uIPLU0VIcD .row.card .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-uIPLU0VIcD .row.card .image-wrapper img:first-child {
  width: 220px;
  height: 296px;
  transform: rotate(330deg);
}
@media (max-width: 768px) {
  .cid-uIPLU0VIcD .row.card .image-wrapper img:first-child {
    transform: rotate(-5deg);
    margin: 0 auto 32px;
    width: 180px;
  }
}
.cid-uIPLU0VIcD .row.card .image-wrapper img:last-child {
  width: 260px;
  height: 350px;
  transform: rotate(31deg);
}
@media (max-width: 768px) {
  .cid-uIPLU0VIcD .row.card .image-wrapper img:last-child {
    transform: rotate(5deg);
    margin: 0 auto;
    width: 180px;
  }
}
.cid-uIPLU0VIcD .row.card .text-wrapper {
  position: relative;
  z-index: 1;
  padding: 105px 0 105px 0;
  height: 100%;
}
@media (max-width: 768px) {
  .cid-uIPLU0VIcD .row.card .text-wrapper {
    padding-top: 32px;
  }
}
.cid-uIPLU0VIcD .row.card .text-wrapper:hover::before {
  right: 40%;
  top: 40%;
}
.cid-uIPLU0VIcD .row.card .text-wrapper::before {
  content: '';
  position: absolute;
  right: 20%;
  top: 35%;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #5a31fb;
  transition: all .3s ease;
}
.cid-uIPLU0VIcD .row.card .text-wrapper .mbr-text {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cid-uIPLU0VIcD .row.card .text-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uIPLU0VIcD .mbr-section-title {
  color: #232323;
}
.cid-uIPLU0VIcD .mbr-section-subtitle {
  color: #101511;
  text-align: center;
}
.cid-uIPLU0VIcD .mbr-text {
  color: #6e716f;
}
.cid-uIPLU0VIcD .mbr-text,
.cid-uIPLU0VIcD .mbr-section-btn {
  color: #000000;
}
.cid-uSrKhi99T7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSrKhi99T7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSrKhi99T7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSrKhi99T7 .container,
.cid-uSrKhi99T7 .container-fluid {
  position: relative;
}
.cid-uSrKhi99T7 .row {
  justify-content: left;
}
.cid-uSrKhi99T7 .col-content {
  position: relative;
  z-index: 10;
}
.cid-uSrKhi99T7 .mbr-section-title {
  color: #000000;
}
.cid-uSrKhi99T7 .mbr-section-subtitle {
  color: #000000;
}
.cid-uSrKhi99T7 .mbr-text {
  color: #2B2B2B;
}
.cid-uSrKhi99T7 .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-uSrKhi99T7 .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-uSrKhi99T7 .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-uSrKhi99T7 .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrKhi99T7 .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #a38dfd 27%, #a38dfd 50%, #a38dfd 79%);
}
.cid-uSrKhi99T7 .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrKhi99T7 .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-udkuG3vLpq {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udkuG3vLpq .text-wrap {
  background-color: #ffffff;
  padding: 3rem 6rem;
}
.cid-udkuG3vLpq .img1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
}
.cid-udkuG3vLpq .link {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  cursor: pointer;
}
.cid-udkuG3vLpq .link:before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  right: 0rem;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: currentColor;
}
.cid-udkuG3vLpq .link:hover:before {
  margin-right: -0.4rem;
}
.cid-udkuG3vLpq .mbr-text,
.cid-udkuG3vLpq .link-wrap {
  text-align: left;
  color: #000000;
}
.cid-udkuG3vLpq H4 {
  color: #f055e4;
}
@media (max-width: 992px) {
  .cid-udkuG3vLpq .img1 {
    width: 50%;
  }
  .cid-udkuG3vLpq .text-wrap {
    background-color: #ffffff;
    padding: 2rem 2rem;
  }
}
.cid-udkuG3vLpq .mbr-fallback-image.disabled {
  display: none;
}
.cid-udkuG3vLpq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udkuG3vLpq H1 {
  color: #5a31fb;
}
.cid-uSrVgDir3r {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSrVgDir3r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSrVgDir3r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSrVgDir3r .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-uSrVgDir3r .mbr-section-title {
  color: #FF014E;
}
.cid-uSrVgDir3r .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uSrVgDir3r .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uSrVgDir3r .card-row {
  align-items: stretch;
}
.cid-uSrVgDir3r .card {
  margin-top: 40px;
}
.cid-uSrVgDir3r .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #5d61ee);
  box-shadow: 10px 10px 19px #cedff0, -10px -10px 19px #c6b9ff;
}
@media (max-width: 1199px) {
  .cid-uSrVgDir3r .card-wrapper {
    padding: 35px;
  }
}
.cid-uSrVgDir3r .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-uSrVgDir3r .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-uSrVgDir3r .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-uSrVgDir3r .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #8264fd, #ffffff);
  opacity: 0;
  transition: .5s all;
}
.cid-uSrVgDir3r .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-uSrVgDir3r .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-uSrVgDir3r .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
}
.cid-uSrVgDir3r .card-1 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uSrVgDir3r .card-2 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uSrVgDir3r .card-title {
  color: #8264fd;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-uSrVgDir3r .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-uSrVgDir3r .card-info {
  color: #C4CFDE;
  margin-top: 12px;
  margin-bottom: 10px;
}
.cid-uSrVgDir3r .card-text,
.cid-uSrVgDir3r .mbr-section-btn {
  color: #000000;
}
.cid-uSrKhUIkn0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSrKhUIkn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSrKhUIkn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSrKhUIkn0 .container,
.cid-uSrKhUIkn0 .container-fluid {
  position: relative;
}
.cid-uSrKhUIkn0 .row {
  justify-content: left;
}
.cid-uSrKhUIkn0 .col-content {
  position: relative;
  z-index: 10;
}
.cid-uSrKhUIkn0 .mbr-section-title {
  color: #000000;
}
.cid-uSrKhUIkn0 .mbr-section-subtitle {
  color: #000000;
}
.cid-uSrKhUIkn0 .mbr-text {
  color: #2B2B2B;
}
.cid-uSrKhUIkn0 .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-uSrKhUIkn0 .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-uSrKhUIkn0 .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-uSrKhUIkn0 .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrKhUIkn0 .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #a38dfd 27%, #a38dfd 50%, #a38dfd 79%);
}
.cid-uSrKhUIkn0 .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrKhUIkn0 .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSrWuQY9Tk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
.cid-uSrWuQY9Tk .carousel-control {
  background: #000;
}
.cid-uSrWuQY9Tk .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uSrWuQY9Tk .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSrWuQY9Tk .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-uSrWuQY9Tk .carousel-item .wrap-img {
  text-align: center;
}
.cid-uSrWuQY9Tk .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-uSrWuQY9Tk .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSrWuQY9Tk .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-uSrWuQY9Tk .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-uSrWuQY9Tk .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-uSrWuQY9Tk .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-uSrWuQY9Tk .cloneditem-1,
.cid-uSrWuQY9Tk .cloneditem-2,
.cid-uSrWuQY9Tk .cloneditem-3,
.cid-uSrWuQY9Tk .cloneditem-4,
.cid-uSrWuQY9Tk .cloneditem-5 {
  display: none;
}
.cid-uSrWuQY9Tk .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSrWuQY9Tk .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides2 .cloneditem-1,
  .cid-uSrWuQY9Tk .carousel-inner.slides2 .cloneditem-2,
  .cid-uSrWuQY9Tk .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides3 .cloneditem-1,
  .cid-uSrWuQY9Tk .carousel-inner.slides3 .cloneditem-2,
  .cid-uSrWuQY9Tk .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides4 .cloneditem-1,
  .cid-uSrWuQY9Tk .carousel-inner.slides4 .cloneditem-2,
  .cid-uSrWuQY9Tk .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides5 .cloneditem-1,
  .cid-uSrWuQY9Tk .carousel-inner.slides5 .cloneditem-2,
  .cid-uSrWuQY9Tk .carousel-inner.slides5 .cloneditem-3,
  .cid-uSrWuQY9Tk .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSrWuQY9Tk .carousel-inner.slides6 .cloneditem-1,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 .cloneditem-2,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 .cloneditem-3,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 .cloneditem-4,
  .cid-uSrWuQY9Tk .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-uSrWuQY9Tk H2 {
  color: #ffffff;
}
.cid-tWkD8sgj3b {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #c6b9ff;
  background: linear-gradient(180deg, #c6b9ff, #ffffff);
}
.cid-tWkD8sgj3b .mbr-iconfont-social {
  font-size: 32px;
  color: #5a31fb;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tWkD8sgj3b .mbr-iconfont-social:hover {
  color: #2d10a3;
}
.cid-tWkD8sgj3b .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tWkD8sgj3b .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #8264fd, #8264fd);
  display: inline-block;
}
.cid-tWkD8sgj3b .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tWkD8sgj3b .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tWkD8sgj3b .mbr-section-title,
.cid-tWkD8sgj3b .social-list,
.cid-tWkD8sgj3b .underline {
  color: #ffffff;
}
.cid-udkPy2M3iv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udkPy2M3iv .media-container-row .mbr-text {
  color: #000000;
}
.cid-uSrZlL4Vua .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .nav-item:focus,
.cid-uSrZlL4Vua .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uSrZlL4Vua .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link {
    position: relative;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #8264fd, #8264fd);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uSrZlL4Vua .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uSrZlL4Vua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSrZlL4Vua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSrZlL4Vua .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uSrZlL4Vua .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #a38dfd;
  background: linear-gradient(#ffffff, #a38dfd);
}
.cid-uSrZlL4Vua .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-uSrZlL4Vua .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uSrZlL4Vua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uSrZlL4Vua .navbar.collapsed .right-menu,
.cid-uSrZlL4Vua .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show .brand-container,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uSrZlL4Vua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uSrZlL4Vua .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uSrZlL4Vua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSrZlL4Vua .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uSrZlL4Vua .navbar .right-menu,
  .cid-uSrZlL4Vua .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uSrZlL4Vua .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSrZlL4Vua .navbar.navbar-short .mbr-overlay {
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSrZlL4Vua .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSrZlL4Vua .dropdown-item.active,
.cid-uSrZlL4Vua .dropdown-item:active {
  background-color: transparent;
}
.cid-uSrZlL4Vua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38dfd;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSrZlL4Vua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSrZlL4Vua ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uSrZlL4Vua .navbar-buttons {
  margin-left: auto;
}
.cid-uSrZlL4Vua button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua .navbar-dropdown {
  position: fixed;
}
.cid-uSrZlL4Vua a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSrZlL4Vua .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uSrZlL4Vua .right-menu,
.cid-uSrZlL4Vua .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uSrZlL4Vua .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uSrZlL4Vua .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uSrZlL4Vua .card-wrapper {
  z-index: 3;
}
.cid-uSrZlL4Vua .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJuxH5A3rH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uJuxH5A3rH .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-uJuxH5A3rH .donut {
    right: 15%;
    top: 80%;
  }
  .cid-uJuxH5A3rH .fire {
    left: 40%;
    bottom: 5%;
  }
  .cid-uJuxH5A3rH .hand {
    top: 70%;
    right: 1%;
  }
}
@media (max-width: 758px) {
  .cid-uJuxH5A3rH .sticker {
    width: 20%;
  }
  .cid-uJuxH5A3rH .donut {
    right: 10%;
    top: 70%;
  }
  .cid-uJuxH5A3rH .fire {
    left: 10%;
    bottom: 50%;
  }
  .cid-uJuxH5A3rH .hand {
    top: 50%;
    right: 10%;
  }
}
@media (min-width: 992px) {
  .cid-uJuxH5A3rH .sticker {
    width: 10%;
    position: absolute;
  }
  .cid-uJuxH5A3rH .donut {
    left: 50%;
    top: 70%;
  }
  .cid-uJuxH5A3rH .fire {
    right: 10%;
    top: 60%;
  }
  .cid-uJuxH5A3rH .hand {
    top: 5%;
    right: 5%;
  }
}
@media (min-width: 1400px) {
  .cid-uJuxH5A3rH .donut {
    left: 70%;
    top: 60%;
  }
  .cid-uJuxH5A3rH .fire {
    right: 5%;
    top: 40%;
  }
  .cid-uJuxH5A3rH .hand {
    top: 5%;
    right: 5%;
  }
}
.cid-uJuxH5A3rH .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uJuxH5A3rH .sticker {
    width: 10%;
    position: absolute;
  }
  .cid-uJuxH5A3rH .donut {
    left: 1%;
    top: 70%;
  }
  .cid-uJuxH5A3rH .fire {
    left: 30%;
    top: 60%;
  }
  .cid-uJuxH5A3rH .hand {
    top: 5%;
    left: 5%;
  }
}
@media (min-width: 1400px) {
  .cid-uJuxH5A3rH .donut {
    left: 5%;
    top: 40%;
  }
  .cid-uJuxH5A3rH .fire {
    left: 35%;
  }
}
.cid-uJuxH5A3rH .row {
  align-items: center;
  min-height: 500px;
}
.cid-uJuxH5A3rH .image-wrapper {
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}
.cid-uJuxH5A3rH .image-wrapper img {
  object-fit: cover;
  height: 100%;
  min-height: 500px;
}
@media (max-width: 991px) {
  .cid-uJuxH5A3rH .image-wrapper img {
    max-height: 500px;
  }
}
.cid-uJuxH5A3rH .index {
  z-index: 1;
}
.cid-uJuxH5A3rH .text-wrapper {
  padding: 0 4rem;
}
@media (max-width: 991px) {
  .cid-uJuxH5A3rH .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uJuxH5A3rH .text-wrapper {
    padding: 0 12px;
  }
}
.cid-uJuxH5A3rH .mbr-section-title {
  color: #5a31fb;
  text-align: left;
  font-weight: 600;
}
.cid-uJuxH5A3rH .mbr-text {
  font-size: 24px;
}
.cid-uJuxH5A3rH .mbr-text,
.cid-uJuxH5A3rH .mbr-section-btn {
  color: #be926a;
  text-align: left;
}
.cid-uJuxH5A3rH .btn {
  border-radius: 59px;
  font-size: 18px;
  font-weight: 600;
  padding: 26px 63px;
  color: #000000 !important;
  border: 2px solid;
  border-color: #000000 !important;
}
.cid-uJuxH5A3rH .btn:hover,
.cid-uJuxH5A3rH .btn:focus {
  border-color: #000000 !important;
  background-color: #f4aee6 !important;
}
.cid-uJuxH5A3rH .link {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-uJuxH5A3rH .link {
    top: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uJuxH5A3rH .link {
    width: 160px;
    height: 160px;
  }
}
.cid-uJuxH5A3rH .link img {
  width: 160px;
  height: 160px;
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot;
  -webkit-animation: 15s linear 0s normal none infinite running rot;
}
.cid-uJuxH5A3rH .iconfont-wrapper {
  position: absolute;
}
.cid-uJuxH5A3rH .iconfont-wrapper span {
  color: #000000;
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .cid-uJuxH5A3rH .container-fluid {
    padding: 0 0.75rem;
  }
}
@media (min-width: 992px) {
  .cid-uJuxH5A3rH .container-fluid {
    padding: 0 16px;
  }
}
@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-udkFSrZrWD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-udkFSrZrWD .section-head {
  margin-bottom: 2rem;
}
.cid-udkFSrZrWD .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-udkFSrZrWD .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-udkFSrZrWD .row {
    text-align: center;
  }
}
.cid-udkFSrZrWD .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-udkFSrZrWD .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-udkFSrZrWD .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-udkFSrZrWD .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-uJuvKNpNLz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJuvKNpNLz img,
.cid-uJuvKNpNLz .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uJuvKNpNLz .item:focus,
.cid-uJuvKNpNLz span:focus {
  outline: none;
}
.cid-uJuvKNpNLz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJuvKNpNLz .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-uJuvKNpNLz .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-uJuvKNpNLz .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-uJuvKNpNLz .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-uJuvKNpNLz .item-content {
    padding: 1rem 0;
  }
}
.cid-uJuvKNpNLz .mbr-section-title {
  color: #36187d;
}
.cid-uJuvKNpNLz .item-title {
  color: #8264fd;
  text-align: center;
}
.cid-uJuvKNpNLz .item-subtitle {
  color: #bec2cf;
}
.cid-uJuvKNpNLz .mbr-text,
.cid-uJuvKNpNLz .mbr-section-btn {
  color: #000000;
}
.cid-uJuvKNpNLz .mbr-link {
  color: #0196e3;
}
.cid-udJTKDMB4l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-udJTKDMB4l .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-udJTKDMB4l .row {
  flex-direction: row-reverse;
}
.cid-udJTKDMB4l img {
  width: 100%;
}
.cid-udJTKDMB4l .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #8264fd;
}
.cid-udJTKDMB4l .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-udJTKDMB4l .svg-top {
    width: 1000px;
  }
}
.cid-udJTKDMB4l .mbr-description {
  color: #ffffff;
}
.cid-tWkKY42fK8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #8264fd;
  background: linear-gradient(180deg, #8264fd, #ffffff);
}
.cid-tWkKY42fK8 .mbr-iconfont-social {
  font-size: 32px;
  color: #5a31fb;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tWkKY42fK8 .mbr-iconfont-social:hover {
  color: #2d10a3;
}
.cid-tWkKY42fK8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tWkKY42fK8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #8264fd, #8264fd);
  display: inline-block;
}
.cid-tWkKY42fK8 .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tWkKY42fK8 .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tWkKY42fK8 .mbr-section-title,
.cid-tWkKY42fK8 .social-list,
.cid-tWkKY42fK8 .underline {
  color: #5a31fb;
}
.cid-udkPy2M3iv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udkPy2M3iv .media-container-row .mbr-text {
  color: #000000;
}
.cid-uSrZlL4Vua .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .nav-item:focus,
.cid-uSrZlL4Vua .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uSrZlL4Vua .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link {
    position: relative;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #8264fd, #8264fd);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uSrZlL4Vua .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uSrZlL4Vua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSrZlL4Vua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSrZlL4Vua .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uSrZlL4Vua .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #a38dfd;
  background: linear-gradient(#ffffff, #a38dfd);
}
.cid-uSrZlL4Vua .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-uSrZlL4Vua .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uSrZlL4Vua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uSrZlL4Vua .navbar.collapsed .right-menu,
.cid-uSrZlL4Vua .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show .brand-container,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uSrZlL4Vua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uSrZlL4Vua .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uSrZlL4Vua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSrZlL4Vua .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uSrZlL4Vua .navbar .right-menu,
  .cid-uSrZlL4Vua .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uSrZlL4Vua .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSrZlL4Vua .navbar.navbar-short .mbr-overlay {
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSrZlL4Vua .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSrZlL4Vua .dropdown-item.active,
.cid-uSrZlL4Vua .dropdown-item:active {
  background-color: transparent;
}
.cid-uSrZlL4Vua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38dfd;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSrZlL4Vua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSrZlL4Vua ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uSrZlL4Vua .navbar-buttons {
  margin-left: auto;
}
.cid-uSrZlL4Vua button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua .navbar-dropdown {
  position: fixed;
}
.cid-uSrZlL4Vua a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSrZlL4Vua .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uSrZlL4Vua .right-menu,
.cid-uSrZlL4Vua .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uSrZlL4Vua .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uSrZlL4Vua .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uSrZlL4Vua .card-wrapper {
  z-index: 3;
}
.cid-uSrZlL4Vua .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJutXFxhCu {
  background-image: url("../../../assets/images/7c43bde088481401f6dcc99eaa10589f.jpg-750x846.jpg");
}
.cid-uJutXFxhCu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uJutXFxhCu .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uJutXFxhCu .col-text {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uJutXFxhCu .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uJutXFxhCu .col-form {
    padding: 30px;
  }
}
.cid-uJutXFxhCu .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-uJutXFxhCu .text-wrapper {
    text-align: center !important;
  }
}
.cid-uJutXFxhCu .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uJutXFxhCu .label-text {
    text-align: center !important;
  }
}
.cid-uJutXFxhCu .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-uJutXFxhCu .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uJutXFxhCu .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uJutXFxhCu .mbr-text {
    text-align: center !important;
  }
}
.cid-uJutXFxhCu .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-uJutXFxhCu .btn-container {
  width: 100%;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .cid-uJutXFxhCu .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uJutXFxhCu .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uJutXFxhCu .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uJutXFxhCu .form-container {
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .cid-uJutXFxhCu .form-container {
    max-width: 22rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cid-uJutXFxhCu .form-container {
    text-align: center !important;
  }
}
.cid-uJutXFxhCu .form-title {
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uJutXFxhCu .form-title {
    text-align: center !important;
  }
}
.cid-uJutXFxhCu .form-control {
  font-size: 1rem;
}
.cid-uJutXFxhCu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJutXFxhCu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJutXFxhCu .mbr-section-title,
.cid-uJutXFxhCu .mbr-section-btn {
  color: #5a31fb;
}
.cid-uJuvt6wRnv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uJuvt6wRnv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJuvt6wRnv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJuvt6wRnv .section-border-item {
  background-color: #55bb8b;
}
.cid-uJuvt6wRnv .mbr-section-title {
  color: #fff;
}
.cid-uJuvt6wRnv .mbr-section-subtitle {
  color: #5a31fb;
  background-image: linear-gradient(175deg, currentColor, #c6b9ff) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.cid-uJuvt6wRnv .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uJuvt6wRnv .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-udkzgvIGBF {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-udkzgvIGBF .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #a38dfd;
  margin-bottom: 1.5rem;
}
.cid-udkzgvIGBF .col-lg-4,
.cid-udkzgvIGBF .col-12 {
  padding: 0 2rem;
}
.cid-udkzgvIGBF .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-udkzgvIGBF .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-udkzgvIGBF .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-udkzgvIGBF .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-udkzgvIGBF .card-title,
.cid-udkzgvIGBF .iconfont-wrapper {
  color: #5a31fb;
  text-align: center;
}
.cid-udkzgvIGBF .card-text {
  color: #000000;
  text-align: center;
}
.cid-udkzgvIGBF .mbr-section-subtitle {
  color: #6c758f;
}
.cid-udkzgvIGBF .mbr-section-title {
  color: #36187d;
}
.cid-udkzgvIGBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-udkzgvIGBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSs7at5jAq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSs7at5jAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSs7at5jAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSs7at5jAq .container,
.cid-uSs7at5jAq .container-fluid {
  position: relative;
}
.cid-uSs7at5jAq .row {
  justify-content: left;
}
.cid-uSs7at5jAq .col-content {
  position: relative;
  z-index: 10;
}
.cid-uSs7at5jAq .mbr-section-title {
  color: #000000;
}
.cid-uSs7at5jAq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSs7at5jAq .mbr-text {
  color: #2B2B2B;
}
.cid-uSs7at5jAq .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-uSs7at5jAq .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-uSs7at5jAq .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-uSs7at5jAq .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSs7at5jAq .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #a38dfd 27%, #a38dfd 50%, #a38dfd 79%);
}
.cid-uSs7at5jAq .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSs7at5jAq .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-udkAj7DaCJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-udkAj7DaCJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-udkAj7DaCJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udkAj7DaCJ .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-udkAj7DaCJ .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-udkAj7DaCJ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-udkAj7DaCJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-udkAj7DaCJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-udkAj7DaCJ .content-head {
  max-width: 800px;
}
.cid-udkAj7DaCJ .mbr-section-title {
  color: #ffffff;
}
.cid-tWkBAl2UXS {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #a38dfd;
  background: linear-gradient(180deg, #a38dfd, #ffffff);
}
.cid-tWkBAl2UXS .mbr-iconfont-social {
  font-size: 32px;
  color: #5a31fb;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tWkBAl2UXS .mbr-iconfont-social:hover {
  color: #2d10a3;
}
.cid-tWkBAl2UXS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tWkBAl2UXS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #8264fd, #8264fd);
  display: inline-block;
}
.cid-tWkBAl2UXS .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tWkBAl2UXS .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tWkBAl2UXS .mbr-section-title,
.cid-tWkBAl2UXS .social-list,
.cid-tWkBAl2UXS .underline {
  color: #8264fd;
}
.cid-udkPy2M3iv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udkPy2M3iv .media-container-row .mbr-text {
  color: #000000;
}
.cid-uSrZlL4Vua .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .nav-item:focus,
.cid-uSrZlL4Vua .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uSrZlL4Vua .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link {
    position: relative;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #8264fd, #8264fd);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uSrZlL4Vua .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSrZlL4Vua .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uSrZlL4Vua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSrZlL4Vua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSrZlL4Vua .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uSrZlL4Vua .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #a38dfd;
  background: linear-gradient(#ffffff, #a38dfd);
}
.cid-uSrZlL4Vua .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-uSrZlL4Vua .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSrZlL4Vua .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uSrZlL4Vua .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uSrZlL4Vua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSrZlL4Vua .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSrZlL4Vua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uSrZlL4Vua .navbar.collapsed .right-menu,
.cid-uSrZlL4Vua .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .navbar-collapse.show .brand-container,
  .cid-uSrZlL4Vua .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uSrZlL4Vua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uSrZlL4Vua .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uSrZlL4Vua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSrZlL4Vua .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSrZlL4Vua .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uSrZlL4Vua .navbar .right-menu,
  .cid-uSrZlL4Vua .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uSrZlL4Vua .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSrZlL4Vua .navbar.navbar-short .mbr-overlay {
  background: #a38dfd !important;
  background: linear-gradient(#ffffff, #a38dfd) !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uSrZlL4Vua .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSrZlL4Vua .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSrZlL4Vua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSrZlL4Vua .dropdown-item.active,
.cid-uSrZlL4Vua .dropdown-item:active {
  background-color: transparent;
}
.cid-uSrZlL4Vua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSrZlL4Vua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38dfd;
}
.cid-uSrZlL4Vua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSrZlL4Vua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSrZlL4Vua ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uSrZlL4Vua .navbar-buttons {
  margin-left: auto;
}
.cid-uSrZlL4Vua button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSrZlL4Vua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uSrZlL4Vua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSrZlL4Vua .navbar-dropdown {
  position: fixed;
}
.cid-uSrZlL4Vua a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSrZlL4Vua .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uSrZlL4Vua .right-menu,
.cid-uSrZlL4Vua .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uSrZlL4Vua .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uSrZlL4Vua .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uSrZlL4Vua .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uSrZlL4Vua .card-wrapper {
  z-index: 3;
}
.cid-uSrZlL4Vua .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uSrZlL4Vua .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSrZlL4Vua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJus7NHL8U {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJus7NHL8U .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #a38dfd none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uJus7NHL8U .photo-split {
  position: relative;
}
.cid-uJus7NHL8U .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-uJus7NHL8U .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #a38dfd;
  position: absolute;
  z-index: 7;
  left: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uJus7NHL8U .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #a38dfd;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uJus7NHL8U .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uJus7NHL8U .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #a38dfd;
  font-size: 2.45rem;
  color: #4f87fb;
  margin-right: 15px;
  z-index: 10;
}
.cid-uJus7NHL8U .wrap-block {
  padding: 3rem 3rem;
}
.cid-uJus7NHL8U .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-uJus7NHL8U .wrap-block .contents h3 {
  color: #130947;
  letter-spacing: -0.5px;
}
.cid-uJus7NHL8U .wrap-block .contents h4 {
  color: #6d7a8c;
}
.cid-uJus7NHL8U .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-uJus7NHL8U .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #a38dfd;
  font-size: 2.45rem;
  color: #ffffff;
  margin-right: 15px;
}
.cid-uJus7NHL8U .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
  width: auto;
}
.cid-uJus7NHL8U .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uJus7NHL8U .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #130947;
}
.cid-uJus7NHL8U .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-uJus7NHL8U .photo-split {
    padding: 3rem 3rem;
  }
  .cid-uJus7NHL8U .photo-split .element-outer,
  .cid-uJus7NHL8U .photo-split .element-outer2 {
    display: none;
  }
  .cid-uJus7NHL8U .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-uJus7NHL8U .mbr-section-title,
  .cid-uJus7NHL8U .mbr-section-subtitle,
  .cid-uJus7NHL8U .mbr-text {
    text-align: left !important;
  }
  .cid-uJus7NHL8U .social-list {
    text-align: left !important;
  }
}
.cid-uJus7NHL8U .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-uJus7NHL8U .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-uJus7NHL8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJus7NHL8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJus7NHL8U .wrap-block .contents h4,
.cid-uJus7NHL8U .menu-content-right {
  color: #000000;
}
.cid-uJus7NHL8U .wrap-block .contents h3,
.cid-uJus7NHL8U .menu-content-right {
  color: #ffffff;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-section-title,
.cid-uJus7NHL8U .menu-content-right {
  color: #5a31fb;
}
.cid-uJus7NHL8U .info-widget .widget-content .widget-title,
.cid-uJus7NHL8U .widget-icon {
  color: #ab8437;
}
.cid-uJus7NHL8U .info-widget .widget-content .widget-text {
  color: #bbbbbb;
}
.cid-uJus7NHL8U .wrap-block .contents .mbr-subtitle,
.cid-uJus7NHL8U .menu-content-right {
  color: #44f7b3;
}
.cid-ud3mhwf9e0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ud3mhwf9e0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud3mhwf9e0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud3mhwf9e0 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ud3mhwf9e0 .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ud3mhwf9e0 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ud3mhwf9e0 .container {
    padding: 0 16px;
  }
}
.cid-ud3mhwf9e0 .row {
  justify-content: space-between;
}
.cid-ud3mhwf9e0 .title-wrapper {
  position: sticky;
}
.cid-ud3mhwf9e0 .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ud3mhwf9e0 .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ud3mhwf9e0 .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #8264fd, #cedff0 34%, #a38dfd 67%, #c6b9ff) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ud3mhwf9e0 .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #ffffff;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-ud3mhwf9e0 .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #8264fd, #cedff0 34%, #a38dfd 67%, #c6b9ff);
  border-radius: 50%;
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-ud3mhwf9e0 .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ud3mhwf9e0 .mbr-section-title {
  color: #ffffff;
}
.cid-ud3mhwf9e0 .panel-title-edit {
  color: #000000;
}
.cid-ud3mhwf9e0 .panel-text {
  color: #000000;
}
.cid-udJTw8aOhO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-udJTw8aOhO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-udJTw8aOhO .row {
  flex-direction: row-reverse;
}
.cid-udJTw8aOhO img {
  width: 100%;
}
.cid-udJTw8aOhO .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #8264fd;
}
.cid-udJTw8aOhO .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-udJTw8aOhO .svg-top {
    width: 1000px;
  }
}
.cid-udJTw8aOhO .mbr-description {
  color: #ffffff;
}
.cid-ud3mo366lU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ud3mo366lU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud3mo366lU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud3mo366lU .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ud3mo366lU .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ud3mo366lU .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ud3mo366lU .container {
    padding: 0 16px;
  }
}
.cid-ud3mo366lU .row {
  justify-content: space-between;
}
.cid-ud3mo366lU .title-wrapper {
  position: sticky;
}
.cid-ud3mo366lU .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ud3mo366lU .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ud3mo366lU .tabs-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ud3mo366lU .tabs-wrap {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-ud3mo366lU .tabs-wrap .nav.nav-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  border: none;
}
.cid-ud3mo366lU .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  margin: 0 16px 16px 0;
}
.cid-ud3mo366lU .tabs-wrap .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-ud3mo366lU .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  margin-bottom: 0;
  color: #000000;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #000000;
  border-radius: 100em !important;
  background-color: transparent;
  position: relative;
  transition: all .3s ease;
  z-index: 11;
}
.cid-ud3mo366lU .tabs-wrap .nav.nav-tabs .nav-item .nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #cedff0, #8467fd 34%, #c6b9ff 67%, #a38dfd) !important;
  border-radius: 100em;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.cid-ud3mo366lU .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active::after {
  opacity: 1;
}
.cid-ud3mo366lU .tabs-wrap .desc-wrapper .mbr-desc {
  margin-top: 32px;
}
.cid-ud3mo366lU .tabs-wrap .desc-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-ud3mo366lU .content-wrapper .image-wrapper {
  margin-bottom: 36px;
}
.cid-ud3mo366lU .content-wrapper .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: .5em !important;
  box-shadow: 0 7px 20px #8264fd;
}
@media (max-width: 768px) {
  .cid-ud3mo366lU .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-ud3mo366lU .content-wrapper .text-wrapper .card-text {
  margin-bottom: 0;
}
.cid-ud3mo366lU .mbr-section-title {
  color: #080808;
}
.cid-ud3mo366lU .mbr-desc {
  color: #5a31fb;
}
.cid-ud3mo366lU .card-text {
  color: #000000;
}
.cid-udkPDpOx8v {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #a38dfd;
  background: linear-gradient(180deg, #a38dfd, #ffffff);
}
.cid-udkPDpOx8v .mbr-iconfont-social {
  font-size: 32px;
  color: #5a31fb;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-udkPDpOx8v .mbr-iconfont-social:hover {
  color: #2d10a3;
}
.cid-udkPDpOx8v .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-udkPDpOx8v .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #8264fd, #8264fd);
  display: inline-block;
}
.cid-udkPDpOx8v .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-udkPDpOx8v .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-udkPDpOx8v .mbr-section-title,
.cid-udkPDpOx8v .social-list,
.cid-udkPDpOx8v .underline {
  color: #ffffff;
}
.cid-udkPy2M3iv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udkPy2M3iv .media-container-row .mbr-text {
  color: #000000;
}
