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: #100993 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !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: #08054b;
  border-color: #08054b;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #100993 !important;
  border-color: #100993 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #08054b !important;
  border-color: #08054b !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: #08054b !important;
  border-color: #08054b !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: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #13709e !important;
  border-color: #13709e !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: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !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: #59524b !important;
  border-color: #59524b !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: #100993;
  border-color: #100993;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #060333;
  color: #060333 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #100993;
  border-color: #100993;
}
.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: #100993 !important;
  border-color: #100993 !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: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.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: #82786e !important;
  border-color: #82786e !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: #100993 !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !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: #060333 !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: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !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: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.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: #100993;
  border-color: #100993;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #100993;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #342af2;
}
.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: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
blockquote {
  border-color: #100993;
}
/* 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: #100993;
  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: #100993;
  border-bottom-color: #100993;
}
.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: #100993 !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='%23100993' %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-rRRCsJ3jBC {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRRCsJ3jBC .container-fluid {
  padding: 0 3rem;
}
.cid-rRRCsJ3jBC .media-container-column {
  padding: 0 2rem;
}
.cid-rRRCsJ3jBC .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rRRCsJ3jBC .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRRyeXGaYi .number-wrap {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-rRRyeXGaYi .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
}
.cid-rRRyeXGaYi .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-rRRyeXGaYi .dot {
  position: absolute;
  top: -10px;
  right: -0.8em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
}
.cid-rRRyeXGaYi .countdown-cont {
  margin: 0 auto;
}
.cid-rRRyeXGaYi .full-count-container {
  background: #1ba1e2;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-rRRyeXGaYi .dot {
    right: -0.6em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-rRRyeXGaYi .dot {
    right: -1em;
  }
}
@media (max-width: 768px) {
  .cid-rRRyeXGaYi .dot {
    display: none;
  }
  .cid-rRRyeXGaYi .number {
    white-space: nowrap;
  }
}
@media (max-width: 550px) {
  .cid-rRRyeXGaYi .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-rRRyeXGaYi .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-rRRyeXGaYi .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-rRRyeXGaYi .number {
    font-size: 25px;
  }
  .cid-rRRyeXGaYi .period {
    font-size: 0.7rem;
  }
}
.cid-rRRy5yTO91 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRRy5yTO91 .nav-item:focus,
.cid-rRRy5yTO91 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rRRy5yTO91 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rRRy5yTO91 .nav-item .nav-link {
    position: relative;
  }
  .cid-rRRy5yTO91 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #100993, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rRRy5yTO91 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rRRy5yTO91 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRRy5yTO91 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rRRy5yTO91 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rRRy5yTO91 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rRRy5yTO91 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#52bdf1, #ffffff);
  background: none;
}
.cid-rRRy5yTO91 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#52bdf1, #ffffff) !important;
}
.cid-rRRy5yTO91 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rRRy5yTO91 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rRRy5yTO91 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rRRy5yTO91 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.show,
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rRRy5yTO91 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rRRy5yTO91 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rRRy5yTO91 .navbar.collapsed .right-menu,
.cid-rRRy5yTO91 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 .navbar .navbar-collapse.show,
  .cid-rRRy5yTO91 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rRRy5yTO91 .navbar .navbar-collapse.show .brand-container,
  .cid-rRRy5yTO91 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rRRy5yTO91 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rRRy5yTO91 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rRRy5yTO91 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rRRy5yTO91 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rRRy5yTO91 .navbar .right-menu,
  .cid-rRRy5yTO91 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rRRy5yTO91 .navbar.navbar-short {
  min-height: 60px;
}
.cid-rRRy5yTO91 .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#52bdf1, #ffffff) !important;
}
.cid-rRRy5yTO91 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rRRy5yTO91 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rRRy5yTO91 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rRRy5yTO91 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rRRy5yTO91 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rRRy5yTO91 .dropdown-item.active,
.cid-rRRy5yTO91 .dropdown-item:active {
  background-color: transparent;
}
.cid-rRRy5yTO91 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rRRy5yTO91 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rRRy5yTO91 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rRRy5yTO91 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rRRy5yTO91 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rRRy5yTO91 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rRRy5yTO91 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rRRy5yTO91 .navbar-buttons {
  margin-left: auto;
}
.cid-rRRy5yTO91 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRRy5yTO91 .navbar-dropdown {
  position: fixed;
}
.cid-rRRy5yTO91 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rRRy5yTO91 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rRRy5yTO91 .right-menu,
.cid-rRRy5yTO91 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rRRy5yTO91 .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rRRy5yTO91 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rRRy5yTO91 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rRRy5yTO91 .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-rRRy5yTO91 .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rRRy5yTO91 .card-wrapper {
  z-index: 3;
}
.cid-rRRy5yTO91 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRRy5yTO91 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRRy7SQHSr {
  overflow: hidden !important;
  background-image: url("../../../assets/images/mbr.jpg");
}
.cid-rRRy7SQHSr .container-fluid {
  padding: 0 3rem;
}
.cid-rRRy7SQHSr .animated-element {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-rRRy7SQHSr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sCEvhdOejs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sCEvhdOejs .mbr-section-title {
  color: #0c5b47;
  text-align: center;
}
.cid-sCEvhdOejs .mbr-section-subtitle {
  color: #1b745e;
  text-align: center;
  font-style: italic;
  padding-bottom: 12px;
}
.cid-sCEvhdOejs .row {
  align-items: center;
  height: 100%;
}
.cid-sCEvhdOejs .container {
  max-width: 720px;
  margin: auto;
}
.cid-rRRBTv50Ms {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-rRRBTv50Ms .container-fluid {
  padding: 0 3rem;
}
.cid-rRRBTv50Ms .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #efefef;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rRRBTv50Ms .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #a38dfd;
}
.cid-rRRBTv50Ms .table-wrap:hover .table-pricing,
.cid-rRRBTv50Ms .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-rRRBTv50Ms .table-wrap:hover .table-heading,
.cid-rRRBTv50Ms .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-rRRBTv50Ms .section-heading {
  margin-bottom: 2rem;
}
.cid-rRRBTv50Ms .table-heading {
  margin-bottom: 2em;
}
.cid-rRRBTv50Ms .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rRRBTv50Ms .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #100993, #fe525b);
  display: inline-block;
}
.cid-rRRBTv50Ms ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rRRBTv50Ms ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rRRBTv50Ms ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rRRBTv50Ms hr {
  display: none;
  background: #efefef;
}
.cid-rRRBTv50Ms hr {
  display: block;
}
.cid-rRRBTv50Ms .table-heading,
.cid-rRRBTv50Ms .table-pricing,
.cid-rRRBTv50Ms .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rRRBTv50Ms .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rRRBTv50Ms .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rRRBTv50Ms .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rRRBTv50Ms .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rRRBTv50Ms .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rRRBTv50Ms .mbr-section-title,
.cid-rRRBTv50Ms .underline {
  color: #b2ccd2;
}
.cid-rRRBTv50Ms .mbr-section-subtitle,
.cid-rRRBTv50Ms .mbr-section-btn {
  color: #ffffff;
}
.cid-rRRBTv50Ms .mbr-section-subtitle,
.cid-rRRBTv50Ms .mbr-section-btn DIV {
  text-align: center;
}
.cid-sBjXx7rnAC {
  background-image: linear-gradient(248deg, #100993 10%, #52bdf1 100%) !important;
  padding-top: 40px;
  padding-bottom: 45px;
}
@media (max-width: 991px) {
  .cid-sBjXx7rnAC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sBjXx7rnAC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sBjXx7rnAC .container-fluid {
  padding: 1;
}
.cid-sBjXx7rnAC .text-wrapper {
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .cid-sBjXx7rnAC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sBjXx7rnAC .mbr-text,
.cid-sBjXx7rnAC .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-sBjXx7rnAC .mbr-text,
  .cid-sBjXx7rnAC .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sBjXx7rnAC .mbr-text,
  .cid-sBjXx7rnAC .mbr-section-title {
    text-align: center;
  }
}
.cid-sBjXx7rnAC a.btn {
  height: 100%;
  margin: 0;
}
.cid-sBjXx7rnAC .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sBjXx7rnAC .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sBjXx7rnAC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sBjXx7rnAC .justify-content-center {
  align-items: center;
}
.cid-sBjXx7rnAC .rowflexrev {
  display: -webkit-flex;
}
.cid-sBjXx7rnAC .ws-form-alerts {
  margin-top: 1rem;
}
.cid-sBjXx7rnAC .title {
  margin-bottom: 2rem;
}
.cid-sBjXx7rnAC .mbr-section-subtitle {
  color: #ffef00;
}
.cid-sBjXx7rnAC textarea.form-control {
  min-height: 100px;
}
.cid-sBjXx7rnAC LABEL {
  color: #232323;
}
.cid-sBjXx7rnAC .mbr-section-terms {
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}
.cid-sBjXx7rnAC .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sBjXx7rnAC .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sBjXx7rnAC .alert {
  margin-bottom: 0;
}
.cid-sBjXx7rnAC .alert-success {
  background-color: #09d009;
  color: #fafafa;
}
.cid-sBjXx7rnAC .alert-danger {
  background-color: #d50808;
  color: #fafafa;
}
.cid-sBjXx7rnAC .btn {
  display: inline-flex;
}
.cid-sBjXx7rnAC .hidden {
  display: none;
}
.cid-sBjXx7rnAC #fieldcolor:hover,
.cid-sBjXx7rnAC #fieldcolor:focus {
  border-color: #22a5e5 !important;
}
.cid-sBjXx7rnAC .mbr-section-title {
  color: #f52110;
}
.cid-rRSdNRWDvS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #4284df;
}
.cid-rRSdNRWDvS h2,
.cid-rRSdNRWDvS h3,
.cid-rRSdNRWDvS h4,
.cid-rRSdNRWDvS p {
  color: #ffffff;
}
.cid-rRSdNRWDvS .mbr-overlay {
  z-index: -1;
}
.cid-rRSdNRWDvS .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rRSdNRWDvS .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rRSdNRWDvS .form-control:focus,
.cid-rRSdNRWDvS .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-rRSdNRWDvS .form-group {
  margin-bottom: 1rem;
}
.cid-rRSdNRWDvS input::-webkit-input-placeholder,
.cid-rRSdNRWDvS textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-rRSdNRWDvS input:-moz-placeholder,
.cid-rRSdNRWDvS textarea:-moz-placeholder {
  color: #656565;
}
.cid-rRSdNRWDvS .jq-selectbox li,
.cid-rRSdNRWDvS .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rRSdNRWDvS .jq-selectbox li:hover,
.cid-rRSdNRWDvS .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rRSdNRWDvS .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rRSdNRWDvS .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rRSdNRWDvS .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-rRSdNRWDvS .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-rRSdNRWDvS .mbr-text {
  color: #767676;
}
.cid-rRSdNRWDvS .form-block {
  padding: 3rem;
  position: relative;
}
.cid-rRSdNRWDvS .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-rRSdNRWDvS .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-rRSdNRWDvS a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rRSdNRWDvS .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rRSdNRWDvS .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rRSdNRWDvS textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-rRSdNRWDvS .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rRSdNRWDvS .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rRSdNRWDvS .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rRSdNRWDvS h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-rRSdNRWDvS .block-content {
    padding: 0;
  }
  .cid-rRSdNRWDvS .form-block {
    padding: 1rem;
  }
}
.cid-sCEEptp7KT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sCEEptp7KT .card-wrapper {
  background: #fef1e6;
  padding: 10% 25%;
  margin: auto;
}
.cid-sCEEptp7KT .sign {
  width: 200px;
  padding-top: 16px;
  display: inline;
}
.cid-sCEEptp7KT .row {
  justify-content: center;
  align-items: center;
}
.cid-sCEEptp7KT .mbr-section-title {
  padding: 0;
  padding-bottom: 12px;
  margin: 0;
  color: #0c5b47;
}
.cid-sCEEptp7KT .mbr-text,
.cid-sCEEptp7KT .right-side {
  color: #1b745e;
}
.cid-sCEEptp7KT .container {
  max-width: 1100px;
}
.cid-sCEEptp7KT .padd {
  padding-right: 50px;
}
@media (max-width: 1024px) {
  .cid-sCEEptp7KT .card-wrapper {
    padding: 10% 10%;
  }
}
.cid-sCEEptp7KT .picture {
  border-radius: 50%;
}
.cid-sCEEptp7KT .pic {
  padding-bottom: 32px;
}
.cid-sCEEptp7KT .desc {
  padding-bottom: 20px;
}
.cid-sCEEptp7KT .btn {
  margin-top: 25px;
}
.cid-sCEEptp7KT .row {
  flex-direction: row-reverse;
}
.cid-sCEEptp7KT .padd {
  padding-right: 0px;
  padding-left: 50px;
}
@media (max-width: 960px) {
  .cid-sCEEptp7KT .card-wrapper {
    max-width: 420px;
  }
  .cid-sCEEptp7KT .left-side {
    padding-top: 50px;
  }
  .cid-sCEEptp7KT .padd {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.cid-sCEEptp7KT input,
.cid-sCEEptp7KT textarea {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  border-bottom: 1px solid #0c5b47!important;
}
.cid-sCEEptp7KT .form-control {
  font-style: italic;
  color: #1b745e !important;
  font-family: crimson text,serif;
}
.cid-sCEEptp7KT .f {
  font-size: 42px;
}
.cid-rRSqvEe8G5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rRSqvEe8G5 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rRSqvEe8G5 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rRSqvEe8G5 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rRSqvEe8G5 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rRSqvEe8G5 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rRSqvEe8G5 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rRSqvEe8G5 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rRSqvEe8G5 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 15px;
  }
  .cid-rRSqvEe8G5 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 1.5rem;
  }
  .cid-rRSqvEe8G5 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rSKSkVbYKQ {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rSKSkVbYKQ .container-fluid {
  padding: 0 3rem;
}
.cid-rSKSkVbYKQ .media-container-column {
  padding: 0 2rem;
}
.cid-rSKSkVbYKQ .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rSKSkVbYKQ .container-fluid {
    padding: 0 1rem;
  }
}
#custom-html-u .my-image {
  width: 100%;
}
#custom-html-u p.ex1 {
  padding-left: 4em;
}
#custom-html-u p.ex2 {
  padding-top: 120px;
}
#custom-html-u div.a {
  text-indent: 45px;
}
.cid-rRRy5yTO91 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRRy5yTO91 .nav-item:focus,
.cid-rRRy5yTO91 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rRRy5yTO91 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rRRy5yTO91 .nav-item .nav-link {
    position: relative;
  }
  .cid-rRRy5yTO91 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #100993, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rRRy5yTO91 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rRRy5yTO91 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rRRy5yTO91 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRRy5yTO91 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rRRy5yTO91 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rRRy5yTO91 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rRRy5yTO91 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#52bdf1, #ffffff);
  background: none;
}
.cid-rRRy5yTO91 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#52bdf1, #ffffff) !important;
}
.cid-rRRy5yTO91 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rRRy5yTO91 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rRRy5yTO91 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rRRy5yTO91 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.show,
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rRRy5yTO91 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rRRy5yTO91 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rRRy5yTO91 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rRRy5yTO91 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rRRy5yTO91 .navbar.collapsed .right-menu,
.cid-rRRy5yTO91 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 .navbar .navbar-collapse.show,
  .cid-rRRy5yTO91 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rRRy5yTO91 .navbar .navbar-collapse.show .brand-container,
  .cid-rRRy5yTO91 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rRRy5yTO91 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rRRy5yTO91 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rRRy5yTO91 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rRRy5yTO91 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rRRy5yTO91 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rRRy5yTO91 .navbar .right-menu,
  .cid-rRRy5yTO91 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rRRy5yTO91 .navbar.navbar-short {
  min-height: 60px;
}
.cid-rRRy5yTO91 .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#52bdf1, #ffffff) !important;
}
.cid-rRRy5yTO91 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rRRy5yTO91 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rRRy5yTO91 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rRRy5yTO91 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rRRy5yTO91 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rRRy5yTO91 .dropdown-item.active,
.cid-rRRy5yTO91 .dropdown-item:active {
  background-color: transparent;
}
.cid-rRRy5yTO91 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rRRy5yTO91 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rRRy5yTO91 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rRRy5yTO91 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rRRy5yTO91 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rRRy5yTO91 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rRRy5yTO91 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rRRy5yTO91 .navbar-buttons {
  margin-left: auto;
}
.cid-rRRy5yTO91 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rRRy5yTO91 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rRRy5yTO91 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRRy5yTO91 .navbar-dropdown {
  position: fixed;
}
.cid-rRRy5yTO91 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rRRy5yTO91 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rRRy5yTO91 .right-menu,
.cid-rRRy5yTO91 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rRRy5yTO91 .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rRRy5yTO91 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rRRy5yTO91 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rRRy5yTO91 .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-rRRy5yTO91 .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rRRy5yTO91 .card-wrapper {
  z-index: 3;
}
.cid-rRRy5yTO91 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rRRy5yTO91 .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRRy5yTO91 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRSqvEe8G5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rRSqvEe8G5 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rRSqvEe8G5 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rRSqvEe8G5 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rRSqvEe8G5 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rRSqvEe8G5 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rRSqvEe8G5 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rRSqvEe8G5 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rRSqvEe8G5 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 15px;
  }
  .cid-rRSqvEe8G5 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 1.5rem;
  }
  .cid-rRSqvEe8G5 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
