body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 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-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: #2d10a3 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #2d10a3 !important;
}
.bg-warning {
  background-color: #ffef00 !important;
}
.bg-danger {
  background-color: #879a9f !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: #1a095d;
  border-color: #1a095d;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !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: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !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: #fe0613 !important;
  border-color: #fe0613 !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: #1a095d;
  border-color: #1a095d;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !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: #1a095d !important;
  border-color: #1a095d !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: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #82acb6 !important;
  border-color: #82acb6 !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: #b3a700;
  border-color: #b3a700;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ffef00 !important;
  border-color: #ffef00 !important;
  color: #000000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #000000 !important;
  background-color: #b3a700 !important;
  border-color: #b3a700 !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: #000000 !important;
  background-color: #b3a700 !important;
  border-color: #b3a700 !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: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !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: #617479 !important;
  border-color: #617479 !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: #2d10a3;
  border-color: #2d10a3;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !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: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.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: #fe525b !important;
  border-color: #fe525b !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: #2d10a3;
  border-color: #2d10a3;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.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: #2d10a3 !important;
  border-color: #2d10a3 !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: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.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: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #ffef00;
  border-color: #ffef00;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #998f00;
  color: #998f00 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #000000 !important;
  background-color: #ffef00;
  border-color: #ffef00;
}
.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: #000000 !important;
  background-color: #ffef00 !important;
  border-color: #ffef00 !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: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.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: #879a9f !important;
  border-color: #879a9f !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: #2d10a3 !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #2d10a3 !important;
}
.text-warning {
  color: #ffef00 !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #130746 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #130746 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #998f00 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !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: #b2ccd2;
}
.alert-info {
  background-color: #2d10a3;
}
.alert-warning {
  background-color: #ffef00;
}
.alert-danger {
  background-color: #879a9f;
}
.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: #2d10a3;
  border-color: #2d10a3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #2d10a3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6746ed;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #6746ed;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffccc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
