body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !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: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !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: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.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: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !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: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.2rem;
}
blockquote {
  border-color: #a38dfd;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #a38dfd;
  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: #a38dfd;
  border-bottom-color: #a38dfd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a38dfd !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='%23a38dfd' %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-uEufUiAeuD .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-uEufUiAeuD .nav-item:focus,
.cid-uEufUiAeuD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uEufUiAeuD .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uEufUiAeuD .nav-item .nav-link {
    position: relative;
  }
  .cid-uEufUiAeuD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uEufUiAeuD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uEufUiAeuD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEufUiAeuD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uEufUiAeuD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uEufUiAeuD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uEufUiAeuD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uEufUiAeuD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uEufUiAeuD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uEufUiAeuD .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uEufUiAeuD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uEufUiAeuD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uEufUiAeuD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uEufUiAeuD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uEufUiAeuD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uEufUiAeuD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uEufUiAeuD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uEufUiAeuD .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-uEufUiAeuD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uEufUiAeuD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uEufUiAeuD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uEufUiAeuD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uEufUiAeuD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uEufUiAeuD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uEufUiAeuD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uEufUiAeuD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uEufUiAeuD .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-uEufUiAeuD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uEufUiAeuD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uEufUiAeuD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uEufUiAeuD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uEufUiAeuD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uEufUiAeuD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uEufUiAeuD .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uEufUiAeuD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uEufUiAeuD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uEufUiAeuD .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-uEufUiAeuD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uEufUiAeuD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uEufUiAeuD .dropdown-item.active,
.cid-uEufUiAeuD .dropdown-item:active {
  background-color: transparent;
}
.cid-uEufUiAeuD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uEufUiAeuD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uEufUiAeuD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uEufUiAeuD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uEufUiAeuD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uEufUiAeuD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uEufUiAeuD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uEufUiAeuD .navbar-buttons {
  text-align: center;
}
.cid-uEufUiAeuD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEufUiAeuD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uEufUiAeuD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uEufUiAeuD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uEufUiAeuD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uEufUiAeuD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uEufUiAeuD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uEufUiAeuD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uEufUiAeuD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uEufUiAeuD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uEufUiAeuD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uEufUiAeuD a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uEufUiAeuD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uEufUiAeuD .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-uEufUiAeuD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uEufUiAeuD .navbar {
    height: 77px;
  }
  .cid-uEufUiAeuD .navbar.opened {
    height: auto;
  }
  .cid-uEufUiAeuD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEug09OXg4 {
  background-image: url("../../../assets/images/mbr-1-1920x960.webp");
}
.cid-uEug09OXg4 .mbr-overlay {
  background: #232323;
}
.cid-uEug09OXg4 .mbr-section-title {
  margin: 0;
}
.cid-uEug09OXg4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEug09OXg4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn6fqP9DL {
  background-color: #ffffff;
  background-image: linear-gradient(#ffffff 80%, #7ccbf1 110%);
}
.cid-uGn6fqP9DL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn6fqP9DL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn6fqP9DL .row {
  justify-content: center;
}
.cid-uGn6fqP9DL .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uGn6fqP9DL .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uGn6fqP9DL .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uGn6fqP9DL .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uGn6fqP9DL .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uGn6fqP9DL .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGn6fqP9DL .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uGn6fqP9DL .mbr-section-title {
  color: #ffffff;
}
.cid-uGn6fqP9DL .mbr-text {
  color: #000000;
}
.cid-uGn6fqP9DL .mbr-desc {
  color: #000000;
}
.cid-uKqafWjJW3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #52bdf1;
}
.cid-uKqafWjJW3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKqafWjJW3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKqafWjJW3 .btn {
  padding: 1rem 2rem;
}
.cid-uKqafWjJW3 .content-head {
  max-width: 800px;
}
.cid-uKqafWjJW3 .item-wrapper .mbr-iconfont {
  margin: auto;
  display: inline-flex;
  font-size: 2rem;
  color: #fdfde1;
  width: 40px;
  justify-content: center;
  align-items: center;
}
.cid-uKqafWjJW3 .card-title,
.cid-uKqafWjJW3 .iconfont-wrapper {
  color: #fdfde1;
}
.cid-uKqafWjJW3 .card-text {
  color: #fdfde1;
}
.cid-uKqafWjJW3 .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uKqafWjJW3 .mbr-section-title {
  color: #fdfde1;
}
.cid-uGn7vhqPb1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uGn7vhqPb1 p {
  color: #767676;
}
.cid-uGn7vhqPb1 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGn7vhqPb1 .row-element,
.cid-uGn7vhqPb1 .image-element {
  padding: 0;
}
.cid-uGn7vhqPb1 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGn7vhqPb1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGn7vhqPb1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGn7vhqPb1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGn7vhqPb1 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGn7vhqPb1 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGn7vhqPb1 .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGn7vhqPb1 .underline .line {
    height: 2px;
  }
  .cid-uGn7vhqPb1 .mbr-title,
  .cid-uGn7vhqPb1 .underline,
  .cid-uGn7vhqPb1 .mbr-text,
  .cid-uGn7vhqPb1 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGn7vhqPb1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn7vhqPb1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn7vK2udW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uGn7vK2udW p {
  color: #767676;
}
.cid-uGn7vK2udW .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGn7vK2udW .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uGn7vK2udW .row-element,
.cid-uGn7vK2udW .image-element {
  padding: 0;
}
.cid-uGn7vK2udW .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGn7vK2udW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGn7vK2udW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGn7vK2udW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGn7vK2udW .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGn7vK2udW .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGn7vK2udW .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGn7vK2udW .underline .line {
    height: 2px;
  }
  .cid-uGn7vK2udW .mbr-title,
  .cid-uGn7vK2udW .underline,
  .cid-uGn7vK2udW .mbr-text,
  .cid-uGn7vK2udW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGn7vK2udW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn7vK2udW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn7wtdBYF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uGn7wtdBYF p {
  color: #767676;
}
.cid-uGn7wtdBYF .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGn7wtdBYF .row-element,
.cid-uGn7wtdBYF .image-element {
  padding: 0;
}
.cid-uGn7wtdBYF .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGn7wtdBYF .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGn7wtdBYF .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGn7wtdBYF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGn7wtdBYF .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGn7wtdBYF .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGn7wtdBYF .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGn7wtdBYF .underline .line {
    height: 2px;
  }
  .cid-uGn7wtdBYF .mbr-title,
  .cid-uGn7wtdBYF .underline,
  .cid-uGn7wtdBYF .mbr-text,
  .cid-uGn7wtdBYF .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGn7wtdBYF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn7wtdBYF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGngdGiQuK {
  background-color: #efefef;
  background-image: linear-gradient(#efefef 80%, #7ccbf1 110%);
}
.cid-uGngdGiQuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGngdGiQuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGngdGiQuK .row {
  justify-content: center;
}
.cid-uGngdGiQuK .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uGngdGiQuK .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uGngdGiQuK .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uGngdGiQuK .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uGngdGiQuK .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uGngdGiQuK .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGngdGiQuK .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uGngdGiQuK .mbr-section-title {
  color: #ffffff;
}
.cid-uGngdGiQuK .mbr-text {
  color: #000000;
}
.cid-uGngdGiQuK .mbr-desc {
  color: #000000;
}
.cid-uEuhv6ilpi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uEuhv6ilpi .container-fluid {
  padding: 0 3rem;
}
.cid-uEuhv6ilpi .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uEuhv6ilpi .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uEuhv6ilpi .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uEuhv6ilpi .social-media {
  margin-top: 1.5rem;
}
.cid-uEuhv6ilpi .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-uEuhv6ilpi .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-uEuhv6ilpi .mbr-text,
.cid-uEuhv6ilpi .mbr-offer {
  line-height: 1.5;
}
.cid-uEuhv6ilpi .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-uEuhv6ilpi .container-fluid {
    padding: 0 1rem;
  }
  .cid-uEuhv6ilpi .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uEuhv6ilpi .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-uEuhv6ilpi .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-uNNWRV93Sm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uNNWRV93Sm .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uNNWRV93Sm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNWRV93Sm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNWRV93Sm .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uNNWRV93Sm .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uNNWRV93Sm .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-uNNWRV93Sm .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-uNNWRV93Sm .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uNNWRV93Sm .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uNNWRV93Sm .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uGnWhXQSnP {
  background-image: url("../../../assets/images/mbr-1453x1094.webp");
}
.cid-uGnWhXQSnP .mbr-overlay {
  background: #232323;
  background: linear-gradient(45deg, #232323, #000000);
  background: radial-gradient(#232323, #000000);
}
.cid-uGnWhXQSnP .mbr-section-title {
  margin: 0;
}
.cid-uGnWhXQSnP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGnWhXQSnP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGnXiWAqU2 {
  background-color: #ffffff;
  background-image: linear-gradient(#ffffff 80%, #7ccbf1 110%);
}
.cid-uGnXiWAqU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGnXiWAqU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGnXiWAqU2 .row {
  justify-content: center;
}
.cid-uGnXiWAqU2 .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uGnXiWAqU2 .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uGnXiWAqU2 .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uGnXiWAqU2 .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uGnXiWAqU2 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uGnXiWAqU2 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGnXiWAqU2 .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uGnXiWAqU2 .mbr-section-title {
  color: #ffffff;
}
.cid-uGnXiWAqU2 .mbr-text {
  color: #000000;
}
.cid-uGnXiWAqU2 .mbr-desc {
  color: #000000;
}
.cid-uNOJWFwaxf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uNOJWFwaxf .container-fluid {
  padding: 0 3rem;
}
.cid-uNOJWFwaxf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uNOJWFwaxf .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNOJWFwaxf .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNOJWFwaxf .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNOJWFwaxf .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNOJWFwaxf .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-uNOJWFwaxf .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNOJWFwaxf .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNOJWFwaxf .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNOJWFwaxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOJWFwaxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOLgDxcX3 {
  background-color: #b2ccd2;
  background-image: linear-gradient(#b2ccd2 80%, #7ccbf1 110%);
}
.cid-uNOLgDxcX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOLgDxcX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOLgDxcX3 .row {
  justify-content: center;
}
.cid-uNOLgDxcX3 .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uNOLgDxcX3 .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uNOLgDxcX3 .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uNOLgDxcX3 .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uNOLgDxcX3 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uNOLgDxcX3 .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNOLgDxcX3 .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uNOLgDxcX3 .mbr-section-title {
  color: #ffffff;
}
.cid-uNOLgDxcX3 .mbr-text {
  color: #000000;
}
.cid-uNOLgDxcX3 .mbr-desc {
  color: #000000;
}
.cid-uFUowNUpyT .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-uFUowNUpyT .nav-item:focus,
.cid-uFUowNUpyT .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uFUowNUpyT .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uFUowNUpyT .nav-item .nav-link {
    position: relative;
  }
  .cid-uFUowNUpyT .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uFUowNUpyT .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uFUowNUpyT .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUowNUpyT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUowNUpyT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUowNUpyT .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uFUowNUpyT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUowNUpyT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUowNUpyT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFUowNUpyT .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFUowNUpyT .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uFUowNUpyT .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFUowNUpyT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFUowNUpyT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFUowNUpyT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFUowNUpyT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFUowNUpyT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFUowNUpyT .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-uFUowNUpyT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFUowNUpyT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFUowNUpyT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFUowNUpyT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFUowNUpyT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFUowNUpyT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFUowNUpyT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFUowNUpyT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFUowNUpyT .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-uFUowNUpyT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFUowNUpyT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFUowNUpyT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFUowNUpyT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uFUowNUpyT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uFUowNUpyT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFUowNUpyT .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFUowNUpyT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFUowNUpyT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFUowNUpyT .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-uFUowNUpyT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFUowNUpyT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFUowNUpyT .dropdown-item.active,
.cid-uFUowNUpyT .dropdown-item:active {
  background-color: transparent;
}
.cid-uFUowNUpyT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFUowNUpyT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFUowNUpyT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFUowNUpyT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFUowNUpyT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFUowNUpyT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUowNUpyT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFUowNUpyT .navbar-buttons {
  text-align: center;
}
.cid-uFUowNUpyT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFUowNUpyT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFUowNUpyT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFUowNUpyT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFUowNUpyT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFUowNUpyT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFUowNUpyT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFUowNUpyT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFUowNUpyT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFUowNUpyT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFUowNUpyT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFUowNUpyT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFUowNUpyT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFUowNUpyT .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-uFUowNUpyT .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFUowNUpyT .navbar {
    height: 77px;
  }
  .cid-uFUowNUpyT .navbar.opened {
    height: auto;
  }
  .cid-uFUowNUpyT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUowPaceg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uFUowPaceg .container-fluid {
  padding: 0 3rem;
}
.cid-uFUowPaceg .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uFUowPaceg .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uFUowPaceg .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uFUowPaceg .social-media {
  margin-top: 1.5rem;
}
.cid-uFUowPaceg .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-uFUowPaceg .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-uFUowPaceg .mbr-text,
.cid-uFUowPaceg .mbr-offer {
  line-height: 1.5;
}
.cid-uFUowPaceg .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-uFUowPaceg .container-fluid {
    padding: 0 1rem;
  }
  .cid-uFUowPaceg .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uFUowPaceg .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-uFUowPaceg .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-uNNWRV93Sm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uNNWRV93Sm .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uNNWRV93Sm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNWRV93Sm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNWRV93Sm .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uNNWRV93Sm .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uNNWRV93Sm .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-uNNWRV93Sm .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-uNNWRV93Sm .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uNNWRV93Sm .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uNNWRV93Sm .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uFUsajSGka .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-uFUsajSGka .nav-item:focus,
.cid-uFUsajSGka .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uFUsajSGka .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uFUsajSGka .nav-item .nav-link {
    position: relative;
  }
  .cid-uFUsajSGka .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uFUsajSGka .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uFUsajSGka .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUsajSGka .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUsajSGka .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUsajSGka .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uFUsajSGka .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUsajSGka .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUsajSGka .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFUsajSGka .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFUsajSGka .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uFUsajSGka .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFUsajSGka .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFUsajSGka .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFUsajSGka .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFUsajSGka .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFUsajSGka .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFUsajSGka .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-uFUsajSGka .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFUsajSGka .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFUsajSGka .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFUsajSGka .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFUsajSGka .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFUsajSGka .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFUsajSGka .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFUsajSGka .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFUsajSGka .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-uFUsajSGka .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFUsajSGka .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFUsajSGka .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFUsajSGka .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uFUsajSGka .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uFUsajSGka .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFUsajSGka .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFUsajSGka .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFUsajSGka .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFUsajSGka .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-uFUsajSGka .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFUsajSGka .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFUsajSGka .dropdown-item.active,
.cid-uFUsajSGka .dropdown-item:active {
  background-color: transparent;
}
.cid-uFUsajSGka .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFUsajSGka .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFUsajSGka .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFUsajSGka .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFUsajSGka .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFUsajSGka .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUsajSGka ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFUsajSGka .navbar-buttons {
  text-align: center;
}
.cid-uFUsajSGka button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFUsajSGka button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFUsajSGka button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFUsajSGka button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFUsajSGka button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFUsajSGka button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFUsajSGka nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFUsajSGka nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFUsajSGka nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFUsajSGka nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFUsajSGka .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFUsajSGka a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFUsajSGka .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFUsajSGka .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-uFUsajSGka .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFUsajSGka .navbar {
    height: 77px;
  }
  .cid-uFUsajSGka .navbar.opened {
    height: auto;
  }
  .cid-uFUsajSGka .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUsaklxFX {
  background-image: url("../../../assets/images/mbr-1453x817.webp");
}
.cid-uFUsaklxFX .mbr-overlay {
  background: #232323;
  background: linear-gradient(45deg, #232323, #000000);
  background: radial-gradient(#232323, #000000);
}
.cid-uFUsaklxFX .mbr-section-title {
  margin: 0;
}
.cid-uFUsaklxFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUsaklxFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGtkTLGQkV {
  background-color: #ffffff;
  background-image: linear-gradient(#ffffff 80%, #7ccbf1 110%);
}
.cid-uGtkTLGQkV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGtkTLGQkV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGtkTLGQkV .row {
  justify-content: center;
}
.cid-uGtkTLGQkV .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uGtkTLGQkV .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uGtkTLGQkV .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uGtkTLGQkV .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uGtkTLGQkV .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uGtkTLGQkV .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGtkTLGQkV .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uGtkTLGQkV .mbr-section-title {
  color: #ffffff;
}
.cid-uGtkTLGQkV .mbr-text {
  color: #000000;
}
.cid-uGtkTLGQkV .mbr-desc {
  color: #000000;
}
.cid-uNOPIoN8Ag {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uNOPIoN8Ag .container-fluid {
  padding: 0 3rem;
}
.cid-uNOPIoN8Ag .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uNOPIoN8Ag .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNOPIoN8Ag .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNOPIoN8Ag .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNOPIoN8Ag .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNOPIoN8Ag .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-uNOPIoN8Ag .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNOPIoN8Ag .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNOPIoN8Ag .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNOPIoN8Ag .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOPIoN8Ag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOPIoN8Ag .mbr-section-subtitle {
  text-align: left;
}
.cid-uNOQjAp15Y {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uNOQjAp15Y .container-fluid {
  padding: 0 3rem;
}
.cid-uNOQjAp15Y .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uNOQjAp15Y .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNOQjAp15Y .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNOQjAp15Y .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNOQjAp15Y .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNOQjAp15Y .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-uNOQjAp15Y .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNOQjAp15Y .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNOQjAp15Y .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNOQjAp15Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOQjAp15Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOQjAp15Y .mbr-section-subtitle {
  text-align: left;
}
.cid-uNOPyl0aXQ {
  background-color: #b2ccd2;
}
.cid-uNOPyl0aXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOPyl0aXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOPyl0aXQ .row {
  justify-content: center;
}
.cid-uNOPyl0aXQ .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uNOPyl0aXQ .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uNOPyl0aXQ .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uNOPyl0aXQ .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uNOPyl0aXQ .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uNOPyl0aXQ .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNOPyl0aXQ .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uNOPyl0aXQ .mbr-section-title {
  color: #ffffff;
}
.cid-uNOPyl0aXQ .mbr-text {
  color: #000000;
}
.cid-uNOPyl0aXQ .mbr-desc {
  color: #000000;
}
.cid-uFUsamdCsA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uFUsamdCsA .container-fluid {
  padding: 0 3rem;
}
.cid-uFUsamdCsA .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uFUsamdCsA .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uFUsamdCsA .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uFUsamdCsA .social-media {
  margin-top: 1.5rem;
}
.cid-uFUsamdCsA .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-uFUsamdCsA .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-uFUsamdCsA .mbr-text,
.cid-uFUsamdCsA .mbr-offer {
  line-height: 1.5;
}
.cid-uFUsamdCsA .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-uFUsamdCsA .container-fluid {
    padding: 0 1rem;
  }
  .cid-uFUsamdCsA .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uFUsamdCsA .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-uFUsamdCsA .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-uNNWRV93Sm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uNNWRV93Sm .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uNNWRV93Sm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNWRV93Sm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNWRV93Sm .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uNNWRV93Sm .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uNNWRV93Sm .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-uNNWRV93Sm .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-uNNWRV93Sm .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uNNWRV93Sm .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uNNWRV93Sm .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uNP8eGqhlT {
  background-color: #b2ccd2;
}
.cid-uNP8eGqhlT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNP8eGqhlT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNP8eGqhlT .row {
  justify-content: center;
}
.cid-uNP8eGqhlT .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uNP8eGqhlT .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uNP8eGqhlT .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uNP8eGqhlT .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uNP8eGqhlT .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uNP8eGqhlT .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNP8eGqhlT .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uNP8eGqhlT .mbr-section-title {
  color: #ffffff;
}
.cid-uNP8eGqhlT .mbr-text {
  color: #000000;
}
.cid-uNP8eGqhlT .mbr-desc {
  color: #000000;
}
.cid-uNP8fDpALt {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uNP8fDpALt .container-fluid {
  padding: 0 3rem;
}
.cid-uNP8fDpALt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uNP8fDpALt .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNP8fDpALt .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNP8fDpALt .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNP8fDpALt .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNP8fDpALt .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-uNP8fDpALt .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNP8fDpALt .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNP8fDpALt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNP8fDpALt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNP8fDpALt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNP8fDpALt .mbr-section-subtitle {
  text-align: left;
}
.cid-uNPiYHgcA8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uNPiYHgcA8 .container-fluid {
  padding: 0 3rem;
}
.cid-uNPiYHgcA8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uNPiYHgcA8 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNPiYHgcA8 .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNPiYHgcA8 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNPiYHgcA8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNPiYHgcA8 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-uNPiYHgcA8 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNPiYHgcA8 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNPiYHgcA8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNPiYHgcA8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNPiYHgcA8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNPiYHgcA8 .mbr-section-subtitle {
  text-align: left;
}
.cid-uNPkZHzD3K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uNPkZHzD3K .container-fluid {
  padding: 0 3rem;
}
.cid-uNPkZHzD3K .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uNPkZHzD3K .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNPkZHzD3K .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNPkZHzD3K .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNPkZHzD3K .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNPkZHzD3K .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-uNPkZHzD3K .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNPkZHzD3K .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNPkZHzD3K .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNPkZHzD3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNPkZHzD3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNPkZHzD3K .mbr-section-subtitle {
  text-align: left;
}
.cid-uNPm2Xoa5y {
  background-color: #ffffff;
  background-image: linear-gradient(#ffffff 80%, #7ccbf1 110%);
}
.cid-uNPm2Xoa5y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNPm2Xoa5y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNPm2Xoa5y .row {
  justify-content: center;
}
.cid-uNPm2Xoa5y .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uNPm2Xoa5y .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #000000, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uNPm2Xoa5y .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uNPm2Xoa5y .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uNPm2Xoa5y .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uNPm2Xoa5y .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNPm2Xoa5y .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uNPm2Xoa5y .mbr-section-title {
  color: #ffffff;
}
.cid-uNPm2Xoa5y .mbr-text {
  color: #000000;
}
.cid-uNPm2Xoa5y .mbr-desc {
  color: #000000;
}
.cid-uGmHGZtVh5 .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-uGmHGZtVh5 .nav-item:focus,
.cid-uGmHGZtVh5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uGmHGZtVh5 .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uGmHGZtVh5 .nav-item .nav-link {
    position: relative;
  }
  .cid-uGmHGZtVh5 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uGmHGZtVh5 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uGmHGZtVh5 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGmHGZtVh5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGmHGZtVh5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGmHGZtVh5 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uGmHGZtVh5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGmHGZtVh5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGmHGZtVh5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uGmHGZtVh5 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uGmHGZtVh5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uGmHGZtVh5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGmHGZtVh5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGmHGZtVh5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uGmHGZtVh5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uGmHGZtVh5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGmHGZtVh5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGmHGZtVh5 .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-uGmHGZtVh5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGmHGZtVh5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uGmHGZtVh5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uGmHGZtVh5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGmHGZtVh5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGmHGZtVh5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uGmHGZtVh5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGmHGZtVh5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGmHGZtVh5 .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-uGmHGZtVh5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uGmHGZtVh5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGmHGZtVh5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGmHGZtVh5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uGmHGZtVh5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uGmHGZtVh5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uGmHGZtVh5 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uGmHGZtVh5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uGmHGZtVh5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uGmHGZtVh5 .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-uGmHGZtVh5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGmHGZtVh5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGmHGZtVh5 .dropdown-item.active,
.cid-uGmHGZtVh5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGmHGZtVh5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGmHGZtVh5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGmHGZtVh5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGmHGZtVh5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uGmHGZtVh5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGmHGZtVh5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGmHGZtVh5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGmHGZtVh5 .navbar-buttons {
  text-align: center;
}
.cid-uGmHGZtVh5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGmHGZtVh5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGmHGZtVh5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uGmHGZtVh5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uGmHGZtVh5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uGmHGZtVh5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uGmHGZtVh5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGmHGZtVh5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uGmHGZtVh5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uGmHGZtVh5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGmHGZtVh5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uGmHGZtVh5 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGmHGZtVh5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uGmHGZtVh5 .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-uGmHGZtVh5 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGmHGZtVh5 .navbar {
    height: 77px;
  }
  .cid-uGmHGZtVh5 .navbar.opened {
    height: auto;
  }
  .cid-uGmHGZtVh5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGmHH1D9tG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uGmHH1D9tG .container-fluid {
  padding: 0 3rem;
}
.cid-uGmHH1D9tG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uGmHH1D9tG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uGmHH1D9tG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uGmHH1D9tG .social-media {
  margin-top: 1.5rem;
}
.cid-uGmHH1D9tG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-uGmHH1D9tG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-uGmHH1D9tG .mbr-text,
.cid-uGmHH1D9tG .mbr-offer {
  line-height: 1.5;
}
.cid-uGmHH1D9tG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-uGmHH1D9tG .container-fluid {
    padding: 0 1rem;
  }
  .cid-uGmHH1D9tG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uGmHH1D9tG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-uGmHH1D9tG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-uNNWRV93Sm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uNNWRV93Sm .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uNNWRV93Sm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNWRV93Sm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNWRV93Sm .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uNNWRV93Sm .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uNNWRV93Sm .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-uNNWRV93Sm .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-uNNWRV93Sm .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uNNWRV93Sm .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uNNWRV93Sm .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uFUbhQt3In .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-uFUbhQt3In .nav-item:focus,
.cid-uFUbhQt3In .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uFUbhQt3In .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uFUbhQt3In .nav-item .nav-link {
    position: relative;
  }
  .cid-uFUbhQt3In .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uFUbhQt3In .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uFUbhQt3In .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUbhQt3In .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUbhQt3In .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUbhQt3In .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uFUbhQt3In .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUbhQt3In .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUbhQt3In .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFUbhQt3In .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFUbhQt3In .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uFUbhQt3In .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFUbhQt3In .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFUbhQt3In .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFUbhQt3In .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFUbhQt3In .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFUbhQt3In .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFUbhQt3In .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-uFUbhQt3In .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFUbhQt3In .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFUbhQt3In .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFUbhQt3In .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFUbhQt3In .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFUbhQt3In .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFUbhQt3In .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFUbhQt3In .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFUbhQt3In .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-uFUbhQt3In .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFUbhQt3In .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFUbhQt3In .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFUbhQt3In .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uFUbhQt3In .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uFUbhQt3In .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFUbhQt3In .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFUbhQt3In .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFUbhQt3In .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFUbhQt3In .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-uFUbhQt3In .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFUbhQt3In .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFUbhQt3In .dropdown-item.active,
.cid-uFUbhQt3In .dropdown-item:active {
  background-color: transparent;
}
.cid-uFUbhQt3In .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFUbhQt3In .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFUbhQt3In .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFUbhQt3In .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFUbhQt3In .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFUbhQt3In .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUbhQt3In ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFUbhQt3In .navbar-buttons {
  text-align: center;
}
.cid-uFUbhQt3In button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFUbhQt3In button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFUbhQt3In button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFUbhQt3In button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFUbhQt3In button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFUbhQt3In button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFUbhQt3In nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFUbhQt3In nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFUbhQt3In nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFUbhQt3In nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFUbhQt3In .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFUbhQt3In a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFUbhQt3In .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFUbhQt3In .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-uFUbhQt3In .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFUbhQt3In .navbar {
    height: 77px;
  }
  .cid-uFUbhQt3In .navbar.opened {
    height: auto;
  }
  .cid-uFUbhQt3In .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUbhQWKSA {
  background-image: url("../../../assets/images/mbr-1-1920x1280.webp");
}
.cid-uFUbhQWKSA .mbr-overlay {
  background: #232323;
  background: linear-gradient(45deg, #232323, #000000);
  background: radial-gradient(#232323, #000000);
}
.cid-uFUbhQWKSA .mbr-section-title {
  margin: 0;
}
.cid-uFUbhQWKSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUbhQWKSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUcBLHNfg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #232323;
}
.cid-uFUcBLHNfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUcBLHNfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uFUcBLHNfg .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uFUcBLHNfg .container {
    padding: 0 12px;
  }
}
.cid-uFUcBLHNfg .content-wrapper {
  display: flex;
  border-radius: 32px;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .cid-uFUcBLHNfg .content-wrapper {
    display: block;
    padding: 0.5rem;
  }
}
.cid-uFUcBLHNfg .content-wrapper .title-wrapper {
  width: 50%;
  margin-right: 32px;
}
@media (max-width: 768px) {
  .cid-uFUcBLHNfg .content-wrapper .title-wrapper {
    width: 100%;
    padding: 24px;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .cid-uFUcBLHNfg .content-wrapper .title-wrapper {
    padding: 0px;
  }
}
.cid-uFUcBLHNfg .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 1.5rem;
}
.cid-uFUcBLHNfg .content-wrapper .title-wrapper .mbr-social-likns .mbr-iconfont {
  border-radius: 50px;
  border: 1px solid #fdfde1;
  color: #fdfde1;
  transition: all 300ms ease;
}
.cid-uFUcBLHNfg .content-wrapper .title-wrapper .mbr-social-likns .mbr-iconfont:hover {
  color: #bff747;
  border-color: #bff747;
}
.cid-uFUcBLHNfg .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uFUcBLHNfg .content-wrapper .mbr-form {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-uFUcBLHNfg .content-wrapper .mbr-form {
    width: 100%;
  }
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap {
    padding: 0px;
  }
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .mbr-section-title {
  margin-bottom: 20px !important;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .mbr-text {
  margin-bottom: 20px !important;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group .form-control {
  color: #232323;
  padding: 1.3rem 1.5rem;
  font-weight: 700;
  box-shadow: none;
  border-radius: 3rem !important;
  border: 1px solid #232323 !important;
  background-color: #ffffff;
  transition: all 300ms ease;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bff747 !important;
  box-shadow: none;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #232323;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group textarea.form-control {
  min-height: 150px;
  border-radius: 1.3rem !important;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.7em;
  margin-bottom: 10px;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #232323;
  border-color: #232323;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .mbr-section-btn {
  margin-top: 6px;
}
.cid-uFUcBLHNfg .content-wrapper .mbr-form .form-wrap .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
}
.cid-uFUcBLHNfg .mbr-form .form-conrol {
  color: #232323;
}
.cid-uFUcBLHNfg .mbr-section-title {
  color: #ffffff;
}
.cid-uFUcBLHNfg .mbr-text {
  color: #fdfde1;
}
.cid-uFUcBLHNfg label {
  color: #ffffff;
}
.cid-uFUcBLHNfg .mbr-section-title,
.cid-uFUcBLHNfg .mbr-section-btn {
  color: #fdfde1;
}
.cid-uFUcBLHNfg .card-contacts {
  color: #bff747;
}
.cid-uFUbhSR1Fl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uFUbhSR1Fl .container-fluid {
  padding: 0 3rem;
}
.cid-uFUbhSR1Fl .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uFUbhSR1Fl .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uFUbhSR1Fl .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uFUbhSR1Fl .social-media {
  margin-top: 1.5rem;
}
.cid-uFUbhSR1Fl .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-uFUbhSR1Fl .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-uFUbhSR1Fl .mbr-text,
.cid-uFUbhSR1Fl .mbr-offer {
  line-height: 1.5;
}
.cid-uFUbhSR1Fl .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-uFUbhSR1Fl .container-fluid {
    padding: 0 1rem;
  }
  .cid-uFUbhSR1Fl .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uFUbhSR1Fl .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-uFUbhSR1Fl .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-uNNWRV93Sm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uNNWRV93Sm .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uNNWRV93Sm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNWRV93Sm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNWRV93Sm .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uNNWRV93Sm .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uNNWRV93Sm .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-uNNWRV93Sm .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-uNNWRV93Sm .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uNNWRV93Sm .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uNNWRV93Sm .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uNOiRd8F3G {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uNOiRd8F3G .container-fluid {
  padding: 0 3rem;
}
.cid-uNOiRd8F3G .media-container-column {
  padding: 0 2rem;
}
.cid-uNOiRd8F3G .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uNOiRd8F3G .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNOiRd8F3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOiRd8F3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOiQDtaoI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uNOiQDtaoI .mbr-text,
.cid-uNOiQDtaoI blockquote {
  color: #232323;
}
.cid-uNNZEz2RzK .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-uNNZEz2RzK .nav-item:focus,
.cid-uNNZEz2RzK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uNNZEz2RzK .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uNNZEz2RzK .nav-item .nav-link {
    position: relative;
  }
  .cid-uNNZEz2RzK .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uNNZEz2RzK .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uNNZEz2RzK .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNNZEz2RzK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNNZEz2RzK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNNZEz2RzK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uNNZEz2RzK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNNZEz2RzK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNNZEz2RzK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uNNZEz2RzK .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uNNZEz2RzK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uNNZEz2RzK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNNZEz2RzK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNNZEz2RzK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNNZEz2RzK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uNNZEz2RzK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNNZEz2RzK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNNZEz2RzK .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-uNNZEz2RzK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNNZEz2RzK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uNNZEz2RzK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uNNZEz2RzK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNNZEz2RzK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNNZEz2RzK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uNNZEz2RzK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNNZEz2RzK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNNZEz2RzK .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-uNNZEz2RzK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uNNZEz2RzK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNNZEz2RzK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNNZEz2RzK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uNNZEz2RzK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uNNZEz2RzK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uNNZEz2RzK .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uNNZEz2RzK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uNNZEz2RzK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uNNZEz2RzK .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-uNNZEz2RzK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNNZEz2RzK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNNZEz2RzK .dropdown-item.active,
.cid-uNNZEz2RzK .dropdown-item:active {
  background-color: transparent;
}
.cid-uNNZEz2RzK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNNZEz2RzK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNNZEz2RzK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNNZEz2RzK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uNNZEz2RzK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNNZEz2RzK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNNZEz2RzK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uNNZEz2RzK .navbar-buttons {
  text-align: center;
}
.cid-uNNZEz2RzK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uNNZEz2RzK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uNNZEz2RzK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uNNZEz2RzK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uNNZEz2RzK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uNNZEz2RzK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uNNZEz2RzK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uNNZEz2RzK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uNNZEz2RzK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uNNZEz2RzK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uNNZEz2RzK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uNNZEz2RzK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNNZEz2RzK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uNNZEz2RzK .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-uNNZEz2RzK .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNNZEz2RzK .navbar {
    height: 77px;
  }
  .cid-uNNZEz2RzK .navbar.opened {
    height: auto;
  }
  .cid-uNNZEz2RzK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNNZEAq0ZF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uNNZEAq0ZF .container-fluid {
  padding: 0 3rem;
}
.cid-uNNZEAq0ZF .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uNNZEAq0ZF .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uNNZEAq0ZF .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uNNZEAq0ZF .social-media {
  margin-top: 1.5rem;
}
.cid-uNNZEAq0ZF .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNZEAq0ZF .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-uNNZEAq0ZF .mbr-text,
.cid-uNNZEAq0ZF .mbr-offer {
  line-height: 1.5;
}
.cid-uNNZEAq0ZF .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-uNNZEAq0ZF .container-fluid {
    padding: 0 1rem;
  }
  .cid-uNNZEAq0ZF .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uNNZEAq0ZF .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-uNNZEAq0ZF .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-uNNZEANaW9 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uNNZEANaW9 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uNNZEANaW9 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNZEANaW9 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNZEANaW9 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uNNZEANaW9 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uNNZEANaW9 .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-uNNZEANaW9 .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-uNNZEANaW9 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uNNZEANaW9 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uNNZEANaW9 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
