body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Kalnia Glaze', display;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Syne Mono', monospace;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Comfortaa', display;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Syne Mono', monospace;
  font-size: 1.8rem;
}
.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.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: #c7fcb5 !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: #8ff96b;
  border-color: #8ff96b;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c7fcb5 !important;
  border-color: #c7fcb5 !important;
  color: #31ab07 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #31ab07 !important;
  background-color: #8ff96b !important;
  border-color: #8ff96b !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: #31ab07 !important;
  background-color: #8ff96b !important;
  border-color: #8ff96b !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #c7fcb5;
  border-color: #c7fcb5;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #7df853;
  color: #7df853 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #31ab07 !important;
  background-color: #c7fcb5;
  border-color: #c7fcb5;
}
.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: #31ab07 !important;
  background-color: #c7fcb5 !important;
  border-color: #c7fcb5 !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #c7fcb5 !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: #7df853 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c7fcb5;
  border-color: #c7fcb5;
  color: #37c408;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c7fcb5;
}
.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_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.2rem;
}
blockquote {
  border-color: #c7fcb5;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #c7fcb5;
  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: #c7fcb5;
  border-bottom-color: #c7fcb5;
}
.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: #c7fcb5 !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='%23c7fcb5' %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-uGv8j97sGw .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-uGv8j97sGw .nav-item:focus,
.cid-uGv8j97sGw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uGv8j97sGw .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uGv8j97sGw .nav-item .nav-link {
    position: relative;
  }
  .cid-uGv8j97sGw .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #c7fcb5, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uGv8j97sGw .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uGv8j97sGw .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uGv8j97sGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGv8j97sGw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGv8j97sGw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c7fcb5;
  background: none;
}
.cid-uGv8j97sGw .navbar.opened {
  transition: all .3s;
  background: #c7fcb5 !important;
}
.cid-uGv8j97sGw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uGv8j97sGw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGv8j97sGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGv8j97sGw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGv8j97sGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uGv8j97sGw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uGv8j97sGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGv8j97sGw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGv8j97sGw .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-uGv8j97sGw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uGv8j97sGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGv8j97sGw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uGv8j97sGw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uGv8j97sGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uGv8j97sGw .navbar.navbar-short {
  background: #c7fcb5 !important;
  min-height: 60px;
}
.cid-uGv8j97sGw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uGv8j97sGw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGv8j97sGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGv8j97sGw .dropdown-item.active,
.cid-uGv8j97sGw .dropdown-item:active {
  background-color: transparent;
}
.cid-uGv8j97sGw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGv8j97sGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGv8j97sGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGv8j97sGw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c7fcb5;
}
.cid-uGv8j97sGw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGv8j97sGw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGv8j97sGw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGv8j97sGw .navbar-buttons {
  text-align: center;
}
.cid-uGv8j97sGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c7fcb5;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGv8j97sGw .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-uGv8j97sGw a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGv8j97sGw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGv8j97sGw .navbar {
    height: 77px;
  }
  .cid-uGv8j97sGw .navbar.opened {
    height: auto;
  }
  .cid-uGv8j97sGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJC3AaRirV {
  background-image: url("../../../assets/images/background2.jpg?v=1UFrNr");
}
.cid-uJC3AaRirV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJC3AaRirV .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-uJC3AaRirV .container {
    padding: 0 16px;
  }
}
.cid-uJC3AaRirV .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJC3AaRirV .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJC3AaRirV .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uJC3AaRirV .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uJC3AaRirV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJC3AaRirV .mbr-text {
  color: #ffffff;
}
.cid-uJC3AaRirV .mbr-text,
.cid-uJC3AaRirV .mbr-section-btn {
  text-align: center;
  color: #c7fcb5;
}
.cid-uJC3AaRirV .mbr-section-title,
.cid-uJC3AaRirV .title-wrap {
  color: #c1c1c1;
}
.cid-uMCFCv92em {
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/background2.jpg?v=1UFrNr");
}
.cid-uMCFCv92em .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uMCFCv92em .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uMCFCv92em .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMCFCv92em .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMCFCv92em .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uMCFCv92em .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMCFCv92em .container {
    padding: 0 30px;
  }
}
.cid-uMCFCv92em .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uMCFCv92em .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMCFCv92em .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uMCFCv92em .text-wrapper {
  border-left: 1px solid #c7fcb5;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uMCFCv92em .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uMCFCv92em .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMCFCv92em .mbr-section-title {
  color: #c7fcb5;
  text-align: center;
}
.cid-uMCFCv92em .mbr-text {
  color: #ffffff;
}
.cid-uMCFCv92em .mbr-section-title DIV {
  text-align: center;
}
.cid-uKPYWMWgyq {
  background-image: url("../../../assets/images/mbr-1920x1346.jpg?v=1UFrNr");
}
.cid-uKPYWMWgyq .mbr-section-title {
  color: #ffffff;
}
.cid-uKPYWMWgyq .mbr-text,
.cid-uKPYWMWgyq .mbr-section-title {
  color: #fff7ee;
  text-align: center;
}
.cid-uKPYWMWgyq .mbr-section-title,
.cid-uKPYWMWgyq .mbr-text {
  color: #c7fcb5;
}
.cid-uH3AqR7NMO {
  background-image: url("../../../assets/images/mbr-1920x1277.jpg?v=1UFrNr");
}
.cid-uH3AqR7NMO .mbr-overlay {
  background: #ffffff;
  opacity: 0.1;
}
.cid-uH3AqR7NMO .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .container {
    padding: 0 22px;
  }
}
.cid-uH3AqR7NMO .row {
  justify-content: space-between;
}
.cid-uH3AqR7NMO .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uH3AqR7NMO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uH3AqR7NMO .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #292325;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-uH3AqR7NMO .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-uH3AqR7NMO .embla__button--next,
.cid-uH3AqR7NMO .embla__button--prev {
  display: flex;
}
.cid-uH3AqR7NMO .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #bf5e63 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-uH3AqR7NMO .embla__button:hover {
  color: #ff5753 !important;
}
.cid-uH3AqR7NMO .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-uH3AqR7NMO .embla__button.embla__button--next {
  right: 0;
}
.cid-uH3AqR7NMO .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uH3AqR7NMO .embla {
    padding-bottom: 4rem;
  }
}
.cid-uH3AqR7NMO .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uH3AqR7NMO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uH3AqR7NMO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uH3AqR7NMO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uH3AqR7NMO .mbr-section-title {
  color: #fe525b;
}
.cid-uH3AqR7NMO .item-title {
  color: #c7fcb5;
}
.cid-uH3AqR7NMO .item-text {
  color: #c7fcb5;
}
.cid-uILBBvxoeL {
  background-image: url("../../../assets/images/mbr-1920x1358.jpg?v=1UFrNr");
}
.cid-uILBBvxoeL .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .container {
    padding: 0 22px;
  }
}
.cid-uILBBvxoeL .row {
  justify-content: space-between;
}
.cid-uILBBvxoeL .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uILBBvxoeL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uILBBvxoeL .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #292325;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-uILBBvxoeL .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-uILBBvxoeL .embla__button--next,
.cid-uILBBvxoeL .embla__button--prev {
  display: flex;
}
.cid-uILBBvxoeL .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #fe525b !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-uILBBvxoeL .embla__button:hover {
  color: #ff5753 !important;
}
.cid-uILBBvxoeL .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-uILBBvxoeL .embla__button.embla__button--next {
  right: 0;
}
.cid-uILBBvxoeL .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uILBBvxoeL .embla {
    padding-bottom: 4rem;
  }
}
.cid-uILBBvxoeL .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uILBBvxoeL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uILBBvxoeL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uILBBvxoeL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uILBBvxoeL .mbr-section-title {
  color: #bf3239;
}
.cid-uILBBvxoeL .item-title {
  color: #c7fcb5;
}
.cid-uILBBvxoeL .item-text {
  color: #c7fcb5;
}
.cid-uH4gn9pao9 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-2-1920x1080.jpg?v=1UFrNr");
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .container {
    padding: 0 22px;
  }
}
.cid-uH4gn9pao9 .row {
  justify-content: space-between;
}
.cid-uH4gn9pao9 .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uH4gn9pao9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 880px;
  max-width: 880px;
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uH4gn9pao9 .embla__slide .slide-content {
  border-radius: 16px !important;
  width: 100%;
}
.cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  background-color: #292325;
  border-radius: 16px !important;
  padding: 16px;
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  width: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper .item-content {
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0;
  }
}
.cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper .item-content .item-date {
  margin-bottom: 0;
}
.cid-uH4gn9pao9 .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
}
.cid-uH4gn9pao9 .embla__button--next,
.cid-uH4gn9pao9 .embla__button--prev {
  display: flex;
}
.cid-uH4gn9pao9 .embla__button {
  top: -3.5rem;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #bf5e63 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-uH4gn9pao9 .embla__button:hover {
  color: #ff5753 !important;
}
.cid-uH4gn9pao9 .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-uH4gn9pao9 .embla__button.embla__button--next {
  right: 0;
}
.cid-uH4gn9pao9 .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uH4gn9pao9 .embla {
    padding-bottom: 4rem;
  }
}
.cid-uH4gn9pao9 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uH4gn9pao9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uH4gn9pao9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uH4gn9pao9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uH4gn9pao9 .mbr-section-title {
  color: #c7fcb5;
}
.cid-uH4gn9pao9 .item-title {
  color: #c7fcb5;
}
.cid-uH4gn9pao9 .item-text {
  color: #c7fcb5;
}
.cid-uJCgtBu9Sw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-15-1920x1280.jpg?v=1UFrNr");
}
.cid-uJCgtBu9Sw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCgtBu9Sw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCgtBu9Sw .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uJCgtBu9Sw .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uJCgtBu9Sw .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uJCgtBu9Sw .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uJCgtBu9Sw .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uJCgtBu9Sw .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uJCgtBu9Sw .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uJCgtBu9Sw .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cid-uJCgtBu9Sw .item:hover .item-wrapper .item-content,
.cid-uJCgtBu9Sw .item:focus .item-wrapper .item-content {
  background-color: #fff1e2;
  margin: 10px;
}
.cid-uJCgtBu9Sw .item:hover .item-wrapper .item-content .item-title,
.cid-uJCgtBu9Sw .item:focus .item-wrapper .item-content .item-title {
  color: #404349;
}
.cid-uJCgtBu9Sw .item:hover .item-wrapper .item-content .item-text,
.cid-uJCgtBu9Sw .item:focus .item-wrapper .item-content .item-text {
  color: #404349;
}
.cid-uJCgtBu9Sw .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 480px;
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJCgtBu9Sw .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: -webkit-linear-gradient(top, transparent, #404349);
  pointer-events: none;
  z-index: 1;
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uJCgtBu9Sw .item .item-wrapper .item-content {
    padding: 20px;
    background-color: #fff1e2;
    margin: 10px;
  }
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-content .desc-wrap .item-desc {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-content .desc-wrap .desc_1 {
  background-color: #ff951b;
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-content .desc-wrap .desc_2 {
  background-color: #ed453f;
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-content .desc-wrap .desc_3 {
  background-color: #45cb20;
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCgtBu9Sw .item .item-wrapper .item-content .item-title {
    color: #404349;
  }
}
.cid-uJCgtBu9Sw .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCgtBu9Sw .item .item-wrapper .item-content .item-text {
    color: #404349;
  }
}
.cid-uJCgtBu9Sw .mbr-section-title {
  color: #404349;
}
.cid-uJCgtBu9Sw .mbr-desc {
  color: #b19a7c;
}
.cid-uJCgtBu9Sw .item-title {
  color: #c7fcb5;
}
.cid-uJCgtBu9Sw .item-desc {
  color: #ffffff;
}
.cid-uJCgtBu9Sw .item-text {
  color: #c7fcb5;
}
.cid-uJCgtBu9Sw .mbr-section-title,
.cid-uJCgtBu9Sw .title-wrap {
  color: #bf3239;
  text-align: left;
}
.cid-uJCjwnQ1V2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-15-1920x1280.jpg?v=1UFrNr");
}
.cid-uJCjwnQ1V2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCjwnQ1V2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCjwnQ1V2 .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uJCjwnQ1V2 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uJCjwnQ1V2 .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uJCjwnQ1V2 .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uJCjwnQ1V2 .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uJCjwnQ1V2 .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uJCjwnQ1V2 .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uJCjwnQ1V2 .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cid-uJCjwnQ1V2 .item:hover .item-wrapper .item-content,
.cid-uJCjwnQ1V2 .item:focus .item-wrapper .item-content {
  background-color: #fff1e2;
  margin: 10px;
}
.cid-uJCjwnQ1V2 .item:hover .item-wrapper .item-content .item-title,
.cid-uJCjwnQ1V2 .item:focus .item-wrapper .item-content .item-title {
  color: #404349;
}
.cid-uJCjwnQ1V2 .item:hover .item-wrapper .item-content .item-text,
.cid-uJCjwnQ1V2 .item:focus .item-wrapper .item-content .item-text {
  color: #404349;
}
.cid-uJCjwnQ1V2 .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 480px;
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJCjwnQ1V2 .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: -webkit-linear-gradient(top, transparent, #404349);
  pointer-events: none;
  z-index: 1;
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uJCjwnQ1V2 .item .item-wrapper .item-content {
    padding: 20px;
    background-color: #fff1e2;
    margin: 10px;
  }
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-content .desc-wrap .item-desc {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-content .desc-wrap .desc_1 {
  background-color: #ff951b;
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-content .desc-wrap .desc_2 {
  background-color: #ed453f;
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-content .desc-wrap .desc_3 {
  background-color: #45cb20;
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCjwnQ1V2 .item .item-wrapper .item-content .item-title {
    color: #404349;
  }
}
.cid-uJCjwnQ1V2 .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCjwnQ1V2 .item .item-wrapper .item-content .item-text {
    color: #404349;
  }
}
.cid-uJCjwnQ1V2 .mbr-section-title {
  color: #404349;
}
.cid-uJCjwnQ1V2 .mbr-desc {
  color: #b19a7c;
}
.cid-uJCjwnQ1V2 .item-title {
  color: #c7fcb5;
}
.cid-uJCjwnQ1V2 .item-desc {
  color: #ffffff;
}
.cid-uJCjwnQ1V2 .item-text {
  color: #c7fcb5;
}
.cid-uJCjwnQ1V2 .mbr-section-title,
.cid-uJCjwnQ1V2 .title-wrap {
  color: #fe525b;
}
.cid-uJCmoGNW3R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg?v=1UFrNr");
}
.cid-uJCmoGNW3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCmoGNW3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCmoGNW3R .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uJCmoGNW3R .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uJCmoGNW3R .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uJCmoGNW3R .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uJCmoGNW3R .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uJCmoGNW3R .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uJCmoGNW3R .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uJCmoGNW3R .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cid-uJCmoGNW3R .item:hover .item-wrapper .item-content,
.cid-uJCmoGNW3R .item:focus .item-wrapper .item-content {
  background-color: #fff1e2;
  margin: 10px;
}
.cid-uJCmoGNW3R .item:hover .item-wrapper .item-content .item-title,
.cid-uJCmoGNW3R .item:focus .item-wrapper .item-content .item-title {
  color: #404349;
}
.cid-uJCmoGNW3R .item:hover .item-wrapper .item-content .item-text,
.cid-uJCmoGNW3R .item:focus .item-wrapper .item-content .item-text {
  color: #404349;
}
.cid-uJCmoGNW3R .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 480px;
}
.cid-uJCmoGNW3R .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uJCmoGNW3R .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJCmoGNW3R .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: -webkit-linear-gradient(top, transparent, #404349);
  pointer-events: none;
  z-index: 1;
}
.cid-uJCmoGNW3R .item .item-wrapper .item-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uJCmoGNW3R .item .item-wrapper .item-content {
    padding: 20px;
    background-color: #fff1e2;
    margin: 10px;
  }
}
.cid-uJCmoGNW3R .item .item-wrapper .item-content .desc-wrap .item-desc {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
}
.cid-uJCmoGNW3R .item .item-wrapper .item-content .desc-wrap .desc_1 {
  background-color: #ff951b;
}
.cid-uJCmoGNW3R .item .item-wrapper .item-content .desc-wrap .desc_2 {
  background-color: #ed453f;
}
.cid-uJCmoGNW3R .item .item-wrapper .item-content .desc-wrap .desc_3 {
  background-color: #45cb20;
}
.cid-uJCmoGNW3R .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCmoGNW3R .item .item-wrapper .item-content .item-title {
    color: #404349;
  }
}
.cid-uJCmoGNW3R .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCmoGNW3R .item .item-wrapper .item-content .item-text {
    color: #404349;
  }
}
.cid-uJCmoGNW3R .mbr-section-title {
  color: #404349;
}
.cid-uJCmoGNW3R .mbr-desc {
  color: #b19a7c;
}
.cid-uJCmoGNW3R .item-title {
  color: #c7fcb5;
}
.cid-uJCmoGNW3R .item-desc {
  color: #ffffff;
}
.cid-uJCmoGNW3R .item-text {
  color: #c7fcb5;
}
.cid-uJCmoGNW3R .mbr-section-title,
.cid-uJCmoGNW3R .title-wrap {
  color: #c7fcb5;
}
.cid-uJCpwjiBRz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg?v=1UFrNr");
}
.cid-uJCpwjiBRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJCpwjiBRz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJCpwjiBRz .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uJCpwjiBRz .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uJCpwjiBRz .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uJCpwjiBRz .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uJCpwjiBRz .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uJCpwjiBRz .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uJCpwjiBRz .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uJCpwjiBRz .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cid-uJCpwjiBRz .item:hover .item-wrapper .item-content,
.cid-uJCpwjiBRz .item:focus .item-wrapper .item-content {
  background-color: #fff1e2;
  margin: 10px;
}
.cid-uJCpwjiBRz .item:hover .item-wrapper .item-content .item-title,
.cid-uJCpwjiBRz .item:focus .item-wrapper .item-content .item-title {
  color: #404349;
}
.cid-uJCpwjiBRz .item:hover .item-wrapper .item-content .item-text,
.cid-uJCpwjiBRz .item:focus .item-wrapper .item-content .item-text {
  color: #404349;
}
.cid-uJCpwjiBRz .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 480px;
}
.cid-uJCpwjiBRz .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uJCpwjiBRz .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJCpwjiBRz .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: -webkit-linear-gradient(top, transparent, #404349);
  pointer-events: none;
  z-index: 1;
}
.cid-uJCpwjiBRz .item .item-wrapper .item-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uJCpwjiBRz .item .item-wrapper .item-content {
    padding: 20px;
    background-color: #fff1e2;
    margin: 10px;
  }
}
.cid-uJCpwjiBRz .item .item-wrapper .item-content .desc-wrap .item-desc {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
}
.cid-uJCpwjiBRz .item .item-wrapper .item-content .desc-wrap .desc_1 {
  background-color: #ff951b;
}
.cid-uJCpwjiBRz .item .item-wrapper .item-content .desc-wrap .desc_2 {
  background-color: #ed453f;
}
.cid-uJCpwjiBRz .item .item-wrapper .item-content .desc-wrap .desc_3 {
  background-color: #45cb20;
}
.cid-uJCpwjiBRz .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCpwjiBRz .item .item-wrapper .item-content .item-title {
    color: #404349;
  }
}
.cid-uJCpwjiBRz .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJCpwjiBRz .item .item-wrapper .item-content .item-text {
    color: #404349;
  }
}
.cid-uJCpwjiBRz .mbr-section-title {
  color: #404349;
}
.cid-uJCpwjiBRz .mbr-desc {
  color: #b19a7c;
}
.cid-uJCpwjiBRz .item-title {
  color: #c7fcb5;
}
.cid-uJCpwjiBRz .item-desc {
  color: #ffffff;
}
.cid-uJCpwjiBRz .item-text {
  color: #c7fcb5;
}
.cid-uJCpwjiBRz .mbr-section-title,
.cid-uJCpwjiBRz .title-wrap {
  color: #fe525b;
}
.cid-uJwiyPD6MR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1280.png?v=1UFrNr");
}
.cid-uJwiyPD6MR .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-uJwiyPD6MR .mbr-overlay {
  z-index: 1;
}
.cid-uJwiyPD6MR .main-container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.cid-uJwiyPD6MR .item-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.cid-uJwiyPD6MR .item-img img {
  object-fit: cover;
  height: auto;
  transition: 1.16s;
  transform: scale(1.05);
  transform-origin: 100% 50%;
  width: 100%;
  transform-style: preserve-3d;
}
.cid-uJwiyPD6MR .item-img:hover img {
  transform: scale(1);
}
.cid-uJwiyPD6MR .item-title {
  line-height: 1.25em;
  text-align: left;
  color: #c7fcb5;
}
.cid-uJwiyPD6MR .mbr-section-title {
  line-height: 1.25em;
}
.cid-uJwiyPD6MR .card-container {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJwiyPD6MR .card-container {
    flex-wrap: wrap;
  }
}
.cid-uJwiyPD6MR .card-container:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 992px) {
  .cid-uJwiyPD6MR .card-container:first-child {
    border-bottom: none;
    border-right: 1px solid #7F8678;
  }
}
.cid-uJwiyPD6MR .card {
  padding: 60px 60px 23px;
  border-radius: 0;
}
@media (max-width: 575px) {
  .cid-uJwiyPD6MR .card {
    padding: 35px 35px 23px;
  }
}
.cid-uJwiyPD6MR .card:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 768px) {
  .cid-uJwiyPD6MR .card:first-child {
    border-right: 1px solid #7F8678;
    border-bottom: none;
  }
}
.cid-uJwiyPD6MR .data-item {
  display: flex;
  align-items: center;
}
.cid-uJwiyPD6MR .data-item .iconfont-wrapper {
  margin-right: 10px;
}
.cid-uJwiyPD6MR .link-wrap {
  margin: 30px 0 6px;
}
.cid-uJwiyPD6MR .text-art {
  flex-grow: 1;
}
.cid-uJwiyPD6MR .link-contacts {
  color: #bf3239;
  text-align: center;
}
.cid-uJwnv2MJ9g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1280.png?v=1UFrNr");
}
.cid-uJwnv2MJ9g .mbr-overlay {
  background: #000000;
  opacity: 0.5;
}
.cid-uJwnv2MJ9g .mbr-overlay {
  z-index: 1;
}
.cid-uJwnv2MJ9g .main-container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.cid-uJwnv2MJ9g .item-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.cid-uJwnv2MJ9g .item-img img {
  object-fit: cover;
  height: auto;
  transition: 1.16s;
  transform: scale(1.05);
  transform-origin: 100% 50%;
  width: 100%;
  transform-style: preserve-3d;
}
.cid-uJwnv2MJ9g .item-img:hover img {
  transform: scale(1);
}
.cid-uJwnv2MJ9g .item-title {
  line-height: 1.25em;
  text-align: left;
  color: #c7fcb5;
}
.cid-uJwnv2MJ9g .mbr-section-title {
  line-height: 1.25em;
}
.cid-uJwnv2MJ9g .card-container {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJwnv2MJ9g .card-container {
    flex-wrap: wrap;
  }
}
.cid-uJwnv2MJ9g .card-container:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 992px) {
  .cid-uJwnv2MJ9g .card-container:first-child {
    border-bottom: none;
    border-right: 1px solid #7F8678;
  }
}
.cid-uJwnv2MJ9g .card {
  padding: 60px 60px 23px;
  border-radius: 0;
}
@media (max-width: 575px) {
  .cid-uJwnv2MJ9g .card {
    padding: 35px 35px 23px;
  }
}
.cid-uJwnv2MJ9g .card:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 768px) {
  .cid-uJwnv2MJ9g .card:first-child {
    border-right: 1px solid #7F8678;
    border-bottom: none;
  }
}
.cid-uJwnv2MJ9g .data-item {
  display: flex;
  align-items: center;
}
.cid-uJwnv2MJ9g .data-item .iconfont-wrapper {
  margin-right: 10px;
}
.cid-uJwnv2MJ9g .link-wrap {
  margin: 30px 0 6px;
}
.cid-uJwnv2MJ9g .text-art {
  flex-grow: 1;
}
.cid-uJwnv2MJ9g .link-contacts {
  color: #bf3239;
  text-align: center;
}
.cid-uJwux3Pflp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1280.png?v=1UFrNr");
}
.cid-uJwux3Pflp .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-uJwux3Pflp .mbr-overlay {
  z-index: 1;
}
.cid-uJwux3Pflp .main-container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.cid-uJwux3Pflp .item-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.cid-uJwux3Pflp .item-img img {
  object-fit: cover;
  height: auto;
  transition: 1.16s;
  transform: scale(1.05);
  transform-origin: 100% 50%;
  width: 100%;
  transform-style: preserve-3d;
}
.cid-uJwux3Pflp .item-img:hover img {
  transform: scale(1);
}
.cid-uJwux3Pflp .item-title {
  line-height: 1.25em;
  text-align: left;
  color: #c7fcb5;
}
.cid-uJwux3Pflp .mbr-section-title {
  line-height: 1.25em;
}
.cid-uJwux3Pflp .card-container {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJwux3Pflp .card-container {
    flex-wrap: wrap;
  }
}
.cid-uJwux3Pflp .card-container:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 992px) {
  .cid-uJwux3Pflp .card-container:first-child {
    border-bottom: none;
    border-right: 1px solid #7F8678;
  }
}
.cid-uJwux3Pflp .card {
  padding: 60px 60px 23px;
  border-radius: 0;
}
@media (max-width: 575px) {
  .cid-uJwux3Pflp .card {
    padding: 35px 35px 23px;
  }
}
.cid-uJwux3Pflp .card:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 768px) {
  .cid-uJwux3Pflp .card:first-child {
    border-right: 1px solid #7F8678;
    border-bottom: none;
  }
}
.cid-uJwux3Pflp .data-item {
  display: flex;
  align-items: center;
}
.cid-uJwux3Pflp .data-item .iconfont-wrapper {
  margin-right: 10px;
}
.cid-uJwux3Pflp .link-wrap {
  margin: 30px 0 6px;
}
.cid-uJwux3Pflp .text-art {
  flex-grow: 1;
}
.cid-uJwux3Pflp .link-contacts {
  color: #bf3239;
  text-align: center;
}
.cid-uJwABLf3eW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1280.png?v=1UFrNr");
}
.cid-uJwABLf3eW .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-uJwABLf3eW .mbr-overlay {
  z-index: 1;
}
.cid-uJwABLf3eW .main-container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.cid-uJwABLf3eW .item-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.cid-uJwABLf3eW .item-img img {
  object-fit: cover;
  height: auto;
  transition: 1.16s;
  transform: scale(1.05);
  transform-origin: 100% 50%;
  width: 100%;
  transform-style: preserve-3d;
}
.cid-uJwABLf3eW .item-img:hover img {
  transform: scale(1);
}
.cid-uJwABLf3eW .item-title {
  line-height: 1.25em;
  text-align: left;
  color: #c7fcb5;
}
.cid-uJwABLf3eW .mbr-section-title {
  line-height: 1.25em;
}
.cid-uJwABLf3eW .card-container {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJwABLf3eW .card-container {
    flex-wrap: wrap;
  }
}
.cid-uJwABLf3eW .card-container:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 992px) {
  .cid-uJwABLf3eW .card-container:first-child {
    border-bottom: none;
    border-right: 1px solid #7F8678;
  }
}
.cid-uJwABLf3eW .card {
  padding: 60px 60px 23px;
  border-radius: 0;
}
@media (max-width: 575px) {
  .cid-uJwABLf3eW .card {
    padding: 35px 35px 23px;
  }
}
.cid-uJwABLf3eW .card:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 768px) {
  .cid-uJwABLf3eW .card:first-child {
    border-right: 1px solid #7F8678;
    border-bottom: none;
  }
}
.cid-uJwABLf3eW .data-item {
  display: flex;
  align-items: center;
}
.cid-uJwABLf3eW .data-item .iconfont-wrapper {
  margin-right: 10px;
}
.cid-uJwABLf3eW .link-wrap {
  margin: 30px 0 6px;
}
.cid-uJwABLf3eW .text-art {
  flex-grow: 1;
}
.cid-uJwABLf3eW .link-contacts {
  color: #bf3239;
  text-align: center;
}
.cid-uMP1jQfC1j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1280.png?v=1UFrNr");
}
.cid-uMP1jQfC1j .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-uMP1jQfC1j .mbr-overlay {
  z-index: 1;
}
.cid-uMP1jQfC1j .main-container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.cid-uMP1jQfC1j .item-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.cid-uMP1jQfC1j .item-img img {
  object-fit: cover;
  height: auto;
  transition: 1.16s;
  transform: scale(1.05);
  transform-origin: 100% 50%;
  width: 100%;
  transform-style: preserve-3d;
}
.cid-uMP1jQfC1j .item-img:hover img {
  transform: scale(1);
}
.cid-uMP1jQfC1j .item-title {
  line-height: 1.25em;
  text-align: left;
  color: #c7fcb5;
}
.cid-uMP1jQfC1j .mbr-section-title {
  line-height: 1.25em;
}
.cid-uMP1jQfC1j .card-container {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uMP1jQfC1j .card-container {
    flex-wrap: wrap;
  }
}
.cid-uMP1jQfC1j .card-container:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 992px) {
  .cid-uMP1jQfC1j .card-container:first-child {
    border-bottom: none;
    border-right: 1px solid #7F8678;
  }
}
.cid-uMP1jQfC1j .card {
  padding: 60px 60px 23px;
  border-radius: 0;
}
@media (max-width: 575px) {
  .cid-uMP1jQfC1j .card {
    padding: 35px 35px 23px;
  }
}
.cid-uMP1jQfC1j .card:first-child {
  border-bottom: 1px solid #7F8678;
}
@media (min-width: 768px) {
  .cid-uMP1jQfC1j .card:first-child {
    border-right: 1px solid #7F8678;
    border-bottom: none;
  }
}
.cid-uMP1jQfC1j .data-item {
  display: flex;
  align-items: center;
}
.cid-uMP1jQfC1j .data-item .iconfont-wrapper {
  margin-right: 10px;
}
.cid-uMP1jQfC1j .link-wrap {
  margin: 30px 0 6px;
}
.cid-uMP1jQfC1j .text-art {
  flex-grow: 1;
}
.cid-uMP1jQfC1j .link-contacts {
  color: #bf3239;
  text-align: center;
}
.cid-uMIQZng5NM {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg?v=1UFrNr");
}
.cid-uMIQZng5NM .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-uMIQZng5NM .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-uMIQZng5NM .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-uMIQZng5NM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uMIQZng5NM .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-uMIQZng5NM .input-group-btn .btn {
  margin: 0;
}
.cid-uMIQZng5NM .subtext-1,
.cid-uMIQZng5NM .subtext-2 {
  margin-bottom: .6rem;
}
.cid-uMIQZng5NM .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #bf3239;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uMIQZng5NM .icon-transition span:hover {
  background-color: #bf5e63;
}
.cid-uMIQZng5NM .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uMIQZng5NM .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-uMIQZng5NM .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uMIQZng5NM .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-uMIQZng5NM .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-uMIQZng5NM .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
}
.cid-uMIQZng5NM .form-text {
  color: #c7fcb5;
  text-align: left;
}
.cid-uMIQZng5NM .subtext-1 {
  color: #c7fcb5;
  text-align: left;
}
.cid-uMIQZng5NM .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-uMIQZng5NM .form-group {
  max-width: 400px;
}
.cid-uMIQZng5NM .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-uMIQZng5NM .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-uMIQZng5NM .form-row {
    justify-content: center;
  }
  .cid-uMIQZng5NM .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-uMIQZng5NM .subtext-1,
  .cid-uMIQZng5NM .subtext-2,
  .cid-uMIQZng5NM .card-support {
    text-align: center;
  }
  .cid-uMIQZng5NM .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-uMIQZng5NM .form-text {
    text-align: center;
  }
  .cid-uMIQZng5NM .follow-section {
    margin: 0;
  }
  .cid-uMIQZng5NM .mbr-form {
    text-align: center;
  }
  .cid-uMIQZng5NM .social-media ul li {
    margin-right: .1rem;
  }
  .cid-uMIQZng5NM .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-uMIQZng5NM .firstColumn,
  .cid-uMIQZng5NM .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-uMIQZng5NM .form-row {
    flex-direction: column;
  }
}
.cid-uMIQZng5NM LI {
  text-align: center;
  color: #44f7b3;
}
.cid-uMIQZng5NM .follow-heading,
.cid-uMIQZng5NM .social-media {
  color: #c7fcb5;
}
.cid-uMIQZng5NM .subtext-2,
.cid-uMIQZng5NM .card-support {
  color: #c7fcb5;
}
.cid-uMIRaUZ3B7 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1000x667.jpg?v=1UFrNr");
}
.cid-uMIRaUZ3B7 .media-container-row .mbr-text {
  color: #465052;
}
.cid-uS0o553JXq {
  padding-top: 135px;
  padding-bottom: 135px;
  background: #1b1b1b;
}
.cid-uS0o553JXq .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: 0.6rem;
}
.cid-uS0o553JXq .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #879a9f;
  transition: all 0.3s;
}
.cid-uS0o553JXq .mbr-iconfont-social:hover {
  color: #879a9f;
}
.cid-uS0o553JXq .mbr-section-title,
.cid-uS0o553JXq .social-list {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.cid-uS0o553JXq .social-list a {
  transition: 0.3s;
}
.cid-uS0o553JXq .social-list a:hover {
  transform: translateY(-8px);
}
@media (max-width: 992px) {
  .cid-uS0o553JXq .block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-uS0o553JXq .social-list {
    margin-bottom: 2rem;
  }
  .cid-uS0o553JXq .mbr-section-title {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uS0o553JXq .block-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .cid-uS0o553JXq .btn {
    margin-right: 0rem;
    margin-bottom: 0rem;
  }
  .cid-uS0o553JXq .row {
    padding: 0 1rem;
  }
}
.cid-uS0o553JXq .vertical-line:before {
  content: '';
  background-color: #879a9f;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-uS0o553JXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS0o553JXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .nav-item:focus,
.cid-uGv8j97sGw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uGv8j97sGw .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uGv8j97sGw .nav-item .nav-link {
    position: relative;
  }
  .cid-uGv8j97sGw .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #c7fcb5, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uGv8j97sGw .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uGv8j97sGw .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uGv8j97sGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGv8j97sGw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGv8j97sGw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c7fcb5;
  background: none;
}
.cid-uGv8j97sGw .navbar.opened {
  transition: all .3s;
  background: #c7fcb5 !important;
}
.cid-uGv8j97sGw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uGv8j97sGw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGv8j97sGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGv8j97sGw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGv8j97sGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uGv8j97sGw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uGv8j97sGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGv8j97sGw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGv8j97sGw .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-uGv8j97sGw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uGv8j97sGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGv8j97sGw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uGv8j97sGw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uGv8j97sGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uGv8j97sGw .navbar.navbar-short {
  background: #c7fcb5 !important;
  min-height: 60px;
}
.cid-uGv8j97sGw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uGv8j97sGw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGv8j97sGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGv8j97sGw .dropdown-item.active,
.cid-uGv8j97sGw .dropdown-item:active {
  background-color: transparent;
}
.cid-uGv8j97sGw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGv8j97sGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGv8j97sGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGv8j97sGw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c7fcb5;
}
.cid-uGv8j97sGw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGv8j97sGw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGv8j97sGw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGv8j97sGw .navbar-buttons {
  text-align: center;
}
.cid-uGv8j97sGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c7fcb5;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGv8j97sGw .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-uGv8j97sGw a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGv8j97sGw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGv8j97sGw .navbar {
    height: 77px;
  }
  .cid-uGv8j97sGw .navbar.opened {
    height: auto;
  }
  .cid-uGv8j97sGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMD8nFlgGu {
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg?v=1UFrNr");
}
.cid-uMD8nFlgGu .mbr-section-title {
  color: #ffffff;
}
.cid-uMD8nFlgGu .mbr-text,
.cid-uMD8nFlgGu .mbr-section-title {
  color: #fff7ee;
  text-align: left;
}
.cid-uMD8nFlgGu .mbr-section-title,
.cid-uMD8nFlgGu .mbr-text {
  color: #c7fcb5;
}
.cid-uRCt1ekt3Z {
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg?v=1UFrNr");
}
.cid-uRCt1ekt3Z .mbr-section-title {
  color: #ffffff;
}
.cid-uRCt1ekt3Z .mbr-text,
.cid-uRCt1ekt3Z .mbr-section-title {
  color: #fff7ee;
  text-align: left;
}
.cid-uRCt1ekt3Z .mbr-section-title,
.cid-uRCt1ekt3Z .mbr-text {
  color: #c7fcb5;
}
.cid-uMD2JBGiSm {
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg?v=1UFrNr");
}
.cid-uMD2JBGiSm .mbr-section-title {
  color: #ffffff;
}
.cid-uMD2JBGiSm .mbr-text,
.cid-uMD2JBGiSm .mbr-section-title {
  color: #fff7ee;
  text-align: left;
}
.cid-uMD2JBGiSm .mbr-section-title,
.cid-uMD2JBGiSm .mbr-text {
  color: #c7fcb5;
}
.cid-uMD5pSFHqU {
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg?v=1UFrNr");
}
.cid-uMD5pSFHqU .mbr-section-title {
  color: #ffffff;
}
.cid-uMD5pSFHqU .mbr-text,
.cid-uMD5pSFHqU .mbr-section-title {
  color: #fff7ee;
  text-align: left;
}
.cid-uMD5pSFHqU .mbr-section-title,
.cid-uMD5pSFHqU .mbr-text {
  color: #c7fcb5;
}
.cid-uMIQZng5NM {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg?v=1UFrNr");
}
.cid-uMIQZng5NM .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-uMIQZng5NM .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-uMIQZng5NM .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-uMIQZng5NM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uMIQZng5NM .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-uMIQZng5NM .input-group-btn .btn {
  margin: 0;
}
.cid-uMIQZng5NM .subtext-1,
.cid-uMIQZng5NM .subtext-2 {
  margin-bottom: .6rem;
}
.cid-uMIQZng5NM .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #bf3239;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uMIQZng5NM .icon-transition span:hover {
  background-color: #bf5e63;
}
.cid-uMIQZng5NM .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uMIQZng5NM .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-uMIQZng5NM .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uMIQZng5NM .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-uMIQZng5NM .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-uMIQZng5NM .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
}
.cid-uMIQZng5NM .form-text {
  color: #c7fcb5;
  text-align: left;
}
.cid-uMIQZng5NM .subtext-1 {
  color: #c7fcb5;
  text-align: left;
}
.cid-uMIQZng5NM .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-uMIQZng5NM .form-group {
  max-width: 400px;
}
.cid-uMIQZng5NM .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-uMIQZng5NM .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-uMIQZng5NM .form-row {
    justify-content: center;
  }
  .cid-uMIQZng5NM .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-uMIQZng5NM .subtext-1,
  .cid-uMIQZng5NM .subtext-2,
  .cid-uMIQZng5NM .card-support {
    text-align: center;
  }
  .cid-uMIQZng5NM .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-uMIQZng5NM .form-text {
    text-align: center;
  }
  .cid-uMIQZng5NM .follow-section {
    margin: 0;
  }
  .cid-uMIQZng5NM .mbr-form {
    text-align: center;
  }
  .cid-uMIQZng5NM .social-media ul li {
    margin-right: .1rem;
  }
  .cid-uMIQZng5NM .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-uMIQZng5NM .firstColumn,
  .cid-uMIQZng5NM .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-uMIQZng5NM .form-row {
    flex-direction: column;
  }
}
.cid-uMIQZng5NM LI {
  text-align: center;
  color: #44f7b3;
}
.cid-uMIQZng5NM .follow-heading,
.cid-uMIQZng5NM .social-media {
  color: #c7fcb5;
}
.cid-uMIQZng5NM .subtext-2,
.cid-uMIQZng5NM .card-support {
  color: #c7fcb5;
}
.cid-uMIRaUZ3B7 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1000x667.jpg?v=1UFrNr");
}
.cid-uMIRaUZ3B7 .media-container-row .mbr-text {
  color: #465052;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .nav-item:focus,
.cid-uGv8j97sGw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uGv8j97sGw .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uGv8j97sGw .nav-item .nav-link {
    position: relative;
  }
  .cid-uGv8j97sGw .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #c7fcb5, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uGv8j97sGw .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uGv8j97sGw .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGv8j97sGw .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-uGv8j97sGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGv8j97sGw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGv8j97sGw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c7fcb5;
  background: none;
}
.cid-uGv8j97sGw .navbar.opened {
  transition: all .3s;
  background: #c7fcb5 !important;
}
.cid-uGv8j97sGw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-uGv8j97sGw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGv8j97sGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGv8j97sGw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGv8j97sGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGv8j97sGw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uGv8j97sGw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uGv8j97sGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGv8j97sGw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGv8j97sGw .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-uGv8j97sGw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uGv8j97sGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGv8j97sGw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGv8j97sGw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uGv8j97sGw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uGv8j97sGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uGv8j97sGw .navbar.navbar-short {
  background: #c7fcb5 !important;
  min-height: 60px;
}
.cid-uGv8j97sGw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uGv8j97sGw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGv8j97sGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGv8j97sGw .dropdown-item.active,
.cid-uGv8j97sGw .dropdown-item:active {
  background-color: transparent;
}
.cid-uGv8j97sGw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGv8j97sGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGv8j97sGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGv8j97sGw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c7fcb5;
}
.cid-uGv8j97sGw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGv8j97sGw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGv8j97sGw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGv8j97sGw .navbar-buttons {
  text-align: center;
}
.cid-uGv8j97sGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c7fcb5;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uGv8j97sGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uGv8j97sGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGv8j97sGw .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-uGv8j97sGw a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGv8j97sGw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uGv8j97sGw .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-uGv8j97sGw .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGv8j97sGw .navbar {
    height: 77px;
  }
  .cid-uGv8j97sGw .navbar.opened {
    height: auto;
  }
  .cid-uGv8j97sGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS0oTF8DSo {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1323.jpg?v=1UFrNr");
}
.cid-uS0oTF8DSo .mbr-iconfont-social {
  font-size: 1rem;
  color: #bf3239;
  margin-right: 0.6rem;
}
.cid-uS0oTF8DSo .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #879a9f;
  transition: all 0.3s;
}
.cid-uS0oTF8DSo .mbr-iconfont-social:hover {
  color: #879a9f;
}
.cid-uS0oTF8DSo .mbr-section-title,
.cid-uS0oTF8DSo .social-list {
  display: flex;
  align-items: center;
  color: #bf3239;
}
.cid-uS0oTF8DSo .social-list a {
  transition: 0.3s;
}
.cid-uS0oTF8DSo .social-list a:hover {
  transform: translateY(-8px);
}
@media (max-width: 992px) {
  .cid-uS0oTF8DSo .block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-uS0oTF8DSo .social-list {
    margin-bottom: 2rem;
  }
  .cid-uS0oTF8DSo .mbr-section-title {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uS0oTF8DSo .block-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .cid-uS0oTF8DSo .btn {
    margin-right: 0rem;
    margin-bottom: 0rem;
  }
  .cid-uS0oTF8DSo .row {
    padding: 0 1rem;
  }
}
.cid-uS0oTF8DSo .vertical-line:before {
  content: '';
  background-color: #879a9f;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-uS0oTF8DSo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS0oTF8DSo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMIQZng5NM {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg?v=1UFrNr");
}
.cid-uMIQZng5NM .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-uMIQZng5NM .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-uMIQZng5NM .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-uMIQZng5NM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uMIQZng5NM .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-uMIQZng5NM .input-group-btn .btn {
  margin: 0;
}
.cid-uMIQZng5NM .subtext-1,
.cid-uMIQZng5NM .subtext-2 {
  margin-bottom: .6rem;
}
.cid-uMIQZng5NM .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #bf3239;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uMIQZng5NM .icon-transition span:hover {
  background-color: #bf5e63;
}
.cid-uMIQZng5NM .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uMIQZng5NM .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-uMIQZng5NM .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uMIQZng5NM .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-uMIQZng5NM .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-uMIQZng5NM .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
}
.cid-uMIQZng5NM .form-text {
  color: #c7fcb5;
  text-align: left;
}
.cid-uMIQZng5NM .subtext-1 {
  color: #c7fcb5;
  text-align: left;
}
.cid-uMIQZng5NM .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-uMIQZng5NM .form-group {
  max-width: 400px;
}
.cid-uMIQZng5NM .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-uMIQZng5NM .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-uMIQZng5NM .form-row {
    justify-content: center;
  }
  .cid-uMIQZng5NM .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-uMIQZng5NM .subtext-1,
  .cid-uMIQZng5NM .subtext-2,
  .cid-uMIQZng5NM .card-support {
    text-align: center;
  }
  .cid-uMIQZng5NM .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-uMIQZng5NM .form-text {
    text-align: center;
  }
  .cid-uMIQZng5NM .follow-section {
    margin: 0;
  }
  .cid-uMIQZng5NM .mbr-form {
    text-align: center;
  }
  .cid-uMIQZng5NM .social-media ul li {
    margin-right: .1rem;
  }
  .cid-uMIQZng5NM .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-uMIQZng5NM .firstColumn,
  .cid-uMIQZng5NM .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-uMIQZng5NM .form-row {
    flex-direction: column;
  }
}
.cid-uMIQZng5NM LI {
  text-align: center;
  color: #44f7b3;
}
.cid-uMIQZng5NM .follow-heading,
.cid-uMIQZng5NM .social-media {
  color: #c7fcb5;
}
.cid-uMIQZng5NM .subtext-2,
.cid-uMIQZng5NM .card-support {
  color: #c7fcb5;
}
.cid-uMIRaUZ3B7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1000x667.jpg?v=1UFrNr");
}
.cid-uMIRaUZ3B7 .media-container-row .mbr-text {
  color: #465052;
}
