body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Abril Fatface', display;
  font-size: 3rem;
}
.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: 1.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #ffffff !important;
}
.bg-success {
  background-color: #6a3597 !important;
}
.bg-info {
  background-color: #d31fa7 !important;
}
.bg-warning {
  background-color: #000000 !important;
}
.bg-danger {
  background-color: #d248ce !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: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #a529a1;
  border-color: #a529a1;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #d248ce !important;
  border-color: #d248ce !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #a529a1 !important;
  border-color: #a529a1 !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: #a529a1 !important;
  border-color: #a529a1 !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: #901572;
  border-color: #901572;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #d31fa7 !important;
  border-color: #d31fa7 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #901572 !important;
  border-color: #901572 !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: #901572 !important;
  border-color: #901572 !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: #42215e;
  border-color: #42215e;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #6a3597 !important;
  border-color: #6a3597 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #42215e !important;
  border-color: #42215e !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: #42215e !important;
  border-color: #42215e !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: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !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: #a529a1;
  border-color: #a529a1;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #d248ce !important;
  border-color: #d248ce !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #a529a1 !important;
  border-color: #a529a1 !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: #a529a1 !important;
  border-color: #a529a1 !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: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.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: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #d248ce;
  border-color: #d248ce;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #90248d;
  color: #90248d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #d248ce;
  border-color: #d248ce;
}
.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: #d248ce !important;
  border-color: #d248ce !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: #d31fa7;
  border-color: #d31fa7;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #7a1261;
  color: #7a1261 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #d31fa7;
  border-color: #d31fa7;
}
.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: #d31fa7 !important;
  border-color: #d31fa7 !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: #6a3597;
  border-color: #6a3597;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #351b4c;
  color: #351b4c !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #6a3597;
  border-color: #6a3597;
}
.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: #6a3597 !important;
  border-color: #6a3597 !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: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !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: #d248ce;
  border-color: #d248ce;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #90248d;
  color: #90248d !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #d248ce;
  border-color: #d248ce;
}
.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: #d248ce !important;
  border-color: #d248ce !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: #ffffff !important;
}
.text-secondary {
  color: #d248ce !important;
}
.text-success {
  color: #6a3597 !important;
}
.text-info {
  color: #d31fa7 !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #d248ce !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #90248d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #351b4c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #7a1261 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #90248d !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: #6a3597;
}
.alert-info {
  background-color: #d31fa7;
}
.alert-warning {
  background-color: #000000;
}
.alert-danger {
  background-color: #d248ce;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.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: #a97bd1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f7c7eb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #faecfa;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
}
blockquote {
  border-color: #ffffff;
}
/* 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: #ffffff;
  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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !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: #d248ce !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='%23ffffff' %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-upTFIytS4E {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-upTFIytS4E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-upTFIytS4E .btn {
  font-weight: 400;
}
.cid-upTFIytS4E .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upTFIytS4E .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upTFIytS4E .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-upTFIytS4E .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-upTFIytS4E .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-upTFIytS4E .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-upTFIytS4E .nav-link {
  width: fit-content;
  position: relative;
}
.cid-upTFIytS4E .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-upTFIytS4E .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-upTFIytS4E .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-upTFIytS4E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upTFIytS4E .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.7) !important;
}
.cid-upTFIytS4E .nav-item:focus,
.cid-upTFIytS4E .nav-link:focus {
  outline: none;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upTFIytS4E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upTFIytS4E .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-upTFIytS4E .navbar.opened {
  transition: all 0.25s;
}
.cid-upTFIytS4E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upTFIytS4E .navbar .navbar-logo img {
  width: auto;
}
.cid-upTFIytS4E .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-upTFIytS4E .navbar.collapsed {
  justify-content: center;
}
.cid-upTFIytS4E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upTFIytS4E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upTFIytS4E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upTFIytS4E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar {
    min-height: 72px;
  }
  .cid-upTFIytS4E .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upTFIytS4E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upTFIytS4E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-upTFIytS4E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upTFIytS4E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-upTFIytS4E .dropdown-item.active,
.cid-upTFIytS4E .dropdown-item:active {
  background-color: transparent;
}
.cid-upTFIytS4E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-upTFIytS4E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upTFIytS4E .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .navbar-buttons {
    text-align: left;
  }
}
.cid-upTFIytS4E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E .navbar-dropdown {
  padding: 0;
  background: rgba(255, 255, 255, 0.7) !important;
  position: fixed;
}
.cid-upTFIytS4E .opacityScroll {
  background: #ffffff !important;
}
.cid-upTFIytS4E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upTFIytS4E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTFIytS4E .navbar {
    height: 70px;
  }
  .cid-upTFIytS4E .navbar.opened {
    height: auto;
  }
  .cid-upTFIytS4E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-upTFIytS4E .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-upTFIytS4E .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar-brand {
    margin-right: auto;
  }
  .cid-upTFIytS4E .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px);
  }
  .cid-upTFIytS4E .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-upTFIytS4E .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXYUY1oYuT {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/6cb3b3714496104d90dd6e609c460718.jpg-659x564.jpg");
}
.cid-tXYUY1oYuT .first,
.cid-tXYUY1oYuT .second,
.cid-tXYUY1oYuT .third {
  display: inline-block;
}
.cid-tXYUY1oYuT img {
  max-width: 350px;
  height: auto;
}
.cid-tXYUY1oYuT .mbr-section-title {
  color: #1d1d1f;
  padding-bottom: 28px;
  margin-bottom: 0;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.cid-tXYUY1oYuT .mbr-section-subtitle {
  color: #4c4c4c;
  margin-bottom: 60px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
.cid-tXYUY1oYuT .row {
  align-items: flex-end;
}
.cid-tXYUY1oYuT .padd {
  padding: 0 15px;
  margin: 0;
}
.cid-uoKNUnFehN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uoKNUnFehN h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uoKNUnFehN span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uoKNUnFehN .mbr-section-title {
  color: #ffffff;
}
.cid-tXZ347QBNw {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #ffffff 30%, #ffffff 100%);
}
.cid-tXZ347QBNw .animated-element {
  color: #6a3597;
}
.cid-tXZ347QBNw .img-block {
  -webkit-align-self: center;
  align-self: center -5px;
}
.cid-tXZ347QBNw .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-tXZ347QBNw .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXZ347QBNw .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tXZ347QBNw {
    background: #ffffff;
  }
  .cid-tXZ347QBNw .img-block {
    padding-bottom: 2rem;
  }
}
.cid-tXZ347QBNw .mbr-section-title {
  color: #000000;
}
.cid-tXZ347QBNw .mbr-text,
.cid-tXZ347QBNw .mbr-section-btn {
  color: #000000;
}
.cid-uoKNVyXFjr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uoKNVyXFjr h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uoKNVyXFjr span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uoKNVyXFjr .mbr-section-title {
  color: #ffffff;
}
.cid-uW7Ksworvb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uW7Ksworvb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW7Ksworvb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW7Ksworvb .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-uW7Ksworvb .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uW7Ksworvb .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-uW7Ksworvb .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f6b6b9;
  border-top: 2px solid #f6b6b9;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-uW7Ksworvb .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-uW7Ksworvb .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uW7Ksworvb .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uW7Ksworvb .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uW7Ksworvb .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uW7Ksworvb .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uW7Ksworvb .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-uW7Ksworvb .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uW7Ksworvb .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #bc4bb9;
  border-top: 3px solid #6a3597;
  box-shadow: 0 8px 15px -8px #6a3597;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uW7Ksworvb .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap {
  width: 180px;
  height: 180px;
  display: inline-flex;
  padding: 10px;
  border-top: 3px solid #6a3597;
  box-shadow: 0 10px 12px -8px #6a3597;
  background-color: #bc4bb9;
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap .mbr-iconfont {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  border-top: 3px solid #6a3597;
  box-shadow: 0 8px 12px -8px #6a3597;
  background-color: #bc4bb9;
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 10px;
}
.cid-uW7Ksworvb .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uW7Ksworvb .mbr-label,
.cid-uW7Ksworvb .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uW7Ksworvb .mbr-section-title,
.cid-uW7Ksworvb .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uW7Ksworvb .mbr-text,
.cid-uW7Ksworvb .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-uW7Ksworvb .item-title {
  color: #000000;
}
.cid-uW7Ksworvb .item-text {
  color: #515151;
}
.cid-uW7Ksworvb .item-title,
.cid-uW7Ksworvb .mbr-section-btn {
  text-align: center;
}
.cid-uoKVbaQPJt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uoKVbaQPJt h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uoKVbaQPJt span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uoKVbaQPJt .mbr-section-title {
  color: #ffffff;
}
.cid-uW7MEMGwGR {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uW7MEMGwGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW7MEMGwGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW7MEMGwGR .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-uW7MEMGwGR .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uW7MEMGwGR .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-uW7MEMGwGR .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-uW7MEMGwGR .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-uW7MEMGwGR .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uW7MEMGwGR .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uW7MEMGwGR .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uW7MEMGwGR .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uW7MEMGwGR .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uW7MEMGwGR .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-uW7MEMGwGR .items-wrapper .card {
  padding: 0 12px;
}
@media (max-width: 992px) {
  .cid-uW7MEMGwGR .items-wrapper .card {
    margin-bottom: 18px;
  }
}
.cid-uW7MEMGwGR .items-wrapper .card .card-wrapper {
  height: 100%;
  background-color: #bc4bb9;
  border-top: 3px solid #6a3597;
  box-shadow: 0 8px 15px -8px #d31fa7;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uW7MEMGwGR .items-wrapper .card .card-wrapper {
    padding: 24px;
  }
}
.cid-uW7MEMGwGR .items-wrapper .card .card-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uW7MEMGwGR .items-wrapper .card .card-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-uW7MEMGwGR .items-wrapper .card .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uW7MEMGwGR .items-wrapper .card .card-wrapper .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uW7MEMGwGR .items-wrapper .card .card-wrapper .image-wrapper {
    height: 300px;
  }
}
.cid-uW7MEMGwGR .items-wrapper .card .card-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
.cid-uW7MEMGwGR .items-wrapper .card .text-wrapper {
  padding: 60px 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uW7MEMGwGR .items-wrapper .card .text-wrapper {
    padding: 24px;
  }
}
.cid-uW7MEMGwGR .mbr-label,
.cid-uW7MEMGwGR .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uW7MEMGwGR .mbr-section-title,
.cid-uW7MEMGwGR .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uW7MEMGwGR .mbr-text,
.cid-uW7MEMGwGR .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-uW7MEMGwGR .item-text {
  color: #000000;
}
.cid-uW7MEMGwGR .item-text,
.cid-uW7MEMGwGR .mbr-section-btn {
  text-align: center;
}
.cid-uoKNXY8SJq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uoKNXY8SJq h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uoKNXY8SJq span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uoKNXY8SJq .mbr-section-title {
  color: #ffffff;
}
.cid-tY9AWEU55u {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tY9AWEU55u .line {
  background-color: #d248ce;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tY9AWEU55u .mbr-text {
  color: #000000;
}
.cid-uW7L7vgRIQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uW7L7vgRIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW7L7vgRIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW7L7vgRIQ .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uW7L7vgRIQ .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uW7L7vgRIQ .items-wrapper {
  margin: 0 -13px;
}
.cid-uW7L7vgRIQ .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uW7L7vgRIQ .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uW7L7vgRIQ .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uW7L7vgRIQ .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uW7L7vgRIQ .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uW7L7vgRIQ .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #d248ce, #f5eaff 85%);
}
.cid-uW7L7vgRIQ .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #d248ce, #f5eaff 85%);
}
.cid-uW7L7vgRIQ .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #d248ce, #f5eaff 85%);
}
.cid-uW7L7vgRIQ .mbr-section-title,
.cid-uW7L7vgRIQ .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uW7L7vgRIQ .item-title {
  color: #ffffff;
}
.cid-uW7L7vgRIQ .item-text {
  color: #000000;
}
.cid-uW7L7vgRIQ .item-title,
.cid-uW7L7vgRIQ .mbr-section-btn {
  color: #000000;
}
.cid-uoKNifqPAl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uoKNifqPAl h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uoKNifqPAl span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uoKNifqPAl .mbr-section-title {
  color: #ffffff;
}
.cid-tY9DCpyuB3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
.cid-tY9DCpyuB3 .carousel-control {
  background: #000;
}
.cid-tY9DCpyuB3 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tY9DCpyuB3 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tY9DCpyuB3 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tY9DCpyuB3 .carousel-item .wrap-img {
  text-align: center;
}
.cid-tY9DCpyuB3 .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-tY9DCpyuB3 .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tY9DCpyuB3 .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-tY9DCpyuB3 .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-tY9DCpyuB3 .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-tY9DCpyuB3 .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-tY9DCpyuB3 .cloneditem-1,
.cid-tY9DCpyuB3 .cloneditem-2,
.cid-tY9DCpyuB3 .cloneditem-3,
.cid-tY9DCpyuB3 .cloneditem-4,
.cid-tY9DCpyuB3 .cloneditem-5 {
  display: none;
}
.cid-tY9DCpyuB3 .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-tY9DCpyuB3 .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides2 .cloneditem-1,
  .cid-tY9DCpyuB3 .carousel-inner.slides2 .cloneditem-2,
  .cid-tY9DCpyuB3 .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides3 .cloneditem-1,
  .cid-tY9DCpyuB3 .carousel-inner.slides3 .cloneditem-2,
  .cid-tY9DCpyuB3 .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides4 .cloneditem-1,
  .cid-tY9DCpyuB3 .carousel-inner.slides4 .cloneditem-2,
  .cid-tY9DCpyuB3 .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides5 .cloneditem-1,
  .cid-tY9DCpyuB3 .carousel-inner.slides5 .cloneditem-2,
  .cid-tY9DCpyuB3 .carousel-inner.slides5 .cloneditem-3,
  .cid-tY9DCpyuB3 .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tY9DCpyuB3 .carousel-inner.slides6 .cloneditem-1,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 .cloneditem-2,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 .cloneditem-3,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 .cloneditem-4,
  .cid-tY9DCpyuB3 .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-tY9DCpyuB3 H2 {
  color: #ffffff;
}
.cid-uXDrYJG829 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXDrYJG829 h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uXDrYJG829 span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uXDrYJG829 .mbr-section-title {
  color: #ffffff;
}
.cid-uXDrVK6pfo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXDrVK6pfo .geometry {
  position: absolute;
}
.cid-uXDrVK6pfo .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-uXDrVK6pfo .geometry_left {
  left: -70px;
}
.cid-uXDrVK6pfo .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-uXDrVK6pfo .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #d248ce;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-uXDrVK6pfo .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-uXDrVK6pfo blockquote {
  border-color: #000000;
  border-radius: 34px;
  margin: 0;
  background-color: #bc4bb9;
}
.cid-uXDrVK6pfo blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-uXDrVK6pfo blockquote {
    padding: 2rem 1rem;
  }
  .cid-uXDrVK6pfo .geometry {
    position: absolute;
  }
  .cid-uXDrVK6pfo .geometry__square,
  .cid-uXDrVK6pfo .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-uXDrVK6pfo .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-uXDrVK6pfo blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-uXDrVK6pfo .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-uXDrVK6pfo .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-uXDrVK6pfo blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uXDrVK6pfo .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-uXDrVK6pfo blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tY9E7EH1Kd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/whatsapp-image-2021-10-20-at-7.57.22-am-450x419.jpg");
}
.cid-tY9E7EH1Kd .svg-top {
  display: none;
}
@media (max-width: 991px) {
  .cid-tY9E7EH1Kd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tY9E7EH1Kd .row {
  flex-direction: row-reverse;
}
.cid-tY9E7EH1Kd img {
  width: 100%;
}
.cid-tY9E7EH1Kd .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: #ffffff;
}
.cid-tY9E7EH1Kd .svg-top .st0 {
  fill: "file:///C:/Users/USER/Downloads/MAKA2/MAKA2/assets/images/whatsapp-image-2021-10-20-at-7.57.22-am-450x419.jpg";
}
@media (max-width: 992px) {
  .cid-tY9E7EH1Kd .svg-top {
    width: 1000px;
  }
}
.cid-tY9E7EH1Kd .mbr-description {
  color: #ffffff;
}
.cid-tYf8wxur5R {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tYf8wxur5R h3 {
  line-height: 1;
  letter-spacing: -3px;
  position: relative;
}
.cid-tYf8wxur5R h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tYf8wxur5R h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -120px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tYf8wxur5R .mbr-iconfont {
  margin-top: 150px;
  display: block;
  font-size: 3rem;
  color: #000000;
}
.cid-tYf8wxur5R H3 {
  color: #bc4bb9;
}
.cid-tYa3eTgxbs {
  padding-top: 20px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #bc4bb9);
}
.cid-tYa3eTgxbs .media-content .btn-bgr {
  z-index: 0;
}
.cid-tYa3eTgxbs .mbr-section-text {
  word-break: break-word;
}
.cid-tYa3eTgxbs .mbr-overlay {
  background: linear-gradient(90deg, #ff8000, #000000);
}
@media (min-width: 992px) {
  .cid-tYa3eTgxbs .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYa3eTgxbs .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tYa3eTgxbs .mbr-text {
    text-align: center;
  }
}
.cid-tYa3eTgxbs .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tYa3eTgxbs H1 {
  color: #000000;
  text-align: left;
}
.cid-tYa3eTgxbs .mbr-text,
.cid-tYa3eTgxbs .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYa5r83tyI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tYa5r83tyI h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tYa5r83tyI span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-tYa5r83tyI .mbr-section-title {
  color: #ffffff;
}
.cid-uoGwcpcdKP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f5c2ff;
}
.cid-uoGwcpcdKP .card {
  border-radius: 0;
}
@media (min-width: 768px) {
  .cid-uoGwcpcdKP .card .card-box {
    border-left: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-uoGwcpcdKP .card:last-child .card-box {
    border-right: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-uoGwcpcdKP .card:nth-child(1) .card-box {
    padding-top: 0;
  }
  .cid-uoGwcpcdKP .card:nth-child(2) .card-box {
    padding-top: 16rem;
  }
  .cid-uoGwcpcdKP .card:nth-child(3) .card-box {
    padding-top: 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uoGwcpcdKP .card .card-box {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-uoGwcpcdKP .card:last-child .card-box {
    border-bottom: none;
  }
}
.cid-uoGwcpcdKP .card:nth-child(1) .circle_fill {
  background-color: #d248ce;
}
.cid-uoGwcpcdKP .card:nth-child(2) .circle_fill {
  background-color: #6a3597;
}
.cid-uoGwcpcdKP .card:nth-child(3) .circle_fill {
  background-color: #d31fa7;
}
.cid-uoGwcpcdKP .card-box {
  height: 100%;
  padding: 2rem;
}
@media (min-width: 1199px) {
  .cid-uoGwcpcdKP .card-box {
    padding: 2.5rem 2rem 2.5rem ;
  }
}
.cid-uoGwcpcdKP .card-title {
  margin-bottom: 3rem;
  text-align: center;
}
.cid-uoGwcpcdKP .card-text {
  margin-bottom: 1.5rem;
}
.cid-uoGwcpcdKP .circle_animation {
  display: inline-flex;
  position: relative;
  margin-bottom: 3rem;
}
.cid-uoGwcpcdKP .circle_animation .circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.cid-uoGwcpcdKP .circle_animation .circle_fill {
  -webkit-animation: circleFill 5s infinite;
  animation: circleFill 5s infinite;
}
.cid-uoGwcpcdKP .circle_animation .circle_null {
  margin-left: -2rem;
  border: 1px solid #ffffff;
  -webkit-animation: circleNull 5s infinite;
  animation: circleNull 5s infinite;
}
@keyframes circleFill {
  0%,
  100% {
    transform: translateX(75%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes circleNull {
  0%,
  100% {
    transform: translateX(-50%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
  }
}
@media (max-width: 767px) {
  .cid-uoGwcpcdKP .card-title {
    margin-bottom: 1.5rem;
  }
  .cid-uoGwcpcdKP .card-text {
    margin-bottom: 1rem;
  }
  .cid-uoGwcpcdKP .card-wrapper {
    padding: 0;
  }
  .cid-uoGwcpcdKP .card-box {
    padding: 2rem 0;
  }
  .cid-uoGwcpcdKP .circle_animation {
    margin-bottom: 1.5rem;
  }
  .cid-uoGwcpcdKP .circle_animation .circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-uoGwcpcdKP .circle_animation .circle_null {
    margin-left: -1rem;
  }
}
.cid-tZ6qLaf8mD {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff, #e6b9ff);
}
.cid-tZ6qLaf8mD .mbr-iconfont-social {
  font-size: 32px;
  color: #000000;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tZ6qLaf8mD .mbr-iconfont-social:hover {
  color: #6a3597;
}
.cid-tZ6qLaf8mD .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tZ6qLaf8mD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #d248ce);
  display: inline-block;
}
.cid-tZ6qLaf8mD .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tZ6qLaf8mD .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tZ6qLaf8mD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ6qLaf8mD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6b9ff;
}
.cid-tYa6GiTbNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYa6GiTbNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tYa6GiTbNr .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tYa6GiTbNr .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tYa6GiTbNr .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tYa6GiTbNr .container {
    max-width: 100%;
  }
  .cid-tYa6GiTbNr .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tYa6GiTbNr .item-wrap {
  width: 100%;
}
.cid-tYa6GiTbNr .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .copyright {
  color: #000000;
  padding: 0;
  width: 100%;
}
.cid-upTFIytS4E {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-upTFIytS4E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-upTFIytS4E .btn {
  font-weight: 400;
}
.cid-upTFIytS4E .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upTFIytS4E .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upTFIytS4E .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-upTFIytS4E .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-upTFIytS4E .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-upTFIytS4E .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-upTFIytS4E .nav-link {
  width: fit-content;
  position: relative;
}
.cid-upTFIytS4E .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-upTFIytS4E .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-upTFIytS4E .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-upTFIytS4E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upTFIytS4E .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.7) !important;
}
.cid-upTFIytS4E .nav-item:focus,
.cid-upTFIytS4E .nav-link:focus {
  outline: none;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upTFIytS4E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upTFIytS4E .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-upTFIytS4E .navbar.opened {
  transition: all 0.25s;
}
.cid-upTFIytS4E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upTFIytS4E .navbar .navbar-logo img {
  width: auto;
}
.cid-upTFIytS4E .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-upTFIytS4E .navbar.collapsed {
  justify-content: center;
}
.cid-upTFIytS4E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upTFIytS4E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upTFIytS4E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upTFIytS4E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar {
    min-height: 72px;
  }
  .cid-upTFIytS4E .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upTFIytS4E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upTFIytS4E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-upTFIytS4E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upTFIytS4E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-upTFIytS4E .dropdown-item.active,
.cid-upTFIytS4E .dropdown-item:active {
  background-color: transparent;
}
.cid-upTFIytS4E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-upTFIytS4E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upTFIytS4E .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .navbar-buttons {
    text-align: left;
  }
}
.cid-upTFIytS4E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E .navbar-dropdown {
  padding: 0;
  background: rgba(255, 255, 255, 0.7) !important;
  position: fixed;
}
.cid-upTFIytS4E .opacityScroll {
  background: #ffffff !important;
}
.cid-upTFIytS4E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upTFIytS4E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTFIytS4E .navbar {
    height: 70px;
  }
  .cid-upTFIytS4E .navbar.opened {
    height: auto;
  }
  .cid-upTFIytS4E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-upTFIytS4E .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-upTFIytS4E .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar-brand {
    margin-right: auto;
  }
  .cid-upTFIytS4E .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px);
  }
  .cid-upTFIytS4E .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-upTFIytS4E .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tYa8gCbmfO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/5b21bde20a433e58752de1cccbb0c6c7.jpg-564x704.jpg");
}
.cid-tYa8gCbmfO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tYa8gCbmfO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tYa8gCbmfO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tYa8gCbmfO .mbr-section-title {
  color: #ff8000;
}
.cid-tYa8gCbmfO .mbr-text,
.cid-tYa8gCbmfO .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTsxJqXsG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #bc4bb9;
}
.cid-upTsxJqXsG h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-upTsxJqXsG span {
  background-image: url("../../../assets/images/istockphoto-1330963152-1024x1024.jpg-1024x682.jpeg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-upTsxJqXsG .mbr-section-title {
  color: #ffffff;
}
.cid-upTrn5lEBP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bc4bb9;
}
.cid-upTrn5lEBP .image-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-upTrn5lEBP .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-upTrn5lEBP .col-lg-6 {
  padding: 0 2rem;
}
.cid-upTrn5lEBP .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-upTrn5lEBP .card-wrapper {
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 767px) {
  .cid-upTrn5lEBP .card-wrapper {
    padding: 1rem 1rem;
    margin-bottom: 2rem;
  }
}
.cid-upTrn5lEBP .mbr-text {
  color: #060606;
  text-align: left;
}
.cid-upTrn5lEBP .name {
  color: #e6b9ff;
}
.cid-upTrn5lEBP .position {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-upTrn5lEBP .d-flex {
    justify-content: center;
  }
}
.cid-upTrn5lEBP .mbr-section-title {
  color: #36187d;
}
.cid-upTrn5lEBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTrn5lEBP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoKWBJnuGp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uoKWBJnuGp h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uoKWBJnuGp span {
  background-image: url("../../../assets/images/elegant-minimalist-calligraphy-initials-logo-2.png-1080x1080.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uoKWBJnuGp .mbr-section-title {
  color: #ffffff;
}
.cid-tYOEDnQdGa {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYOEDnQdGa .progress {
  width: 100%;
}
.cid-tYOEDnQdGa p {
  margin-bottom: 0.4rem;
}
.cid-tYOEDnQdGa .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tYOEDnQdGa .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tYOEDnQdGa progress {
  height: 10px;
}
.cid-tYOEDnQdGa .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tYOEDnQdGa .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tYOEDnQdGa .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tYOEDnQdGa .progress_value {
  position: relative;
}
.cid-tYOEDnQdGa .progress1 .progressbar-number:before,
.cid-tYOEDnQdGa .progress2 .progressbar-number:before,
.cid-tYOEDnQdGa .progress3 .progressbar-number:before,
.cid-tYOEDnQdGa .progress4 .progressbar-number:before,
.cid-tYOEDnQdGa .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tYOEDnQdGa progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-tYOEDnQdGa progress::-webkit-progress-value {
  background: #d248ce;
}
.cid-tYOEDnQdGa progress[value]::-moz-progress-bar {
  background: #d248ce;
}
.cid-tYOEDnQdGa progress::-ms-fill {
  background: #d248ce;
}
.cid-tYOEDnQdGa .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tYOEDnQdGa .progress2 .progressbar-number:before {
  content: "100";
}
.cid-tYOEDnQdGa .progress3 .progressbar-number:before {
  content: "100";
}
.cid-tYOEDnQdGa .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tYOEDnQdGa .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tYOEDnQdGa .section-content-text {
  color: #454545;
}
.cid-tYOEDnQdGa .progressbar-title p,
.cid-tYOEDnQdGa .progress_value {
  color: #000000;
}
.cid-tYOEDnQdGa .mbr-section-subtitle {
  color: #454545;
}
.cid-tYOEDnQdGa .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tYOEDnQdGa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYOEDnQdGa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ6sBWJsYG {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff, #e6b9ff);
}
.cid-tZ6sBWJsYG .mbr-iconfont-social {
  font-size: 32px;
  color: #000000;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tZ6sBWJsYG .mbr-iconfont-social:hover {
  color: #6a3597;
}
.cid-tZ6sBWJsYG .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tZ6sBWJsYG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #d248ce);
  display: inline-block;
}
.cid-tZ6sBWJsYG .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tZ6sBWJsYG .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tZ6sBWJsYG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ6sBWJsYG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6b9ff;
}
.cid-tYa6GiTbNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYa6GiTbNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tYa6GiTbNr .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tYa6GiTbNr .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tYa6GiTbNr .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tYa6GiTbNr .container {
    max-width: 100%;
  }
  .cid-tYa6GiTbNr .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tYa6GiTbNr .item-wrap {
  width: 100%;
}
.cid-tYa6GiTbNr .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .copyright {
  color: #000000;
  padding: 0;
  width: 100%;
}
.cid-upTFIytS4E {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-upTFIytS4E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-upTFIytS4E .btn {
  font-weight: 400;
}
.cid-upTFIytS4E .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upTFIytS4E .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upTFIytS4E .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-upTFIytS4E .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-upTFIytS4E .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-upTFIytS4E .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-upTFIytS4E .nav-link {
  width: fit-content;
  position: relative;
}
.cid-upTFIytS4E .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-upTFIytS4E .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-upTFIytS4E .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-upTFIytS4E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upTFIytS4E .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.7) !important;
}
.cid-upTFIytS4E .nav-item:focus,
.cid-upTFIytS4E .nav-link:focus {
  outline: none;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upTFIytS4E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upTFIytS4E .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-upTFIytS4E .navbar.opened {
  transition: all 0.25s;
}
.cid-upTFIytS4E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upTFIytS4E .navbar .navbar-logo img {
  width: auto;
}
.cid-upTFIytS4E .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-upTFIytS4E .navbar.collapsed {
  justify-content: center;
}
.cid-upTFIytS4E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upTFIytS4E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upTFIytS4E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upTFIytS4E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar {
    min-height: 72px;
  }
  .cid-upTFIytS4E .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upTFIytS4E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upTFIytS4E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-upTFIytS4E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upTFIytS4E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-upTFIytS4E .dropdown-item.active,
.cid-upTFIytS4E .dropdown-item:active {
  background-color: transparent;
}
.cid-upTFIytS4E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-upTFIytS4E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upTFIytS4E .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .navbar-buttons {
    text-align: left;
  }
}
.cid-upTFIytS4E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E .navbar-dropdown {
  padding: 0;
  background: rgba(255, 255, 255, 0.7) !important;
  position: fixed;
}
.cid-upTFIytS4E .opacityScroll {
  background: #ffffff !important;
}
.cid-upTFIytS4E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upTFIytS4E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTFIytS4E .navbar {
    height: 70px;
  }
  .cid-upTFIytS4E .navbar.opened {
    height: auto;
  }
  .cid-upTFIytS4E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-upTFIytS4E .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-upTFIytS4E .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar-brand {
    margin-right: auto;
  }
  .cid-upTFIytS4E .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px);
  }
  .cid-upTFIytS4E .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-upTFIytS4E .navbar-collapse {
    padding: 1rem;
  }
}
.cid-upTnbxnVsZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-upTnbxnVsZ .container {
  pointer-events: none;
  z-index: 10;
}
.cid-upTnbxnVsZ .mbr-section-subtitle,
.cid-upTnbxnVsZ .title,
.cid-upTnbxnVsZ .mbr-text,
.cid-upTnbxnVsZ .phone,
.cid-upTnbxnVsZ .subscribe__form {
  pointer-events: all;
}
.cid-upTnbxnVsZ .mbr-section-subtitle {
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #d31fa7;
}
.cid-upTnbxnVsZ .mbr-section-title {
  color: #233d63;
  font-weight: 300;
}
.cid-upTnbxnVsZ .mbr-section-title span {
  font-weight: 500;
}
.cid-upTnbxnVsZ .line {
  margin: 35px 0 45px;
  display: inline-block;
  width: 60px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(130deg, rgba(210, 72, 206, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%) !important;
}
.cid-upTnbxnVsZ .mbr-text {
  margin-bottom: 15px;
}
.cid-upTnbxnVsZ .subscribe__form {
  margin-left: 60px;
  background: #ffffff;
  padding: 65px 60px;
  box-shadow: 19px 19px 100px 0px rgba(96, 96, 96, 0.08);
}
.cid-upTnbxnVsZ .form-group {
  margin-bottom: 0;
}
.cid-upTnbxnVsZ .dragArea .form-control {
  height: 50px;
  margin-bottom: 55px;
  padding: 0 5px;
  color: #000000;
  font-size: 17px;
  background-color: #ffffff !important;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #d248ce;
}
.cid-upTnbxnVsZ .dragArea textarea {
  height: 120px !important;
  resize: none;
  margin-bottom: 50px;
  border: none;
  border-bottom: 2px solid #d248ce;
}
.cid-upTnbxnVsZ .dragArea input::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.8;
}
.cid-upTnbxnVsZ .dragArea input::-moz-placeholder {
  color: #000000;
  opacity: 0.8;
}
.cid-upTnbxnVsZ .dragArea textarea::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.8;
}
.cid-upTnbxnVsZ .dragArea textarea::-moz-placeholder {
  color: #000000;
  opacity: 0.8;
}
.cid-upTnbxnVsZ .dragArea .input-group-btn .btn {
  min-width: 185px;
  height: 50px;
  margin-bottom: 55px;
  padding: 0;
  border: none;
  background: linear-gradient(130deg, rgba(210, 72, 206, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%) !important;
}
.cid-upTnbxnVsZ .phone {
  color: #000000;
}
.cid-upTnbxnVsZ .box {
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-upTnbxnVsZ .subscribe__form {
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
    padding: 35px 30px;
  }
}
.cid-upTnbxnVsZ .image__background .circle__image1 {
  width: 890px;
  height: 890px;
  top: 70px;
  right: -245px;
  border-radius: 50%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1199px) {
  .cid-upTnbxnVsZ .image__background .circle__image1 {
    width: 768px;
    height: 768px;
  }
}
@media (max-width: 991px) {
  .cid-upTnbxnVsZ .image__background .circle__image1 {
    display: none;
  }
}
.cid-upTnbxnVsZ .image__background .circle__image2 {
  width: 890px;
  height: 890px;
  top: 0;
  right: -265px;
  border-radius: 50%;
  z-index: 1;
  position: absolute;
  background-color: rgba(211, 31, 167, 0.23);
}
@media (max-width: 1199px) {
  .cid-upTnbxnVsZ .image__background .circle__image2 {
    width: 768px;
    height: 768px;
  }
}
@media (max-width: 991px) {
  .cid-upTnbxnVsZ .image__background .circle__image2 {
    display: none;
  }
}
.cid-upTnbxnVsZ .animation__background .triangle {
  position: absolute;
  top: 33%;
  left: 47%;
  animation: rotatedHalf 40s infinite linear;
  width: auto;
}
.cid-upTnbxnVsZ .animation__background .circle1 {
  display: inline-block;
  width: 13px;
  height: 13px;
  top: 60px;
  left: 25%;
  border-radius: 50%;
  background: #000000;
  position: absolute;
  animation: animationOne 25s infinite linear;
}
.cid-upTnbxnVsZ .animation__background .circle2 {
  display: inline-block;
  width: 11px;
  height: 11px;
  bottom: 45%;
  left: 5%;
  position: absolute;
  border-radius: 50%;
  background-color: #6a3597;
  animation: animationTwo 25s infinite linear;
}
.cid-upTnbxnVsZ .animation__background .circle3 {
  display: inline-block;
  width: 15px;
  height: 15px;
  bottom: 130px;
  left: 37%;
  position: absolute;
  border-radius: 50%;
  background-color: #d31fa7;
  animation: animationOne 35s infinite linear;
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-upTnbxnVsZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTnbxnVsZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa7o9poTC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYa7o9poTC .card-icon {
  font-size: 56px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-tYa7o9poTC .icon2 {
  color: #ffffff;
}
.cid-tYa7o9poTC .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-tYa7o9poTC p {
  font-weight: 400;
}
.cid-tYa7o9poTC .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #6a3597;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-tYa7o9poTC .line2 {
  background: #d31fa7;
}
.cid-tYa7o9poTC .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #d248ce;
}
.cid-tYa7o9poTC .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: white;
}
.cid-tYa7o9poTC .card2 {
  background: #ffffff;
}
.cid-tYa7o9poTC .card-title,
.cid-tYa7o9poTC .card-ico,
.cid-tYa7o9poTC .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-tYa7o9poTC .mbr-text,
.cid-tYa7o9poTC .card-link {
  text-align: center;
  color: #000000;
}
.cid-tYOE09MmoW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/whatsapp-image-2024-09-30-at-2.59.41-pm-1200x1200.jpg");
}
.cid-tYOE09MmoW .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tYOE09MmoW .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-tYOE09MmoW .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tYOE09MmoW .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-tYOE09MmoW .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-tYOE09MmoW .google-map {
  height: 30rem;
  position: relative;
}
.cid-tYOE09MmoW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYOE09MmoW .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-tYOE09MmoW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYOE09MmoW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYOE09MmoW .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-tYOE09MmoW .mbr-section-title {
  color: #20232a;
  text-align: center;
}
.cid-tZ6shZmUAU {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff, #e6b9ff);
}
.cid-tZ6shZmUAU .mbr-iconfont-social {
  font-size: 32px;
  color: #000000;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tZ6shZmUAU .mbr-iconfont-social:hover {
  color: #6a3597;
}
.cid-tZ6shZmUAU .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tZ6shZmUAU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #d248ce);
  display: inline-block;
}
.cid-tZ6shZmUAU .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tZ6shZmUAU .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tZ6shZmUAU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ6shZmUAU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6b9ff;
}
.cid-tYa6GiTbNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYa6GiTbNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tYa6GiTbNr .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tYa6GiTbNr .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tYa6GiTbNr .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tYa6GiTbNr .container {
    max-width: 100%;
  }
  .cid-tYa6GiTbNr .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tYa6GiTbNr .item-wrap {
  width: 100%;
}
.cid-tYa6GiTbNr .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .copyright {
  color: #000000;
  padding: 0;
  width: 100%;
}
.cid-upTFIytS4E {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-upTFIytS4E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-upTFIytS4E .btn {
  font-weight: 400;
}
.cid-upTFIytS4E .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upTFIytS4E .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upTFIytS4E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upTFIytS4E .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-upTFIytS4E .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-upTFIytS4E .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-upTFIytS4E .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-upTFIytS4E .nav-link {
  width: fit-content;
  position: relative;
}
.cid-upTFIytS4E .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-upTFIytS4E .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-upTFIytS4E .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-upTFIytS4E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upTFIytS4E .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.7) !important;
}
.cid-upTFIytS4E .nav-item:focus,
.cid-upTFIytS4E .nav-link:focus {
  outline: none;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upTFIytS4E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upTFIytS4E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upTFIytS4E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upTFIytS4E .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-upTFIytS4E .navbar.opened {
  transition: all 0.25s;
}
.cid-upTFIytS4E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upTFIytS4E .navbar .navbar-logo img {
  width: auto;
}
.cid-upTFIytS4E .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-upTFIytS4E .navbar.collapsed {
  justify-content: center;
}
.cid-upTFIytS4E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upTFIytS4E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upTFIytS4E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upTFIytS4E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upTFIytS4E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upTFIytS4E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-upTFIytS4E .navbar {
    min-height: 72px;
  }
  .cid-upTFIytS4E .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upTFIytS4E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upTFIytS4E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upTFIytS4E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-upTFIytS4E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upTFIytS4E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-upTFIytS4E .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-upTFIytS4E .dropdown-item.active,
.cid-upTFIytS4E .dropdown-item:active {
  background-color: transparent;
}
.cid-upTFIytS4E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upTFIytS4E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-upTFIytS4E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-upTFIytS4E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upTFIytS4E .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .navbar-buttons {
    text-align: left;
  }
}
.cid-upTFIytS4E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upTFIytS4E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upTFIytS4E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upTFIytS4E .navbar-dropdown {
  padding: 0;
  background: rgba(255, 255, 255, 0.7) !important;
  position: fixed;
}
.cid-upTFIytS4E .opacityScroll {
  background: #ffffff !important;
}
.cid-upTFIytS4E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upTFIytS4E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-upTFIytS4E .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTFIytS4E .navbar {
    height: 70px;
  }
  .cid-upTFIytS4E .navbar.opened {
    height: auto;
  }
  .cid-upTFIytS4E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-upTFIytS4E .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-upTFIytS4E .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-upTFIytS4E .navbar-brand {
    margin-right: auto;
  }
  .cid-upTFIytS4E .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px);
  }
  .cid-upTFIytS4E .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-upTFIytS4E .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-upTFIytS4E .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-upTFIytS4E .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-upTFIytS4E .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-upTFIytS4E .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uXDFwP1LYJ {
  overflow-x: hidden !important;
}
.cid-uXDFwP1LYJ .container-fluid {
  padding: 0 3rem;
}
.cid-uXDFwP1LYJ .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/retrato-de-una-mujer-con-prendas-de-moda-de-color-lavanda-para-el-color-del-ano.jpg-2000x3000.jpeg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-uXDFwP1LYJ .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-uXDFwP1LYJ .mbr-overlay {
  z-index: 1;
}
.cid-uXDFwP1LYJ .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-uXDFwP1LYJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uXDFwP1LYJ .mbr-section-title {
  color: #6a3597;
}
.cid-uXEl5Atc5y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uXEl5Atc5y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXEl5Atc5y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXEl5Atc5y .decor-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 32px 0;
}
.cid-uXEl5Atc5y .decor-wrapper .decor {
  height: 100%;
  width: 400px;
  border: 1px solid #6a3597;
}
.cid-uXEl5Atc5y .decor-wrapper .decor_1 {
  box-shadow: inset 0 0 0 2px #ffffff;
}
.cid-uXEl5Atc5y .decor-wrapper .decor_2 {
  box-shadow: inset 0 0 0 2px #ffffff;
}
.cid-uXEl5Atc5y .decoration_1 {
  left: -100px;
}
@media (max-width: 1640px) {
  .cid-uXEl5Atc5y .decoration_1 {
    left: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uXEl5Atc5y .decoration_1 {
    left: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uXEl5Atc5y .decoration_1 {
    left: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .decoration_1 {
    left: -380px;
  }
}
.cid-uXEl5Atc5y .decoration_2 {
  right: -100px;
}
@media (max-width: 1640px) {
  .cid-uXEl5Atc5y .decoration_2 {
    right: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uXEl5Atc5y .decoration_2 {
    right: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uXEl5Atc5y .decoration_2 {
    right: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .decoration_2 {
    right: -380px;
  }
}
.cid-uXEl5Atc5y .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .content-wrapper {
    padding: 0 16px;
  }
}
.cid-uXEl5Atc5y .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .title-wrapper {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uXEl5Atc5y .title-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-uXEl5Atc5y .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uXEl5Atc5y .panel-group .card-wrapper {
  padding: 12px;
  background-color: #f5eaff;
  border: 1px solid #d248ce;
  transition: all 0.3s ease-in-out;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .panel-group .card-wrapper {
    margin-bottom: 16px;
    padding: 6px;
  }
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card {
  position: relative;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #d248ce;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header {
  padding: 0;
  background: transparent;
  border: none;
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .header-wrap {
  padding: 24px;
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .header-wrap {
    padding: 16px;
  }
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .header-wrap .panel-title-edit {
  margin-bottom: 0;
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .panel-title {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px;
  width: 100%;
  border-top: 1px solid #d248ce;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .panel-title {
    padding: 16px;
  }
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .panel-title .gradient-wrap {
  background-image: radial-gradient(circle farthest-side at 50% 50%, #6a3597, #e0e0ff);
  filter: blur(1rem);
  border-radius: 50%;
  width: 90%;
  height: 2rem;
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translate(-50%, -50%);
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .panel-title .icon-wrapper {
  padding: 11px;
  border: 1px solid #d248ce;
  border-radius: 0.5rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .panel-collapse .panel-body {
  padding: 32px;
  padding-top: 0;
  background-color: #ffffff;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uXEl5Atc5y .panel-group .card-wrapper .card .panel-collapse .panel-body {
    padding: 16px;
    padding-top: 0;
  }
}
.cid-uXEl5Atc5y .panel-group .card-wrapper .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uXEl5Atc5y .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-uXEl5Atc5y .mbr-section-title {
  color: #181824;
  text-align: center;
}
.cid-uXEl5Atc5y .panel-title-edit {
  color: #181824;
  text-align: center;
}
.cid-uXEl5Atc5y .panel-text {
  color: #54547e;
}
.cid-uXEl5Atc5y .panel-text,
.cid-uXEl5Atc5y .panel-body {
  color: #000000;
  text-align: center;
}
.cid-uXEmzBriVS {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff, #e6b9ff);
}
.cid-uXEmzBriVS .mbr-iconfont-social {
  font-size: 32px;
  color: #000000;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-uXEmzBriVS .mbr-iconfont-social:hover {
  color: #6a3597;
}
.cid-uXEmzBriVS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uXEmzBriVS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #d248ce);
  display: inline-block;
}
.cid-uXEmzBriVS .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-uXEmzBriVS .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-uXEmzBriVS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXEmzBriVS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6b9ff;
}
.cid-tYa6GiTbNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYa6GiTbNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYa6GiTbNr .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tYa6GiTbNr .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tYa6GiTbNr .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tYa6GiTbNr .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tYa6GiTbNr .container {
    max-width: 100%;
  }
  .cid-tYa6GiTbNr .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tYa6GiTbNr .item-wrap {
  width: 100%;
}
.cid-tYa6GiTbNr .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tYa6GiTbNr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tYa6GiTbNr .copyright {
  color: #000000;
  padding: 0;
  width: 100%;
}
