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: #fe525b !important;
}
.bg-success {
  background-color: #2d10a3 !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: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !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: #fe0613 !important;
  border-color: #fe0613 !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: #1a095d;
  border-color: #1a095d;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !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: #1a095d !important;
  border-color: #1a095d !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: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.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: #fe525b !important;
  border-color: #fe525b !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: #2d10a3;
  border-color: #2d10a3;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.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: #2d10a3 !important;
  border-color: #2d10a3 !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: #fe525b !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #2d10a3 !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: #e9010d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #130746 !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: #2d10a3;
}
.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: #fe525b;
  border-color: #fe525b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fe525b;
}
.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: #6746ed;
}
.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: #fe525b;
}
/* 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: #fe525b;
  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: #fe525b;
  border-bottom-color: #fe525b;
}
.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: #fe525b !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='%23fe525b' %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-u6Zc1TFJXg {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-u6Zc1TFJXg .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(45deg, #7ccbf1, #000000);
  background: radial-gradient(#7ccbf1, #000000);
}
.cid-u6Zc1TFJXg .mbr-section-title {
  margin: 0;
}
.cid-u6Zc1TFJXg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6Zc1TFJXg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u99OqKHHbz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-u99OqKHHbz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u99OqKHHbz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u99OqKHHbz .card-content-text {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-u99OqKHHbz .card-content-text {
    padding: 2.25rem 2.25rem 0 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u99OqKHHbz .card-content-text {
    padding: 4rem 4rem 1rem 4rem;
  }
}
.cid-u99OqKHHbz .card-wrapper {
  background: #ffffff;
}
.cid-u99OqKHHbz .mbr-text,
.cid-u99OqKHHbz .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-u99OqKHHbz .card-title,
.cid-u99OqKHHbz .card-box {
  text-align: left;
  color: #000000;
}
#custom-html-18 {
  /* Type valid CSS here */
}
#custom-html-18 div {
  padding: 0px 0;
  color: #777;
  text-align: left;
}
#custom-html-18 p {
  font-size: 60px;
  color: #777;
}
.cid-uUiBDZzqBG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");
}
.cid-uUiBDZzqBG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-uUiBDZzqBG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uUiBDZzqBG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uUiBDZzqBG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uUiBDZzqBG .row {
  margin: 0;
}
.cid-uUiBDZzqBG .card {
  padding: 3rem;
  border: 1px solid #fe525b !important;
}
@media (max-width: 767px) {
  .cid-uUiBDZzqBG .card {
    padding: 2rem 0.5rem;
  }
}
.cid-uUiBDZzqBG h3 {
  margin-bottom: 3rem !important;
}
.cid-uUiBDZzqBG .content-head {
  max-width: 800px;
}
.cid-uUiBDZzqBG textarea {
  min-height: 200px;
}
.cid-uUiBDZzqBG input,
.cid-uUiBDZzqBG textarea {
  border: 1px solid #fe525b !important;
  border-radius: 0 !important;
  padding: 0.5rem;
}
.cid-uUiBDZzqBG .mbr-section-title {
  color: #221b35;
}
.cid-uUiBDZzqBG LABEL {
  color: #221b35;
}
.cid-u6Zd6fJqEY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6Zd6fJqEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6Zd6fJqEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .container {
    padding: 0 16px;
  }
}
.cid-u6Zd6fJqEY .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .row {
    margin: 0 10px;
  }
}
.cid-u6Zd6fJqEY .row .card {
  padding: 0;
}
.cid-u6Zd6fJqEY .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .row .card:first-child {
    padding: 0;
  }
}
.cid-u6Zd6fJqEY .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #dbf0f3;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap .icon-wrapper .mbr-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u6Zd6fJqEY .title-wrapper .mbr-copy {
  padding: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .title-wrapper .mbr-copy {
    padding: 20px;
  }
}
.cid-u6Zd6fJqEY .list-wrapper {
  border: 1px solid #fdfcfc;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.cid-u6Zd6fJqEY .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.cid-u6Zd6fJqEY .list-wrapper .item:last-child {
  border: none;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a {
  display: block;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box,
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #dbf0f3;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #d83c47;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .mbr-iconfont,
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .mbr-iconfont {
  color: #d83c47;
  transform: rotate(-45deg);
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box .mbr-iconfont {
  font-size: 18px;
  color: #fdfcfc;
  transition: all 0.3s ease-in-out;
}
.cid-u6Zd6fJqEY .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.cid-u6Zd6fJqEY .mbr-section-title {
  color: #192227;
}
.cid-u6Zd6fJqEY .mbr-copy {
  color: #192227;
  text-align: center;
}
.cid-u6Zd6fJqEY .card-title {
  color: #fdfcfc;
}
.cid-uUiVN3hhaA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uUiVN3hhaA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUiVN3hhaA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uUiVN3hhaA .card-content-text {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uUiVN3hhaA .card-content-text {
    padding: 2.25rem 2.25rem 0 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uUiVN3hhaA .card-content-text {
    padding: 4rem 4rem 1rem 4rem;
  }
}
.cid-uUiVN3hhaA .card-wrapper {
  background: #ffffff;
}
.cid-uUiVN3hhaA .mbr-text,
.cid-uUiVN3hhaA .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uUiVN3hhaA .card-title,
.cid-uUiVN3hhaA .card-box {
  text-align: left;
  color: #000000;
}
.cid-uUiVDGxCGn {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");
}
.cid-uUiVDGxCGn .accordion .card {
  overflow: visible;
}
.cid-uUiVDGxCGn .mbr-iconfont {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
}
.cid-uUiVDGxCGn .mbri-arrow-down:before {
  content: "\e960";
}
.cid-uUiVDGxCGn .panel-text {
  padding: 1rem;
  color: #000000;
}
.cid-uUiVDGxCGn .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uUiVDGxCGn .card .card-header {
  border-radius: 0px;
  border: 1px solid lightgray;
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
}
.cid-uUiVDGxCGn .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-uUiVDGxCGn .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uUiVDGxCGn .card .card-header a.panel-title h4 {
  padding: 1.2rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-uUiVDGxCGn .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uUiVDGxCGn .card .panel-body {
  color: #767676;
}
.cid-uUiVDGxCGn .panel-collapse {
  border: 1px solid lightgray;
  margin-top: -1px;
}
.cid-uUiVDGxCGn H4 {
  color: #000000;
}
.cid-uUiVDGxCGn H2 {
  color: #000000;
}
.cid-u6Zd6fJqEY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6Zd6fJqEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6Zd6fJqEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .container {
    padding: 0 16px;
  }
}
.cid-u6Zd6fJqEY .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .row {
    margin: 0 10px;
  }
}
.cid-u6Zd6fJqEY .row .card {
  padding: 0;
}
.cid-u6Zd6fJqEY .row .card:first-child {
  padding-right: 10px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .row .card:first-child {
    padding: 0;
  }
}
.cid-u6Zd6fJqEY .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #dbf0f3;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .title-wrapper {
    height: auto;
    margin-bottom: 10px;
  }
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap {
  padding: 30px 30px 70px;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .title-wrapper .title-wrap {
    padding: 20px 20px 30px;
  }
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap .icon-wrapper {
  margin-bottom: 20px;
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap .icon-wrapper .mbr-iconfont {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #192227;
  color: #f9a600;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.cid-u6Zd6fJqEY .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u6Zd6fJqEY .title-wrapper .mbr-copy {
  padding: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .title-wrapper .mbr-copy {
    padding: 20px;
  }
}
.cid-u6Zd6fJqEY .list-wrapper {
  border: 1px solid #fdfcfc;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.cid-u6Zd6fJqEY .list-wrapper .item {
  border-bottom: 1px solid #4a5357;
}
.cid-u6Zd6fJqEY .list-wrapper .item:last-child {
  border: none;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a {
  display: block;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box,
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box {
  background-color: #dbf0f3;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .card-title,
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .card-title {
  color: #d83c47;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .mbr-iconfont,
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a:hover .card-box .mbr-iconfont {
  color: #d83c47;
  transform: rotate(-45deg);
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box {
    padding: 15px 20px;
  }
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box .card-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u6Zd6fJqEY .list-wrapper .item .item-wrapper a .card-box .mbr-iconfont {
  font-size: 18px;
  color: #fdfcfc;
  transition: all 0.3s ease-in-out;
}
.cid-u6Zd6fJqEY .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.cid-u6Zd6fJqEY .mbr-section-title {
  color: #192227;
}
.cid-u6Zd6fJqEY .mbr-copy {
  color: #192227;
  text-align: center;
}
.cid-u6Zd6fJqEY .card-title {
  color: #fdfcfc;
}