blockquote {
  border-color: #2d10a3;
}
/* 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: #2d10a3;
  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: #2d10a3;
  border-bottom-color: #2d10a3;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #2d10a3 !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: #fe525b !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='%232d10a3' %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-uNNywSxwk8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a38dfd;
}
.cid-uNNywSxwk8 .item:focus,
.cid-uNNywSxwk8 span:focus {
  outline: none;
}
.cid-uNNywSxwk8 .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uNNywSxwk8 .content-head {
  max-width: 800px;
}
.cid-uNNywSxwk8 .item {
  color: #232323;
  min-height: 90px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cid-uNNywSxwk8 .item {
    min-height: 45px;
  }
}
.cid-sVYr6p3SB7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sVYr6p3SB7 H2 {
  color: #0f7699;
}
.cid-sVYr6p3SB7 .mbr-text,
.cid-sVYr6p3SB7 .mbr-section-btn {
  color: #ffffff;
}
.cid-sVYr6p3SB7 img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-sVYr6p3SB7 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-sVYr6p3SB7 H1 {
  color: #a38dfd;
}
.cid-uYxODb5k1b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/splatter-design-backdrop-m1af1z-l-2000x1920.jpg");
}
.cid-uYxODb5k1b .mbr-section-subtitle {
  color: #767676;
}
.cid-uYxODb5k1b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uYxODb5k1b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYxODb5k1b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uYxODb5k1b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uYxODb5k1b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ef2121;
  background: linear-gradient(180deg, #ef2121, #ca4336);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uYxODb5k1b .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uYxODb5k1b .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYxODb5k1b .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uYxODb5k1b .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYxODb5k1b .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uYxODb5k1b ul {
  font-size: 0;
}
.cid-uYxODb5k1b .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uYxODb5k1b .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-uYxODb5k1b .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-uYxODb5k1b .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uYxODb5k1b .mbr-gallery-filter ul li:first-child,
.cid-uYxODb5k1b .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uYxODb5k1b .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uYxODb5k1b .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-uYxODb5k1b .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-uYxODb5k1b .btn.active:after {
  animation: none;
}
.cid-uYxODb5k1b .btn:active {
  box-shadow: none !important;
}
.cid-uYxODb5k1b .btn:hover {
  background: transparent !important;
}
.cid-uYxODb5k1b .btn:hover:before {
  background: transparent !important;
}
.cid-uYxODb5k1b .btn:before {
  background-color: transparent !important;
}
.cid-uYxODb5k1b .btn:focus {
  box-shadow: none !important;
}
.cid-uYxODb5k1b .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-uYxODb5k1b .mbr-section-title,
.cid-uYxODb5k1b .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-uNZqkW3glz {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/abstract-stars-background-as-colorful-vibrant-backdrop-z1qss-dd.jpg-2000x2000.jpg");
}
.cid-uNZqkW3glz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uNZqkW3glz .img-item,
.cid-uNZqkW3glz img {
  height: 100%;
  object-fit: cover;
}
.cid-uNZqkW3glz .img-col {
  padding: 0;
}
.cid-uNZqkW3glz .col-auto {
  width: 100%;
}
.cid-uNZqkW3glz .wrapper {
  background: #a38dfd;
  padding: 6rem 4rem;
  border-radius: 10px;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .cid-uNZqkW3glz .wrapper {
    padding: 3rem 0rem;
    margin: 0 1rem;
  }
}
.cid-uNZqkW3glz textarea {
  min-height: 200px;
}
.cid-uNZqkW3glz .btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
}
.cid-uNZqkW3glz .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-uNZqkW3glz .form-control,
.cid-uNZqkW3glz .field-input {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1b2026;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uNZqkW3glz .form-control::-webkit-input-placeholder,
.cid-uNZqkW3glz .field-input::-webkit-input-placeholder,
.cid-uNZqkW3glz .form-control::-webkit-input-placeholder,
.cid-uNZqkW3glz .field-input::-webkit-input-placeholder {
  color: #82786e;
}
.cid-uNZqkW3glz .form-control:-moz-placeholder,
.cid-uNZqkW3glz .field-input:-moz-placeholder,
.cid-uNZqkW3glz .form-control:-moz-placeholder,
.cid-uNZqkW3glz .field-input:-moz-placeholder {
  color: #82786e;
}
.cid-uNZqkW3glz .form-control:hover,
.cid-uNZqkW3glz .field-input:hover,
.cid-uNZqkW3glz .form-control:focus,
.cid-uNZqkW3glz .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #1b2026;
  box-shadow: none;
  outline: none;
}
.cid-uNZqkW3glz .form-control:hover::-webkit-input-placeholder,
.cid-uNZqkW3glz .field-input:hover::-webkit-input-placeholder,
.cid-uNZqkW3glz .form-control:focus::-webkit-input-placeholder,
.cid-uNZqkW3glz .field-input:focus::-webkit-input-placeholder,
.cid-uNZqkW3glz .form-control:hover::-webkit-input-placeholder,
.cid-uNZqkW3glz .field-input:hover::-webkit-input-placeholder,
.cid-uNZqkW3glz .form-control:focus::-webkit-input-placeholder,
.cid-uNZqkW3glz .field-input:focus::-webkit-input-placeholder {
  color: #777777;
}
.cid-uNZqkW3glz .form-control:hover:-moz-placeholder,
.cid-uNZqkW3glz .field-input:hover:-moz-placeholder,
.cid-uNZqkW3glz .form-control:focus:-moz-placeholder,
.cid-uNZqkW3glz .field-input:focus:-moz-placeholder,
.cid-uNZqkW3glz .form-control:hover:-moz-placeholder,
.cid-uNZqkW3glz .field-input:hover:-moz-placeholder,
.cid-uNZqkW3glz .form-control:focus:-moz-placeholder,
.cid-uNZqkW3glz .field-input:focus:-moz-placeholder {
  color: #777777;
}
.cid-uNZqkW3glz .jq-number__spin:hover,
.cid-uNZqkW3glz .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uNZqkW3glz .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1b2026;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uNZqkW3glz .jq-selectbox li,
.cid-uNZqkW3glz .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uNZqkW3glz .jq-selectbox li:hover,
.cid-uNZqkW3glz .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uNZqkW3glz .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uNZqkW3glz .jq-number__spin.minus:hover:after,
.cid-uNZqkW3glz .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uNZqkW3glz .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uNZqkW3glz .jq-number__spin.minus:after,
.cid-uNZqkW3glz .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uNZqkW3glz input::-webkit-clear-button {
  display: none;
}
.cid-uNZqkW3glz input::-webkit-inner-spin-button {
  display: none;
}
.cid-uNZqkW3glz input::-webkit-outer-spin-button {
  display: none;
}
.cid-uNZqkW3glz input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uNZqkW3glz H4 {
  color: #ffffff;
}
.cid-uNNCBn9TBD {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-uNNCBn9TBD .accordion .card {
  overflow: visible;
}
.cid-uNNCBn9TBD .mbr-iconfont {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
}
.cid-uNNCBn9TBD .mbri-arrow-down:before {
  content: "\e960";
}
.cid-uNNCBn9TBD .panel-text {
  padding: 1rem;
  color: #000000;
}
.cid-uNNCBn9TBD .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uNNCBn9TBD .card .card-header {
  border-radius: 0px;
  border: 1px solid lightgray;
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
}
.cid-uNNCBn9TBD .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-uNNCBn9TBD .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uNNCBn9TBD .card .card-header a.panel-title h4 {
  padding: 1.2rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-uNNCBn9TBD .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uNNCBn9TBD .card .panel-body {
  color: #767676;
}
.cid-uNNCBn9TBD .panel-collapse {
  border: 1px solid lightgray;
  margin-top: -1px;
}
.cid-uNNCBn9TBD H4 {
  color: #ffffff;
}
.cid-uNNCBn9TBD H2 {
  color: #ffffff;
}
.cid-uNNy5vvpQl {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x600.jpg");
}
.cid-uNNy5vvpQl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0;
}
.cid-uNNy5vvpQl .form-group {
  margin-bottom: 30px;
}
.cid-uNNy5vvpQl input,
.cid-uNNy5vvpQl textarea {
  border-radius: 0;
  padding: 1.5rem !important;
}
.cid-uNNy5vvpQl input.form-control {
  min-height: 4.125rem;
}
.cid-uNNy5vvpQl .form-group {
  position: relative;
  z-index: 1;
}
.cid-uNNy5vvpQl .form-group:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 5px;
  height: 5px;
  width: 0px;
  background-color: #fe525b;
  transition: width 0.5s ease-in;
  z-index: 2;
}
.cid-uNNy5vvpQl .form-group:focus-within:after {
  width: calc(100% - 10px);
}
.cid-uNNy5vvpQl .form-control,
.cid-uNNy5vvpQl .field-input {
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-color: #4479d9;
  color: #000000;
  font-size: 1.6rem;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uNNy5vvpQl .form-control:focus,
.cid-uNNy5vvpQl .field-input:focus {
  background-color: #ffffff;
  border-color: #4479d9;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uNNy5vvpQl input::-webkit-input-placeholder,
.cid-uNNy5vvpQl textarea::-webkit-input-placeholder {
  color: #0c2c68;
}
.cid-uNNy5vvpQl input:-moz-placeholder,
.cid-uNNy5vvpQl textarea:-moz-placeholder {
  color: #0c2c68;
}
.cid-uNNy5vvpQl .jq-selectbox li,
.cid-uNNy5vvpQl .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uNNy5vvpQl .jq-selectbox li:hover,
.cid-uNNy5vvpQl .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uNNy5vvpQl .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f8f8f8;
}
.cid-uNNy5vvpQl .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uNNy5vvpQl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNNy5vvpQl .mbr-form {
  max-width: 990px;
}
.cid-uNNy5vvpQl textarea {
  min-height: 150px;
  resize: none;
}
.cid-uNNy5vvpQl .mbr-form .btn {
  width: auto;
  justify-content: space-between;
}
.cid-uNNy5vvpQl .mbr-form .btn .mbr-iconfont {
  order: 2;
  font-size: 1.5rem;
}
.cid-uNNy5vvpQl .mbr-section-title {
  color: #9fe870;
}
.cid-uNNy5vvpQl .mbr-text {
  color: #9fe870;
}
.cid-uNZvoFAT8Z {
  background-color: #f3f7ee;
}
.cid-uNZvoFAT8Z .container {
  display: flex;
  padding: 0;
  margin: auto;
  max-width: 1100px;
}
.cid-uNZvoFAT8Z .mbr-section-subtitle {
  width: auto;
  padding: 15px 10px 10px 25px;
  color: #0c5b47;
}
.cid-uNZvoFAT8Z .row {
  width: 100%;
  margin: auto;
}
.cid-uNZvoFAT8Z .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.2rem;
  padding-right: 0.5rem;
}
.cid-uNZvoFAT8Z .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 25px;
  text-align: center;
}
@media (max-width: 700px) {
  .cid-uNZvoFAT8Z .icons-menu {
    padding-left: 0rem;
  }
}
