body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'syne_700';
  font-size: 3rem;
}
.display-2 {
  font-family: 'syne_700';
  font-size: 2.2rem;
}
.display-4 {
  font-family: 'comfortaa_regular';
  font-size: 1rem;
}
.display-5 {
  font-family: 'comfortaa_regular';
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'comfortaa_regular';
  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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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: #e6007e !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: #9a0054;
  border-color: #9a0054;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #e6007e !important;
  border-color: #e6007e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #9a0054 !important;
  border-color: #9a0054 !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: #9a0054 !important;
  border-color: #9a0054 !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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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: #e6007e;
  border-color: #e6007e;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #800046;
  color: #800046 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #e6007e;
  border-color: #e6007e;
}
.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: #e6007e !important;
  border-color: #e6007e !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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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: #e6007e !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: #800046 !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):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e6007e;
  border-color: #e6007e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e6007e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffb3dd;
}
.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*/
.form-control {
  font-family: 'comfortaa_regular';
  font-size: 1.1rem;
}
blockquote {
  border-color: #e6007e;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #e6007e;
  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: #e6007e;
  border-bottom-color: #e6007e;
}
.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: #e6007e !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='%23e6007e' %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-sAjeDNy1jh .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAjeDNy1jh .nav-item:focus,
.cid-sAjeDNy1jh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAjeDNy1jh .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link {
    position: relative;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sAjeDNy1jh .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjeDNy1jh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAjeDNy1jh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjeDNy1jh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sAjeDNy1jh .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sAjeDNy1jh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAjeDNy1jh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sAjeDNy1jh .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sAjeDNy1jh .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sAjeDNy1jh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAjeDNy1jh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAjeDNy1jh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAjeDNy1jh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAjeDNy1jh .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-sAjeDNy1jh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAjeDNy1jh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAjeDNy1jh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAjeDNy1jh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAjeDNy1jh .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-sAjeDNy1jh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAjeDNy1jh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAjeDNy1jh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAjeDNy1jh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAjeDNy1jh .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAjeDNy1jh .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sAjeDNy1jh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAjeDNy1jh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAjeDNy1jh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sAjeDNy1jh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAjeDNy1jh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAjeDNy1jh .dropdown-item.active,
.cid-sAjeDNy1jh .dropdown-item:active {
  background-color: transparent;
}
.cid-sAjeDNy1jh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAjeDNy1jh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAjeDNy1jh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAjeDNy1jh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAjeDNy1jh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAjeDNy1jh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjeDNy1jh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAjeDNy1jh .navbar-buttons {
  text-align: center;
}
.cid-sAjeDNy1jh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjeDNy1jh .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAjeDNy1jh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAjeDNy1jh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAjeDNy1jh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sAjeDNy1jh .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAjeDNy1jh .navbar {
    height: 77px;
  }
  .cid-sAjeDNy1jh .navbar.opened {
    height: auto;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjfpfDWZC {
  background-image: url("../../../assets/images/header.jpg");
}
.cid-sAjfpfDWZC .mbr-section-title,
.cid-sAjfpfDWZC .mbr-section-subtitle {
  color: #000000;
}
.cid-sAjfpfDWZC .mbr-section-text {
  color: #232323;
}
.cid-sAjfpfDWZC .mbr-text,
.cid-sAjfpfDWZC .typed-text,
.cid-sAjfpfDWZC .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sAjfpfDWZC .btn {
  margin-left: 4px !important;
}
.cid-sAjfpfDWZC .animated-element {
  color: #fe525b;
}
.cid-sAjfpfDWZC .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #fe525b;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sAjfpfDWZC .mbr-section-text,
.cid-sAjfpfDWZC .mbr-section-btn {
  color: #000000;
}
.cid-sAjfpfDWZC .mbr-section-title {
  color: #e6007e;
}
.cid-sAjkkqytkr {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAjkkqytkr img {
  border-radius: 0px;
}
.cid-sAjkkqytkr .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjkkqytkr .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjkkqytkr .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjkkqytkr .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjkkqytkr .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjkkqytkr .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjkkqytkr .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjkkqytkr .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAjkkqytkr .mbr-text {
  padding-top: 10px;
  text-align: center;
  color: #333333;
}
.cid-sAjkOynCKw {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-sAjeIhgYwl {
  padding-top: 140px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAjeIhgYwl .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sAjeIhgYwl .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sAjeIhgYwl .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sAjeIhgYwl .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-sAjeIhgYwl .mbr-text {
  color: #8d97ad;
}
.cid-sAjeIhgYwl .mbr-figure img {
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.3);
}
.cid-sAjeIhgYwl .counter-container {
  padding-top: 1rem;
}
.cid-sAjeIhgYwl .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sAjeIhgYwl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sAjeIhgYwl .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sAjeIhgYwl .main-row {
    margin: 0;
  }
  .cid-sAjeIhgYwl .mbr-section-title,
  .cid-sAjeIhgYwl .mbr-text,
  .cid-sAjeIhgYwl .list,
  .cid-sAjeIhgYwl .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sAjeIhgYwl .text-content {
    padding: 0;
  }
}
.cid-sAjeIhgYwl .mbr-text,
.cid-sAjeIhgYwl .mbr-section-btn {
  color: #333333;
}
.cid-sAjeIhgYwl .mbr-section-title {
  color: #000000;
}
.cid-sAjk9JF1zh {
  padding-top: 140px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-sAjk9JF1zh .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sAjk9JF1zh .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sAjk9JF1zh .text-content {
  padding-right: 1.5rem;
}
.cid-sAjk9JF1zh .mbr-text {
  color: #8d97ad;
}
.cid-sAjk9JF1zh .mbr-figure img {
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.3);
}
.cid-sAjk9JF1zh .counter-container {
  padding-top: 1rem;
}
.cid-sAjk9JF1zh .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sAjk9JF1zh .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sAjk9JF1zh .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sAjk9JF1zh .main-row {
    margin: 0;
  }
  .cid-sAjk9JF1zh .mbr-section-title,
  .cid-sAjk9JF1zh .mbr-text,
  .cid-sAjk9JF1zh .list,
  .cid-sAjk9JF1zh .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sAjk9JF1zh .text-content {
    padding: 0;
  }
}
.cid-sAjk9JF1zh .mbr-text,
.cid-sAjk9JF1zh .mbr-section-btn {
  color: #333333;
}
.cid-sAjk9JF1zh .mbr-section-title {
  color: #000000;
}
.cid-sAjmdDSMz0 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-sAjmdDSMz0 img {
  border-radius: 0px;
}
.cid-sAjmdDSMz0 .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjmdDSMz0 .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjmdDSMz0 .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjmdDSMz0 .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjmdDSMz0 .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjmdDSMz0 .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjmdDSMz0 .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjmdDSMz0 .card-heading {
  padding-top: 0;
  text-align: center;
  color: #000000;
}
.cid-sAjmdDSMz0 .mbr-text {
  padding-top: 10px;
  text-align: center;
}
.cid-sAjmetA1S4 {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAk2uTLohK {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAk2uTLohK img {
  border-radius: 0px;
}
.cid-sAk2uTLohK .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAk2uTLohK .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAk2uTLohK .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAk2uTLohK .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAk2uTLohK .right {
  display: flex;
  flex-direction: column;
}
.cid-sAk2uTLohK .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAk2uTLohK .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAk2uTLohK .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAk2uTLohK .mbr-text {
  padding-top: 10px;
  text-align: center;
  color: #333333;
}
.cid-sAjoZNbofd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAjoZNbofd .title {
  margin-bottom: 2rem;
}
.cid-sAjoZNbofd a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sAjoZNbofd a.btn-white:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sAjoZNbofd .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sAjoZNbofd .input-group-btn {
  display: block;
}
.cid-sAjoZNbofd h2 {
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.cid-sAjoZNbofd h3 {
  color: #767676;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-sAjoZNbofd .form-control {
  border-radius: 0px;
  padding-left: 15px;
}
.cid-sAjoZNbofd textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-sAjoZNbofd h2 {
    text-align: center;
  }
  .cid-sAjoZNbofd h3 {
    text-align: center;
  }
  .cid-sAjoZNbofd .input-group-btn {
    text-align: center;
  }
}
.cid-sAp8eGCe1u {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sAp8eGCe1u .links-block ul li {
  margin: 0 1rem;
}
.cid-sAp8eGCe1u .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sAp8eGCe1u .links-block ul,
.cid-sAp8eGCe1u .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sAp8eGCe1u img {
  width: auto;
  display: inherit;
}
.cid-sAk15C4ey0 .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAk15C4ey0 .nav-item:focus,
.cid-sAk15C4ey0 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAk15C4ey0 .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sAk15C4ey0 .nav-item .nav-link {
    position: relative;
  }
  .cid-sAk15C4ey0 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sAk15C4ey0 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sAk15C4ey0 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAk15C4ey0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAk15C4ey0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAk15C4ey0 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sAk15C4ey0 .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sAk15C4ey0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAk15C4ey0 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sAk15C4ey0 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sAk15C4ey0 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sAk15C4ey0 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAk15C4ey0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAk15C4ey0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAk15C4ey0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sAk15C4ey0 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAk15C4ey0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAk15C4ey0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAk15C4ey0 .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-sAk15C4ey0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAk15C4ey0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAk15C4ey0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAk15C4ey0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAk15C4ey0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAk15C4ey0 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAk15C4ey0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAk15C4ey0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAk15C4ey0 .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-sAk15C4ey0 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAk15C4ey0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAk15C4ey0 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAk15C4ey0 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAk15C4ey0 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAk15C4ey0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAk15C4ey0 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sAk15C4ey0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAk15C4ey0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAk15C4ey0 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sAk15C4ey0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAk15C4ey0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAk15C4ey0 .dropdown-item.active,
.cid-sAk15C4ey0 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAk15C4ey0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAk15C4ey0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAk15C4ey0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAk15C4ey0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAk15C4ey0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAk15C4ey0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAk15C4ey0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAk15C4ey0 .navbar-buttons {
  text-align: center;
}
.cid-sAk15C4ey0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAk15C4ey0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sAk15C4ey0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAk15C4ey0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAk15C4ey0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAk15C4ey0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAk15C4ey0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAk15C4ey0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAk15C4ey0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAk15C4ey0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAk15C4ey0 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAk15C4ey0 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAk15C4ey0 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAk15C4ey0 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sAk15C4ey0 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAk15C4ey0 .navbar {
    height: 77px;
  }
  .cid-sAk15C4ey0 .navbar.opened {
    height: auto;
  }
  .cid-sAk15C4ey0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAk15CCF36 {
  padding-top: 165px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAk15CCF36 h3 {
  position: relative;
}
.cid-sAk15CCF36 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAk15CCF36 svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sAk15CCF36 g rect {
  fill: #ffffff;
}
.cid-sAk15CCF36 H1 {
  color: #e6007e;
  text-align: left;
}
.cid-sAk15CWWpd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAk15CWWpd img {
  border-radius: 0px;
}
.cid-sAk15CWWpd .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAk15CWWpd .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAk15CWWpd .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAk15CWWpd .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAk15CWWpd .right {
  display: flex;
  flex-direction: column;
}
.cid-sAk15CWWpd .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAk15CWWpd .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAk15CWWpd .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAk15CWWpd .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAp8eGCe1u {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sAp8eGCe1u .links-block ul li {
  margin: 0 1rem;
}
.cid-sAp8eGCe1u .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sAp8eGCe1u .links-block ul,
.cid-sAp8eGCe1u .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sAp8eGCe1u img {
  width: auto;
  display: inherit;
}
.cid-sAk25HiCwY .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAk25HiCwY .nav-item:focus,
.cid-sAk25HiCwY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAk25HiCwY .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sAk25HiCwY .nav-item .nav-link {
    position: relative;
  }
  .cid-sAk25HiCwY .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sAk25HiCwY .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sAk25HiCwY .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAk25HiCwY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAk25HiCwY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAk25HiCwY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sAk25HiCwY .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sAk25HiCwY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAk25HiCwY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sAk25HiCwY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sAk25HiCwY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sAk25HiCwY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAk25HiCwY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAk25HiCwY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAk25HiCwY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sAk25HiCwY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAk25HiCwY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAk25HiCwY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAk25HiCwY .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-sAk25HiCwY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAk25HiCwY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAk25HiCwY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAk25HiCwY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAk25HiCwY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAk25HiCwY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAk25HiCwY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAk25HiCwY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAk25HiCwY .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-sAk25HiCwY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAk25HiCwY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAk25HiCwY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAk25HiCwY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAk25HiCwY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAk25HiCwY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAk25HiCwY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sAk25HiCwY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAk25HiCwY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAk25HiCwY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sAk25HiCwY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAk25HiCwY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAk25HiCwY .dropdown-item.active,
.cid-sAk25HiCwY .dropdown-item:active {
  background-color: transparent;
}
.cid-sAk25HiCwY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAk25HiCwY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAk25HiCwY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAk25HiCwY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAk25HiCwY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAk25HiCwY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAk25HiCwY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAk25HiCwY .navbar-buttons {
  text-align: center;
}
.cid-sAk25HiCwY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAk25HiCwY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sAk25HiCwY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAk25HiCwY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAk25HiCwY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAk25HiCwY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAk25HiCwY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAk25HiCwY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAk25HiCwY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAk25HiCwY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAk25HiCwY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAk25HiCwY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAk25HiCwY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAk25HiCwY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sAk25HiCwY .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAk25HiCwY .navbar {
    height: 77px;
  }
  .cid-sAk25HiCwY .navbar.opened {
    height: auto;
  }
  .cid-sAk25HiCwY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAk25I0x4w {
  padding-top: 165px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAk25I0x4w h3 {
  position: relative;
}
.cid-sAk25I0x4w h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAk25I0x4w svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sAk25I0x4w g rect {
  fill: #ffffff;
}
.cid-sAk25I0x4w H1 {
  color: #e6007e;
  text-align: left;
}
.cid-sAk25IrlRX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAk25IrlRX img {
  border-radius: 0px;
}
.cid-sAk25IrlRX .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAk25IrlRX .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAk25IrlRX .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAk25IrlRX .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAk25IrlRX .right {
  display: flex;
  flex-direction: column;
}
.cid-sAk25IrlRX .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAk25IrlRX .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAk25IrlRX .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAk25IrlRX .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAp8eGCe1u {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sAp8eGCe1u .links-block ul li {
  margin: 0 1rem;
}
.cid-sAp8eGCe1u .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sAp8eGCe1u .links-block ul,
.cid-sAp8eGCe1u .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sAp8eGCe1u img {
  width: auto;
  display: inherit;
}
.cid-sB4bqMMb7n .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sB4bqMMb7n .nav-item:focus,
.cid-sB4bqMMb7n .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sB4bqMMb7n .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sB4bqMMb7n .nav-item .nav-link {
    position: relative;
  }
  .cid-sB4bqMMb7n .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sB4bqMMb7n .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sB4bqMMb7n .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sB4bqMMb7n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sB4bqMMb7n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sB4bqMMb7n .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sB4bqMMb7n .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sB4bqMMb7n .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sB4bqMMb7n .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sB4bqMMb7n .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sB4bqMMb7n .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sB4bqMMb7n .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sB4bqMMb7n .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sB4bqMMb7n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sB4bqMMb7n .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sB4bqMMb7n .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sB4bqMMb7n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sB4bqMMb7n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sB4bqMMb7n .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-sB4bqMMb7n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sB4bqMMb7n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sB4bqMMb7n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sB4bqMMb7n .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sB4bqMMb7n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sB4bqMMb7n .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sB4bqMMb7n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sB4bqMMb7n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sB4bqMMb7n .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-sB4bqMMb7n .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sB4bqMMb7n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sB4bqMMb7n .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sB4bqMMb7n .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sB4bqMMb7n .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sB4bqMMb7n .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sB4bqMMb7n .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sB4bqMMb7n .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sB4bqMMb7n .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sB4bqMMb7n .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sB4bqMMb7n .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sB4bqMMb7n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sB4bqMMb7n .dropdown-item.active,
.cid-sB4bqMMb7n .dropdown-item:active {
  background-color: transparent;
}
.cid-sB4bqMMb7n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sB4bqMMb7n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sB4bqMMb7n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sB4bqMMb7n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sB4bqMMb7n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sB4bqMMb7n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sB4bqMMb7n ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sB4bqMMb7n .navbar-buttons {
  text-align: center;
}
.cid-sB4bqMMb7n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sB4bqMMb7n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sB4bqMMb7n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sB4bqMMb7n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sB4bqMMb7n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sB4bqMMb7n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sB4bqMMb7n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sB4bqMMb7n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sB4bqMMb7n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sB4bqMMb7n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sB4bqMMb7n .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sB4bqMMb7n a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sB4bqMMb7n .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sB4bqMMb7n .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sB4bqMMb7n .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sB4bqMMb7n .navbar {
    height: 77px;
  }
  .cid-sB4bqMMb7n .navbar.opened {
    height: auto;
  }
  .cid-sB4bqMMb7n .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sB4bqNrz50 {
  padding-top: 165px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sB4bqNrz50 h3 {
  position: relative;
}
.cid-sB4bqNrz50 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sB4bqNrz50 svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sB4bqNrz50 g rect {
  fill: #ffffff;
}
.cid-sB4bqNrz50 H1 {
  color: #e6007e;
  text-align: left;
}
.cid-sB4bqNSz66 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sB4bqNSz66 img {
  border-radius: 0px;
}
.cid-sB4bqNSz66 .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sB4bqNSz66 .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sB4bqNSz66 .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sB4bqNSz66 .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sB4bqNSz66 .right {
  display: flex;
  flex-direction: column;
}
.cid-sB4bqNSz66 .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sB4bqNSz66 .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sB4bqNSz66 .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sB4bqNSz66 .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sB4bqOdZpz {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sB4bqOdZpz .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sB4bqOdZpz .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sB4bqOdZpz .links-block ul li {
  margin: 0 1rem;
}
.cid-sB4bqOdZpz .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sB4bqOdZpz .links-block ul,
.cid-sB4bqOdZpz .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sB4bqOdZpz img {
  width: auto;
  display: inherit;
}
.cid-sAjeDNy1jh .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAjeDNy1jh .nav-item:focus,
.cid-sAjeDNy1jh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAjeDNy1jh .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link {
    position: relative;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sAjeDNy1jh .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjeDNy1jh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAjeDNy1jh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjeDNy1jh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sAjeDNy1jh .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sAjeDNy1jh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAjeDNy1jh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sAjeDNy1jh .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sAjeDNy1jh .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sAjeDNy1jh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAjeDNy1jh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAjeDNy1jh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAjeDNy1jh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAjeDNy1jh .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-sAjeDNy1jh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAjeDNy1jh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAjeDNy1jh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAjeDNy1jh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAjeDNy1jh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAjeDNy1jh .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-sAjeDNy1jh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAjeDNy1jh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAjeDNy1jh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAjeDNy1jh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAjeDNy1jh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAjeDNy1jh .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAjeDNy1jh .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sAjeDNy1jh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAjeDNy1jh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAjeDNy1jh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sAjeDNy1jh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAjeDNy1jh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAjeDNy1jh .dropdown-item.active,
.cid-sAjeDNy1jh .dropdown-item:active {
  background-color: transparent;
}
.cid-sAjeDNy1jh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAjeDNy1jh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAjeDNy1jh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAjeDNy1jh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAjeDNy1jh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAjeDNy1jh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjeDNy1jh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAjeDNy1jh .navbar-buttons {
  text-align: center;
}
.cid-sAjeDNy1jh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjeDNy1jh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjeDNy1jh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjeDNy1jh .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAjeDNy1jh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAjeDNy1jh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAjeDNy1jh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sAjeDNy1jh .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAjeDNy1jh .navbar {
    height: 77px;
  }
  .cid-sAjeDNy1jh .navbar.opened {
    height: auto;
  }
  .cid-sAjeDNy1jh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjrmwxIQu {
  padding-top: 165px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAjrmwxIQu h3 {
  position: relative;
}
.cid-sAjrmwxIQu h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAjrmwxIQu svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sAjrmwxIQu g rect {
  fill: #ffffff;
}
.cid-sAjrmwxIQu H1 {
  color: #e6007e;
  text-align: center;
}
.cid-sAjt9IQQeZ {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sAjt9IQQeZ img {
  border-radius: 0px;
}
.cid-sAjt9IQQeZ .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjt9IQQeZ .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjt9IQQeZ .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjt9IQQeZ .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjt9IQQeZ .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjt9IQQeZ .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjt9IQQeZ .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjt9IQQeZ .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAjt9IQQeZ .mbr-text {
  padding-top: 10px;
  text-align: center;
  color: #333333;
}
.cid-sAjuDmMmV4 {
  padding-top: 140px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAjuDmMmV4 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sAjuDmMmV4 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sAjuDmMmV4 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sAjuDmMmV4 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-sAjuDmMmV4 .mbr-text {
  color: #8d97ad;
}
.cid-sAjuDmMmV4 .mbr-figure img {
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.3);
}
.cid-sAjuDmMmV4 .counter-container {
  padding-top: 1rem;
}
.cid-sAjuDmMmV4 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sAjuDmMmV4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sAjuDmMmV4 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sAjuDmMmV4 .main-row {
    margin: 0;
  }
  .cid-sAjuDmMmV4 .mbr-section-title,
  .cid-sAjuDmMmV4 .mbr-text,
  .cid-sAjuDmMmV4 .list,
  .cid-sAjuDmMmV4 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sAjuDmMmV4 .text-content {
    padding: 0;
  }
}
.cid-sAjuDmMmV4 .mbr-text,
.cid-sAjuDmMmV4 .mbr-section-btn {
  color: #333333;
}
.cid-sAjuDmMmV4 .mbr-section-title {
  color: #000000;
}
.cid-sAjwbZyL6N {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAjwbZyL6N img {
  border-radius: 0px;
}
.cid-sAjwbZyL6N .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjwbZyL6N .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjwbZyL6N .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjwbZyL6N .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjwbZyL6N .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjwbZyL6N .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjwbZyL6N .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjwbZyL6N .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAjwbZyL6N .mbr-text {
  padding-top: 10px;
  text-align: center;
  color: #333333;
}
.cid-sAjw6QS3lS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAjw6QS3lS .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sAjw6QS3lS .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sAjw6QS3lS .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sAjw6QS3lS .wrap-img {
  padding-bottom: 1rem;
}
.cid-sAjw6QS3lS .wrap-img img {
  max-width: 100%;
}
.cid-sAjw6QS3lS .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sAp8eGCe1u {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sAp8eGCe1u .links-block ul li {
  margin: 0 1rem;
}
.cid-sAp8eGCe1u .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sAp8eGCe1u .links-block ul,
.cid-sAp8eGCe1u .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sAp8eGCe1u img {
  width: auto;
  display: inherit;
}
.cid-sAoUXZcwKw .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAoUXZcwKw .nav-item:focus,
.cid-sAoUXZcwKw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAoUXZcwKw .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sAoUXZcwKw .nav-item .nav-link {
    position: relative;
  }
  .cid-sAoUXZcwKw .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sAoUXZcwKw .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sAoUXZcwKw .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAoUXZcwKw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAoUXZcwKw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAoUXZcwKw .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sAoUXZcwKw .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sAoUXZcwKw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAoUXZcwKw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sAoUXZcwKw .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sAoUXZcwKw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sAoUXZcwKw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAoUXZcwKw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAoUXZcwKw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAoUXZcwKw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sAoUXZcwKw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAoUXZcwKw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAoUXZcwKw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAoUXZcwKw .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-sAoUXZcwKw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAoUXZcwKw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAoUXZcwKw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAoUXZcwKw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAoUXZcwKw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAoUXZcwKw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAoUXZcwKw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAoUXZcwKw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAoUXZcwKw .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-sAoUXZcwKw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAoUXZcwKw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAoUXZcwKw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAoUXZcwKw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAoUXZcwKw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAoUXZcwKw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAoUXZcwKw .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sAoUXZcwKw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAoUXZcwKw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAoUXZcwKw .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sAoUXZcwKw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAoUXZcwKw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAoUXZcwKw .dropdown-item.active,
.cid-sAoUXZcwKw .dropdown-item:active {
  background-color: transparent;
}
.cid-sAoUXZcwKw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAoUXZcwKw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAoUXZcwKw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAoUXZcwKw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAoUXZcwKw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAoUXZcwKw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAoUXZcwKw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAoUXZcwKw .navbar-buttons {
  text-align: center;
}
.cid-sAoUXZcwKw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAoUXZcwKw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sAoUXZcwKw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAoUXZcwKw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAoUXZcwKw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAoUXZcwKw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAoUXZcwKw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAoUXZcwKw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAoUXZcwKw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAoUXZcwKw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAoUXZcwKw .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAoUXZcwKw a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAoUXZcwKw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAoUXZcwKw .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sAoUXZcwKw .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAoUXZcwKw .navbar {
    height: 77px;
  }
  .cid-sAoUXZcwKw .navbar.opened {
    height: auto;
  }
  .cid-sAoUXZcwKw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAoUXZIVOd {
  padding-top: 165px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAoUXZIVOd h3 {
  position: relative;
}
.cid-sAoUXZIVOd h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAoUXZIVOd svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sAoUXZIVOd g rect {
  fill: #ffffff;
}
.cid-sAoUXZIVOd H1 {
  color: #e6007e;
  text-align: left;
}
.cid-sAoUY02EFa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sAoUY02EFa img {
  border-radius: 0px;
}
.cid-sAoUY02EFa .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAoUY02EFa .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAoUY02EFa .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAoUY02EFa .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAoUY02EFa .right {
  display: flex;
  flex-direction: column;
}
.cid-sAoUY02EFa .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAoUY02EFa .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAoUY02EFa .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAoUY02EFa .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAp5jHBS02 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sAp5jHBS02 .image-block {
  margin: auto;
}
.cid-sAp5jHBS02 figcaption {
  position: relative;
}
.cid-sAp5jHBS02 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sAp5jHBS02 .image-block {
    width: 100% !important;
  }
}
.cid-sAp5uenFEb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAp5uenFEb img {
  border-radius: 0px;
}
.cid-sAp5uenFEb .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAp5uenFEb .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAp5uenFEb .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAp5uenFEb .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAp5uenFEb .right {
  display: flex;
  flex-direction: column;
}
.cid-sAp5uenFEb .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAp5uenFEb .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAp5uenFEb .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAp5uenFEb .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAoVW94G5j {
  padding-top: 0px;
  padding-bottom: 105px;
  background: #ffffff;
}
.cid-sAoVW94G5j .mbr-iconfont-social {
  font-size: 32px;
  color: #e6007e;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-sAoVW94G5j .mbr-iconfont-social:hover {
  color: #767676;
}
.cid-sAoVW94G5j .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sAoVW94G5j .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #e6007e, #fe525b);
  display: inline-block;
}
.cid-sAoVW94G5j .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-sAoVW94G5j .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-sAoUY0Dl0y {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sAoUY0Dl0y img {
  border-radius: 0px;
}
.cid-sAoUY0Dl0y .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAoUY0Dl0y .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAoUY0Dl0y .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAoUY0Dl0y .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAoUY0Dl0y .right {
  display: flex;
  flex-direction: column;
}
.cid-sAoUY0Dl0y .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAoUY0Dl0y .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAoUY0Dl0y .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAoUY0Dl0y .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAp8eGCe1u {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sAp8eGCe1u .links-block ul li {
  margin: 0 1rem;
}
.cid-sAp8eGCe1u .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sAp8eGCe1u .links-block ul,
.cid-sAp8eGCe1u .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sAp8eGCe1u img {
  width: auto;
  display: inherit;
}
.cid-sAjxouzu2J .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAjxouzu2J .nav-item:focus,
.cid-sAjxouzu2J .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAjxouzu2J .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sAjxouzu2J .nav-item .nav-link {
    position: relative;
  }
  .cid-sAjxouzu2J .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sAjxouzu2J .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sAjxouzu2J .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjxouzu2J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAjxouzu2J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjxouzu2J .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sAjxouzu2J .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sAjxouzu2J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAjxouzu2J .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sAjxouzu2J .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sAjxouzu2J .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sAjxouzu2J .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAjxouzu2J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAjxouzu2J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAjxouzu2J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sAjxouzu2J .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAjxouzu2J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAjxouzu2J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAjxouzu2J .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-sAjxouzu2J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAjxouzu2J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAjxouzu2J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAjxouzu2J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAjxouzu2J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAjxouzu2J .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAjxouzu2J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAjxouzu2J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAjxouzu2J .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-sAjxouzu2J .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAjxouzu2J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAjxouzu2J .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAjxouzu2J .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAjxouzu2J .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAjxouzu2J .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAjxouzu2J .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sAjxouzu2J .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAjxouzu2J .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAjxouzu2J .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sAjxouzu2J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAjxouzu2J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAjxouzu2J .dropdown-item.active,
.cid-sAjxouzu2J .dropdown-item:active {
  background-color: transparent;
}
.cid-sAjxouzu2J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAjxouzu2J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAjxouzu2J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAjxouzu2J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAjxouzu2J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAjxouzu2J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjxouzu2J ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAjxouzu2J .navbar-buttons {
  text-align: center;
}
.cid-sAjxouzu2J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjxouzu2J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sAjxouzu2J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjxouzu2J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjxouzu2J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjxouzu2J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjxouzu2J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjxouzu2J nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjxouzu2J nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjxouzu2J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjxouzu2J .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAjxouzu2J a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAjxouzu2J .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAjxouzu2J .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sAjxouzu2J .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAjxouzu2J .navbar {
    height: 77px;
  }
  .cid-sAjxouzu2J .navbar.opened {
    height: auto;
  }
  .cid-sAjxouzu2J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjxovw4a6 {
  padding-top: 165px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAjxovw4a6 h3 {
  position: relative;
}
.cid-sAjxovw4a6 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAjxovw4a6 svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sAjxovw4a6 g rect {
  fill: #ffffff;
}
.cid-sAjxovw4a6 H1 {
  color: #e6007e;
  text-align: left;
}
.cid-sAjxovYame {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAjxovYame img {
  border-radius: 0px;
}
.cid-sAjxovYame .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjxovYame .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjxovYame .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjxovYame .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjxovYame .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjxovYame .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjxovYame .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjxovYame .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAjxovYame .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjFKp9ySN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAjFKp9ySN .counter-container ul {
  margin-bottom: 0;
}
.cid-sAjFKp9ySN .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-sAjFKp9ySN .mbr-text {
  color: #333333;
}
.cid-sAjFS5eqBn {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sAjFS5eqBn img {
  border-radius: 0px;
}
.cid-sAjFS5eqBn .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjFS5eqBn .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjFS5eqBn .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjFS5eqBn .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjFS5eqBn .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjFS5eqBn .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjFS5eqBn .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjFS5eqBn .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAjFS5eqBn .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjyGZeOrZ {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-sAjyGZeOrZ img {
  border-radius: 0px;
}
.cid-sAjyGZeOrZ .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjyGZeOrZ .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjyGZeOrZ .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjyGZeOrZ .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjyGZeOrZ .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjyGZeOrZ .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjyGZeOrZ .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjyGZeOrZ .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAjyGZeOrZ .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjFlJuAid {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
.cid-sAjFlJuAid .counter-container ul {
  margin-bottom: 0;
}
.cid-sAjFlJuAid .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-sAjFlJuAid .mbr-text {
  color: #333333;
}
.cid-sIXYVeScD8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-sIXYVeScD8 .mbr-iconfont {
  color: #8d97ad;
}
.cid-sIXYVeScD8 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-sIXYVeScD8 .mbr-text {
  margin: 1.5rem 0;
  color: #424242;
}
.cid-sIXYVeScD8 .mbr-section-subtitle {
  color: #333333;
}
.cid-sIXYVeScD8 .card-title {
  margin-bottom: 0.3rem;
  color: #424242;
  text-align: center;
}
.cid-sIXYVeScD8 .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
}
.cid-sIXYVeScD8 .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sIXYVeScD8 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sIY0koXX7u {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAjGlQt2QR {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAjGlQt2QR img {
  border-radius: 0px;
}
.cid-sAjGlQt2QR .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjGlQt2QR .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjGlQt2QR .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjGlQt2QR .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjGlQt2QR .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjGlQt2QR .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjGlQt2QR .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjGlQt2QR .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAjGlQt2QR .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjGy1RSiu {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sAjGy1RSiu .counter-container ul {
  margin-bottom: 0;
}
.cid-sAjGy1RSiu .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-sAjGy1RSiu .mbr-text {
  color: #333333;
}
.cid-sAjGQ8n3pS {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-sAjGQ8n3pS img {
  border-radius: 0px;
}
.cid-sAjGQ8n3pS .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjGQ8n3pS .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjGQ8n3pS .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjGQ8n3pS .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjGQ8n3pS .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjGQ8n3pS .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjGQ8n3pS .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjGQ8n3pS .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAjGQ8n3pS .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjGQFD0IM {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sAjGQFD0IM .counter-container ul {
  margin-bottom: 0;
}
.cid-sAjGQFD0IM .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-sAjGQFD0IM .mbr-text {
  color: #333333;
}
.cid-sAjHqHirYS {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAjHqHirYS img {
  border-radius: 0px;
}
.cid-sAjHqHirYS .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjHqHirYS .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjHqHirYS .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjHqHirYS .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjHqHirYS .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjHqHirYS .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjHqHirYS .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjHqHirYS .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAjHqHirYS .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjHraSFI2 {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sAjHraSFI2 .counter-container ul {
  margin-bottom: 0;
}
.cid-sAjHraSFI2 .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-sAjHraSFI2 .mbr-text {
  color: #333333;
}
.cid-sAjHFYwZEK {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-sAjHFYwZEK img {
  border-radius: 0px;
}
.cid-sAjHFYwZEK .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjHFYwZEK .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjHFYwZEK .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjHFYwZEK .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjHFYwZEK .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjHFYwZEK .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjHFYwZEK .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjHFYwZEK .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAjHFYwZEK .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjHGEhRay {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sAjHGEhRay .counter-container ul {
  margin-bottom: 0;
}
.cid-sAjHGEhRay .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-sAjHGEhRay .mbr-text {
  color: #333333;
}
.cid-sAp8eGCe1u {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sAp8eGCe1u .links-block ul li {
  margin: 0 1rem;
}
.cid-sAp8eGCe1u .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sAp8eGCe1u .links-block ul,
.cid-sAp8eGCe1u .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sAp8eGCe1u img {
  width: auto;
  display: inherit;
}
.cid-sAjKtvtQUF .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sAjKtvtQUF .nav-item:focus,
.cid-sAjKtvtQUF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAjKtvtQUF .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sAjKtvtQUF .nav-item .nav-link {
    position: relative;
  }
  .cid-sAjKtvtQUF .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6007e, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sAjKtvtQUF .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sAjKtvtQUF .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjKtvtQUF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sAjKtvtQUF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjKtvtQUF .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sAjKtvtQUF .collapsed .dropdown-menu .dropdown-item .mbr-iconfont {
  display: none;
}
.cid-sAjKtvtQUF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAjKtvtQUF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sAjKtvtQUF .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sAjKtvtQUF .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sAjKtvtQUF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAjKtvtQUF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAjKtvtQUF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAjKtvtQUF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sAjKtvtQUF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAjKtvtQUF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAjKtvtQUF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAjKtvtQUF .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-sAjKtvtQUF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAjKtvtQUF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAjKtvtQUF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAjKtvtQUF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAjKtvtQUF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAjKtvtQUF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAjKtvtQUF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAjKtvtQUF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAjKtvtQUF .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-sAjKtvtQUF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAjKtvtQUF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAjKtvtQUF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAjKtvtQUF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAjKtvtQUF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAjKtvtQUF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAjKtvtQUF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sAjKtvtQUF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAjKtvtQUF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAjKtvtQUF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sAjKtvtQUF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAjKtvtQUF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAjKtvtQUF .dropdown-item.active,
.cid-sAjKtvtQUF .dropdown-item:active {
  background-color: transparent;
}
.cid-sAjKtvtQUF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAjKtvtQUF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAjKtvtQUF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAjKtvtQUF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sAjKtvtQUF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAjKtvtQUF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjKtvtQUF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAjKtvtQUF .navbar-buttons {
  text-align: center;
}
.cid-sAjKtvtQUF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjKtvtQUF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6007e;
}
.cid-sAjKtvtQUF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjKtvtQUF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjKtvtQUF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjKtvtQUF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjKtvtQUF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjKtvtQUF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjKtvtQUF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjKtvtQUF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjKtvtQUF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAjKtvtQUF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAjKtvtQUF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAjKtvtQUF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sAjKtvtQUF .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAjKtvtQUF .navbar {
    height: 77px;
  }
  .cid-sAjKtvtQUF .navbar.opened {
    height: auto;
  }
  .cid-sAjKtvtQUF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAjKtwCxWD {
  padding-top: 165px;
  padding-bottom: 105px;
  background-color: #f8f8f8;
}
.cid-sAjKtwCxWD h3 {
  position: relative;
}
.cid-sAjKtwCxWD h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAjKtwCxWD svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sAjKtwCxWD g rect {
  fill: #ffffff;
}
.cid-sAjKtwCxWD H1 {
  color: #e6007e;
  text-align: left;
}
.cid-sAjKtxlY9W {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sAjKtxlY9W img {
  border-radius: 0px;
}
.cid-sAjKtxlY9W .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjKtxlY9W .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjKtxlY9W .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjKtxlY9W .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjKtxlY9W .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjKtxlY9W .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjKtxlY9W .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjKtxlY9W .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sAjKtxlY9W .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAjKtz37ZZ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sAjKtz37ZZ img {
  border-radius: 0px;
}
.cid-sAjKtz37ZZ .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sAjKtz37ZZ .date {
  text-transform: uppercase;
  color: #e6007e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sAjKtz37ZZ .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sAjKtz37ZZ .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sAjKtz37ZZ .right {
  display: flex;
  flex-direction: column;
}
.cid-sAjKtz37ZZ .mbr-section-btn {
  border: 2px solid #e6007e;
  width: auto;
}
.cid-sAjKtz37ZZ .mbr-section-btn:hover {
  background-color: #e6007e;
  border: 2px solid #e6007e;
}
.cid-sAjKtz37ZZ .card-heading {
  padding-top: 0;
  text-align: left;
}
.cid-sAjKtz37ZZ .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #333333;
}
.cid-sAp8eGCe1u {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  opacity: 0.5;
}
.cid-sAp8eGCe1u .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sAp8eGCe1u .links-block ul li {
  margin: 0 1rem;
}
.cid-sAp8eGCe1u .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-sAp8eGCe1u .links-block ul,
.cid-sAp8eGCe1u .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sAp8eGCe1u img {
  width: auto;
  display: inherit;
}
