body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
}
.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: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
}
.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: #a38dfd !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #a38dfd;
}
/* 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: #a38dfd;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a38dfd;
  border-bottom-color: #a38dfd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a38dfd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fe525b !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23a38dfd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-swrmLQ0j6O .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-swrmLQ0j6O .nav-item:focus,
.cid-swrmLQ0j6O .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-swrmLQ0j6O .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-swrmLQ0j6O .nav-item .nav-link {
    position: relative;
  }
  .cid-swrmLQ0j6O .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-swrmLQ0j6O .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-swrmLQ0j6O .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-swrmLQ0j6O .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-swrmLQ0j6O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swrmLQ0j6O .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swrmLQ0j6O .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swrmLQ0j6O .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-swrmLQ0j6O .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-swrmLQ0j6O .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-swrmLQ0j6O .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-swrmLQ0j6O .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-swrmLQ0j6O .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-swrmLQ0j6O .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swrmLQ0j6O .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-swrmLQ0j6O .navbar.collapsed .navbar-collapse.show,
.cid-swrmLQ0j6O .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-swrmLQ0j6O .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-swrmLQ0j6O .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-swrmLQ0j6O .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swrmLQ0j6O .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swrmLQ0j6O .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swrmLQ0j6O .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-swrmLQ0j6O .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swrmLQ0j6O .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-swrmLQ0j6O .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-swrmLQ0j6O .navbar.collapsed .right-menu,
.cid-swrmLQ0j6O .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-swrmLQ0j6O .navbar .navbar-collapse.show,
  .cid-swrmLQ0j6O .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-swrmLQ0j6O .navbar .navbar-collapse.show .brand-container,
  .cid-swrmLQ0j6O .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-swrmLQ0j6O .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swrmLQ0j6O .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-swrmLQ0j6O .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swrmLQ0j6O .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swrmLQ0j6O .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-swrmLQ0j6O .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-swrmLQ0j6O .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swrmLQ0j6O .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-swrmLQ0j6O .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-swrmLQ0j6O .navbar .right-menu,
  .cid-swrmLQ0j6O .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-swrmLQ0j6O .navbar.navbar-short {
  min-height: 60px;
}
.cid-swrmLQ0j6O .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-swrmLQ0j6O .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-swrmLQ0j6O .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swrmLQ0j6O .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swrmLQ0j6O .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swrmLQ0j6O .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swrmLQ0j6O .dropdown-item.active,
.cid-swrmLQ0j6O .dropdown-item:active {
  background-color: transparent;
}
.cid-swrmLQ0j6O .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swrmLQ0j6O .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swrmLQ0j6O .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swrmLQ0j6O .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-swrmLQ0j6O .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swrmLQ0j6O .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swrmLQ0j6O ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-swrmLQ0j6O ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-swrmLQ0j6O .navbar-buttons {
  margin-left: auto;
}
.cid-swrmLQ0j6O button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-swrmLQ0j6O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-swrmLQ0j6O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swrmLQ0j6O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swrmLQ0j6O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swrmLQ0j6O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swrmLQ0j6O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swrmLQ0j6O nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-swrmLQ0j6O nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-swrmLQ0j6O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swrmLQ0j6O .navbar-dropdown {
  position: fixed;
}
.cid-swrmLQ0j6O a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-swrmLQ0j6O .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-swrmLQ0j6O .right-menu,
.cid-swrmLQ0j6O .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-swrmLQ0j6O .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-swrmLQ0j6O .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-swrmLQ0j6O .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-swrmLQ0j6O .menu-top {
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  padding: .5rem 0;
  color: #000000;
}
.cid-swrmLQ0j6O .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-swrmLQ0j6O .card-wrapper {
  z-index: 3;
}
.cid-swrmLQ0j6O .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-swrmLQ0j6O .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swrmLQ0j6O .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCoVKl7kXb {
  padding-top: 150px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sCoVKl7kXb .mbr-section-subtitle {
  color: #767676;
}
.cid-sCoVKl7kXb .mbr-section-title {
  text-align: left;
}
.cid-uZYI0EeJgx {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uZYI0EeJgx .mbr-section-subtitle {
  color: #767676;
}
.cid-uZYI0EeJgx .mbr-section-title {
  text-align: left;
}
.cid-swx3KLd6I4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-swx3KLd6I4 .mbr-text {
    text-align: center;
  }
}
.cid-swx3KLd6I4 .container-fluid {
  padding: 0;
}
.cid-swx3KLd6I4 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-swx3KLd6I4 img {
  height: 100%;
  object-fit: cover;
}
.cid-swx3KLd6I4 .mbr-figure {
  height: 100%;
}
.cid-swx3KLd6I4 .col-lg-6 {
  padding: 0;
}
.cid-swx3KLd6I4 .row {
  margin: 0;
}
.cid-swx3KLd6I4 .mbr-text,
.cid-swx3KLd6I4 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-swx3KLd6I4 H3 {
  color: #000000;
}
.cid-tF4qUYMOCh {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tF4qUYMOCh .mbr-iconfont-social {
  font-size: 32px;
  color: #000000;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tF4qUYMOCh .mbr-iconfont-social:hover {
  color: #8264fd;
}
.cid-tF4qUYMOCh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tF4qUYMOCh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-tF4qUYMOCh .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tF4qUYMOCh .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tF4qUYMOCh .mbr-section-title,
.cid-tF4qUYMOCh .social-list,
.cid-tF4qUYMOCh .underline {
  text-align: left;
}
.cid-uUBP7970GN {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uUBP7970GN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uUBP7970GN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uUBP7970GN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uUBP7970GN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uUBP7970GN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uUBP7970GN .icon-focus {
  display: none;
}
.cid-uUBP7970GN .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uUBP7970GN ul {
  font-size: 0;
}
.cid-uUBP7970GN .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-uUBP7970GN .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-uUBP7970GN .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
}
.cid-uUBP7970GN .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uUBP7970GN .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uUBP7970GN .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-uUBP7970GN .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uUBP7970GN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uUBP7970GN .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uUBP7970GN .btn:hover {
  background: transparent !important;
}
.cid-uUBP7970GN .btn:hover:before {
  background: transparent !important;
}
.cid-uUBP7970GN .btn:before {
  background-color: transparent !important;
}
.cid-uUBP7970GN .btn:focus {
  box-shadow: none;
}
.cid-uUCyFTjwB4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUCyFTjwB4 .container-fluid {
  padding: 0 3rem;
}
.cid-uUCyFTjwB4 .media-container-column {
  padding: 0 2rem;
}
.cid-uUCyFTjwB4 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uUCyFTjwB4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uUCyFTjwB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUCyFTjwB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUCyFTjwB4 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uRYqjMbge0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uRYqjMbge0 .counter-container {
  color: #767676;
}
.cid-uRYqjMbge0 .counter-container ul {
  margin-bottom: 0;
}
.cid-uRYqjMbge0 .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-uRYqjMbge0 .mbr-text {
  color: #000000;
}
.cid-v3hBnU7ky1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f2f2;
}
.cid-v3hBnU7ky1 .counter-container {
  color: #767676;
}
.cid-v3hBnU7ky1 .counter-container ul {
  margin-bottom: 0;
}
.cid-v3hBnU7ky1 .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-v3hBnU7ky1 .mbr-text {
  color: #000000;
}
.cid-v3hzQIAgz8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1d2d8;
}
.cid-v3hzQIAgz8 .counter-container {
  color: #767676;
}
.cid-v3hzQIAgz8 .counter-container ul {
  margin-bottom: 0;
}
.cid-v3hzQIAgz8 .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-v3hzQIAgz8 .mbr-text {
  color: #000000;
}
.cid-v3hBf23R5x {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v3hBf23R5x .counter-container {
  color: #767676;
}
.cid-v3hBf23R5x .counter-container ul {
  margin-bottom: 0;
}
.cid-v3hBf23R5x .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-v3hBf23R5x .mbr-text {
  color: #000000;
}
.cid-uS33rzR5DM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-uS33rzR5DM .container-fluid {
  padding: 0 3rem;
}
.cid-uS33rzR5DM .media-container-column {
  padding: 0 2rem;
}
.cid-uS33rzR5DM .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS33rzR5DM .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS33rzR5DM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS33rzR5DM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS33rzR5DM .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uUGCKaAj19 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #c09497;
}
.cid-uUGCKaAj19 .container-fluid {
  padding: 0 3rem;
}
.cid-uUGCKaAj19 .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-uUGCKaAj19 .input-main {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uUGCKaAj19 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uUGCKaAj19 .form-group {
  margin-bottom: 1.4em;
}
.cid-uUGCKaAj19 .form-control {
  background-color: #cccccc;
  border-radius: 22px;
  padding: 18px 25px;
}
.cid-uUGCKaAj19 input.form-control {
  border: 1px solid #ddd;
}
.cid-uUGCKaAj19 textarea.form-control {
  padding: 1rem;
  min-height: 209px;
}
.cid-uUGCKaAj19 .input-group-btn .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-uUGCKaAj19 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUGCKaAj19 .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-uUGCKaAj19 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUGCKaAj19 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUGCKaAj19 H1 {
  text-align: left;
  color: #000000;
}
.cid-uUGCKaAj19 LABEL {
  color: #232323;
}
.cid-uZYLuh1h3F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #c1c1c1;
}
.cid-uZYLuh1h3F .container-fluid {
  padding: 0 3rem;
}
.cid-uZYLuh1h3F .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-uZYLuh1h3F .input-main {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uZYLuh1h3F .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-uZYLuh1h3F .form-group {
  margin-bottom: 1.4em;
}
.cid-uZYLuh1h3F .form-control {
  background-color: #cccccc;
  border-radius: 22px;
  padding: 18px 25px;
}
.cid-uZYLuh1h3F input.form-control {
  border: 1px solid #ddd;
}
.cid-uZYLuh1h3F textarea.form-control {
  padding: 1rem;
  min-height: 209px;
}
.cid-uZYLuh1h3F .input-group-btn .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-uZYLuh1h3F .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZYLuh1h3F .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-uZYLuh1h3F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYLuh1h3F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYLuh1h3F H1 {
  text-align: left;
  color: #000000;
}
.cid-uZYLuh1h3F LABEL {
  color: #232323;
}
.cid-v2COC6mQ6e {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #384842;
}
.cid-v2COC6mQ6e .container-fluid {
  padding: 0 3rem;
}
.cid-v2COC6mQ6e .media-container-column {
  padding: 0 2rem;
}
.cid-v2COC6mQ6e .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-v2COC6mQ6e .container-fluid {
    padding: 0 1rem;
  }
}
.cid-v2COC6mQ6e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2COC6mQ6e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2COC6mQ6e .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v2CN2ePmrA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #87aa9d;
}
.cid-v2CN2ePmrA .container-fluid {
  padding: 0 3rem;
}
.cid-v2CN2ePmrA .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-v2CN2ePmrA .input-main {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2CN2ePmrA .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-v2CN2ePmrA .form-group {
  margin-bottom: 1.4em;
}
.cid-v2CN2ePmrA .form-control {
  background-color: #cccccc;
  border-radius: 22px;
  padding: 18px 25px;
}
.cid-v2CN2ePmrA input.form-control {
  border: 1px solid #ddd;
}
.cid-v2CN2ePmrA textarea.form-control {
  padding: 1rem;
  min-height: 209px;
}
.cid-v2CN2ePmrA .input-group-btn .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-v2CN2ePmrA .container-fluid {
    padding: 0 1rem;
  }
  .cid-v2CN2ePmrA .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-v2CN2ePmrA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2CN2ePmrA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2CN2ePmrA H1 {
  text-align: left;
  color: #000000;
}
.cid-v2CN2ePmrA LABEL {
  color: #232323;
}
.cid-v2CPhmwaY3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #97869b;
}
.cid-v2CPhmwaY3 .container-fluid {
  padding: 0 3rem;
}
.cid-v2CPhmwaY3 .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-v2CPhmwaY3 .input-main {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2CPhmwaY3 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-v2CPhmwaY3 .form-group {
  margin-bottom: 1.4em;
}
.cid-v2CPhmwaY3 .form-control {
  background-color: #cccccc;
  border-radius: 22px;
  padding: 18px 25px;
}
.cid-v2CPhmwaY3 input.form-control {
  border: 1px solid #ddd;
}
.cid-v2CPhmwaY3 textarea.form-control {
  padding: 1rem;
  min-height: 209px;
}
.cid-v2CPhmwaY3 .input-group-btn .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-v2CPhmwaY3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-v2CPhmwaY3 .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-v2CPhmwaY3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2CPhmwaY3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2CPhmwaY3 H1 {
  text-align: left;
  color: #000000;
}
.cid-v2CPhmwaY3 LABEL {
  color: #232323;
}
.cid-uS37RGMHcw {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS37RGMHcw .container-fluid {
  padding: 0 3rem;
}
.cid-uS37RGMHcw .media-container-column {
  padding: 0 2rem;
}
.cid-uS37RGMHcw .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS37RGMHcw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS37RGMHcw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS37RGMHcw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS37RGMHcw .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tEqRrwtVDO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEqRrwtVDO .container-fluid {
  padding: 0 3rem;
}
.cid-tEqRrwtVDO .card {
  display: block;
}
.cid-tEqRrwtVDO .card .card-wrapper {
  height: 1%;
}
.cid-tEqRrwtVDO .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tEqRrwtVDO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tEqRrwtVDO .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tEqRrwtVDO .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tEqRrwtVDO .container-fluid {
    padding: 0 1rem;
  }
  .cid-tEqRrwtVDO .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tEqRrwtVDO .mbr-text,
.cid-tEqRrwtVDO .card-btn {
  text-align: right;
  color: #000000;
}
.cid-uACnR43dL6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uACnR43dL6 .container-fluid {
  padding: 0 3rem;
}
.cid-uACnR43dL6 .card {
  display: block;
}
.cid-uACnR43dL6 .card .card-wrapper {
  height: 1%;
}
.cid-uACnR43dL6 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-uACnR43dL6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uACnR43dL6 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uACnR43dL6 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uACnR43dL6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uACnR43dL6 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uACnR43dL6 .mbr-text,
.cid-uACnR43dL6 .card-btn {
  text-align: right;
  color: #000000;
}
.cid-t5qvAioWZh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t5qvAioWZh .container-fluid {
  padding: 0 3rem;
}
.cid-t5qvAioWZh .card {
  display: block;
}
.cid-t5qvAioWZh .card .card-wrapper {
  height: 1%;
}
.cid-t5qvAioWZh .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-t5qvAioWZh .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t5qvAioWZh .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-t5qvAioWZh .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-t5qvAioWZh .container-fluid {
    padding: 0 1rem;
  }
  .cid-t5qvAioWZh .text-row {
    padding-bottom: 1rem;
  }
}
.cid-t5qvAioWZh .mbr-text,
.cid-t5qvAioWZh .card-btn {
  text-align: right;
  color: #000000;
}
.cid-uS3aIc80zt {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3aIc80zt .container-fluid {
  padding: 0 3rem;
}
.cid-uS3aIc80zt .media-container-column {
  padding: 0 2rem;
}
.cid-uS3aIc80zt .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS3aIc80zt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS3aIc80zt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS3aIc80zt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS3aIc80zt .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-sxd7V1LesM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxd7V1LesM .container-fluid {
  padding: 0 3rem;
}
.cid-sxd7V1LesM .card {
  display: block;
}
.cid-sxd7V1LesM .card .card-wrapper {
  height: 1%;
}
.cid-sxd7V1LesM .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxd7V1LesM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxd7V1LesM .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxd7V1LesM .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxd7V1LesM .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxd7V1LesM .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxd7V1LesM .mbr-text,
.cid-sxd7V1LesM .card-btn {
  text-align: right;
}
.cid-sxdb45o3MV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxdb45o3MV .container-fluid {
  padding: 0 3rem;
}
.cid-sxdb45o3MV .card {
  display: block;
}
.cid-sxdb45o3MV .card .card-wrapper {
  height: 1%;
}
.cid-sxdb45o3MV .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxdb45o3MV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxdb45o3MV .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxdb45o3MV .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxdb45o3MV .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxdb45o3MV .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxdb45o3MV .mbr-text,
.cid-sxdb45o3MV .card-btn {
  text-align: right;
  color: #000000;
}
.cid-sxdc4LK7ir {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxdc4LK7ir .container-fluid {
  padding: 0 3rem;
}
.cid-sxdc4LK7ir .card {
  display: block;
}
.cid-sxdc4LK7ir .card .card-wrapper {
  height: 1%;
}
.cid-sxdc4LK7ir .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxdc4LK7ir .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxdc4LK7ir .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxdc4LK7ir .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxdc4LK7ir .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxdc4LK7ir .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxdc4LK7ir .mbr-text,
.cid-sxdc4LK7ir .card-btn {
  text-align: right;
}
.cid-tEvSk4PwTY {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEvSk4PwTY .container-fluid {
  padding: 0 3rem;
}
.cid-tEvSk4PwTY .card {
  display: block;
}
.cid-tEvSk4PwTY .card .card-wrapper {
  height: 1%;
}
.cid-tEvSk4PwTY .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tEvSk4PwTY .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tEvSk4PwTY .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tEvSk4PwTY .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tEvSk4PwTY .container-fluid {
    padding: 0 1rem;
  }
  .cid-tEvSk4PwTY .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tEvSk4PwTY .mbr-text,
.cid-tEvSk4PwTY .card-btn {
  text-align: right;
  color: #000000;
}
.cid-uS3ck7KloJ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3ck7KloJ .container-fluid {
  padding: 0 3rem;
}
.cid-uS3ck7KloJ .media-container-column {
  padding: 0 2rem;
}
.cid-uS3ck7KloJ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS3ck7KloJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS3ck7KloJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS3ck7KloJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS3ck7KloJ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-sxddeLzIX3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxddeLzIX3 .container-fluid {
  padding: 0 3rem;
}
.cid-sxddeLzIX3 .card {
  display: block;
}
.cid-sxddeLzIX3 .card .card-wrapper {
  height: 1%;
}
.cid-sxddeLzIX3 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxddeLzIX3 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxddeLzIX3 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxddeLzIX3 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxddeLzIX3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxddeLzIX3 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxddeLzIX3 .mbr-text,
.cid-sxddeLzIX3 .card-btn {
  text-align: right;
}
.cid-tEw6NjCa1N {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEw6NjCa1N .container-fluid {
  padding: 0 3rem;
}
.cid-tEw6NjCa1N .card {
  display: block;
}
.cid-tEw6NjCa1N .card .card-wrapper {
  height: 1%;
}
.cid-tEw6NjCa1N .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tEw6NjCa1N .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tEw6NjCa1N .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tEw6NjCa1N .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tEw6NjCa1N .container-fluid {
    padding: 0 1rem;
  }
  .cid-tEw6NjCa1N .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tEw6NjCa1N .mbr-text,
.cid-tEw6NjCa1N .card-btn {
  text-align: right;
  color: #000000;
}
.cid-uS3fiIDMhu {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3fiIDMhu .container-fluid {
  padding: 0 3rem;
}
.cid-uS3fiIDMhu .media-container-column {
  padding: 0 2rem;
}
.cid-uS3fiIDMhu .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS3fiIDMhu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS3fiIDMhu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS3fiIDMhu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS3fiIDMhu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uM6NVH1HH2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uM6NVH1HH2 .container-fluid {
  padding: 0 3rem;
}
.cid-uM6NVH1HH2 .card {
  display: block;
}
.cid-uM6NVH1HH2 .card .card-wrapper {
  height: 1%;
}
.cid-uM6NVH1HH2 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-uM6NVH1HH2 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uM6NVH1HH2 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uM6NVH1HH2 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uM6NVH1HH2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uM6NVH1HH2 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uM6NVH1HH2 .mbr-text,
.cid-uM6NVH1HH2 .card-btn {
  text-align: right;
}
.cid-uACEgmEsQ8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uACEgmEsQ8 .container-fluid {
  padding: 0 3rem;
}
.cid-uACEgmEsQ8 .card {
  display: block;
}
.cid-uACEgmEsQ8 .card .card-wrapper {
  height: 1%;
}
.cid-uACEgmEsQ8 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-uACEgmEsQ8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uACEgmEsQ8 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uACEgmEsQ8 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uACEgmEsQ8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uACEgmEsQ8 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uACEgmEsQ8 .mbr-text,
.cid-uACEgmEsQ8 .card-btn {
  text-align: right;
}
.cid-uM6NZLmDnN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uM6NZLmDnN .container-fluid {
  padding: 0 3rem;
}
.cid-uM6NZLmDnN .card {
  display: block;
}
.cid-uM6NZLmDnN .card .card-wrapper {
  height: 1%;
}
.cid-uM6NZLmDnN .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-uM6NZLmDnN .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uM6NZLmDnN .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uM6NZLmDnN .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uM6NZLmDnN .container-fluid {
    padding: 0 1rem;
  }
  .cid-uM6NZLmDnN .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uM6NZLmDnN .mbr-text,
.cid-uM6NZLmDnN .card-btn {
  text-align: right;
}
.cid-uS3hyHeSEQ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3hyHeSEQ .container-fluid {
  padding: 0 3rem;
}
.cid-uS3hyHeSEQ .media-container-column {
  padding: 0 2rem;
}
.cid-uS3hyHeSEQ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS3hyHeSEQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS3hyHeSEQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS3hyHeSEQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS3hyHeSEQ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-sxdF1TLVeQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxdF1TLVeQ .container-fluid {
  padding: 0 3rem;
}
.cid-sxdF1TLVeQ .card {
  display: block;
}
.cid-sxdF1TLVeQ .card .card-wrapper {
  height: 1%;
}
.cid-sxdF1TLVeQ .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxdF1TLVeQ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxdF1TLVeQ .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxdF1TLVeQ .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxdF1TLVeQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxdF1TLVeQ .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxdF1TLVeQ .mbr-text,
.cid-sxdF1TLVeQ .card-btn {
  text-align: right;
}
.cid-sxnvpsOJAW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxnvpsOJAW .container-fluid {
  padding: 0 3rem;
}
.cid-sxnvpsOJAW .card {
  display: block;
}
.cid-sxnvpsOJAW .card .card-wrapper {
  height: 1%;
}
.cid-sxnvpsOJAW .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxnvpsOJAW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxnvpsOJAW .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxnvpsOJAW .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxnvpsOJAW .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxnvpsOJAW .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxnvpsOJAW .mbr-text,
.cid-sxnvpsOJAW .card-btn {
  text-align: right;
}
.cid-uS3s1Gi8Qm {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3s1Gi8Qm .container-fluid {
  padding: 0 3rem;
}
.cid-uS3s1Gi8Qm .media-container-column {
  padding: 0 2rem;
}
.cid-uS3s1Gi8Qm .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS3s1Gi8Qm .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS3s1Gi8Qm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS3s1Gi8Qm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS3s1Gi8Qm .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-sxnyD6owwd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxnyD6owwd .container-fluid {
  padding: 0 3rem;
}
.cid-sxnyD6owwd .card {
  display: block;
}
.cid-sxnyD6owwd .card .card-wrapper {
  height: 1%;
}
.cid-sxnyD6owwd .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxnyD6owwd .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxnyD6owwd .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxnyD6owwd .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxnyD6owwd .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxnyD6owwd .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxnyD6owwd .mbr-text,
.cid-sxnyD6owwd .card-btn {
  text-align: right;
}
.cid-tEYPbhRnpJ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEYPbhRnpJ .container-fluid {
  padding: 0 3rem;
}
.cid-tEYPbhRnpJ .card {
  display: block;
}
.cid-tEYPbhRnpJ .card .card-wrapper {
  height: 1%;
}
.cid-tEYPbhRnpJ .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tEYPbhRnpJ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tEYPbhRnpJ .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tEYPbhRnpJ .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tEYPbhRnpJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-tEYPbhRnpJ .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tEYPbhRnpJ .mbr-text,
.cid-tEYPbhRnpJ .card-btn {
  text-align: right;
  color: #000000;
}
.cid-tEZd5NdoN2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEZd5NdoN2 .container-fluid {
  padding: 0 3rem;
}
.cid-tEZd5NdoN2 .card {
  display: block;
}
.cid-tEZd5NdoN2 .card .card-wrapper {
  height: 1%;
}
.cid-tEZd5NdoN2 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tEZd5NdoN2 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tEZd5NdoN2 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tEZd5NdoN2 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tEZd5NdoN2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tEZd5NdoN2 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tEZd5NdoN2 .mbr-text,
.cid-tEZd5NdoN2 .card-btn {
  text-align: right;
  color: #000000;
}
.cid-tRa8r2IjIQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tRa8r2IjIQ .container-fluid {
  padding: 0 3rem;
}
.cid-tRa8r2IjIQ .card {
  display: block;
}
.cid-tRa8r2IjIQ .card .card-wrapper {
  height: 1%;
}
.cid-tRa8r2IjIQ .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tRa8r2IjIQ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tRa8r2IjIQ .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tRa8r2IjIQ .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tRa8r2IjIQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-tRa8r2IjIQ .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tRa8r2IjIQ .mbr-text,
.cid-tRa8r2IjIQ .card-btn {
  text-align: right;
  color: #000000;
}
.cid-tRacF6W6WB {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tRacF6W6WB .container-fluid {
  padding: 0 3rem;
}
.cid-tRacF6W6WB .card {
  display: block;
}
.cid-tRacF6W6WB .card .card-wrapper {
  height: 1%;
}
.cid-tRacF6W6WB .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tRacF6W6WB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tRacF6W6WB .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tRacF6W6WB .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tRacF6W6WB .container-fluid {
    padding: 0 1rem;
  }
  .cid-tRacF6W6WB .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tRacF6W6WB .mbr-text,
.cid-tRacF6W6WB .card-btn {
  text-align: right;
  color: #000000;
}
.cid-uAIiyGBA6P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uAIiyGBA6P .container-fluid {
  padding: 0 3rem;
}
.cid-uAIiyGBA6P .card {
  display: block;
}
.cid-uAIiyGBA6P .card .card-wrapper {
  height: 1%;
}
.cid-uAIiyGBA6P .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-uAIiyGBA6P .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uAIiyGBA6P .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uAIiyGBA6P .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uAIiyGBA6P .container-fluid {
    padding: 0 1rem;
  }
  .cid-uAIiyGBA6P .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uAIiyGBA6P .mbr-text,
.cid-uAIiyGBA6P .card-btn {
  text-align: right;
  color: #000000;
}
.cid-uS3uCDF0QX {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3uCDF0QX .container-fluid {
  padding: 0 3rem;
}
.cid-uS3uCDF0QX .media-container-column {
  padding: 0 2rem;
}
.cid-uS3uCDF0QX .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS3uCDF0QX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS3uCDF0QX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS3uCDF0QX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS3uCDF0QX .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-sxnAmpYtBX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxnAmpYtBX .container-fluid {
  padding: 0 3rem;
}
.cid-sxnAmpYtBX .card {
  display: block;
}
.cid-sxnAmpYtBX .card .card-wrapper {
  height: 1%;
}
.cid-sxnAmpYtBX .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sxnAmpYtBX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxnAmpYtBX .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxnAmpYtBX .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sxnAmpYtBX .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxnAmpYtBX .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sxnAmpYtBX .mbr-text,
.cid-sxnAmpYtBX .card-btn {
  text-align: right;
}
.cid-tEvTKLz8B1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEvTKLz8B1 .container-fluid {
  padding: 0 3rem;
}
.cid-tEvTKLz8B1 .card {
  display: block;
}
.cid-tEvTKLz8B1 .card .card-wrapper {
  height: 1%;
}
.cid-tEvTKLz8B1 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tEvTKLz8B1 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tEvTKLz8B1 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tEvTKLz8B1 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tEvTKLz8B1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tEvTKLz8B1 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tEvTKLz8B1 .mbr-text,
.cid-tEvTKLz8B1 .card-btn {
  text-align: right;
  color: #000000;
}
.cid-uS3vbcLik0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3vbcLik0 .container-fluid {
  padding: 0 3rem;
}
.cid-uS3vbcLik0 .media-container-column {
  padding: 0 2rem;
}
.cid-uS3vbcLik0 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS3vbcLik0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uS3vbcLik0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS3vbcLik0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS3vbcLik0 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uBt5CmjyJX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBt5CmjyJX .container-fluid {
  padding: 0 3rem;
}
.cid-uBt5CmjyJX .card {
  display: block;
}
.cid-uBt5CmjyJX .card .card-wrapper {
  height: 1%;
}
.cid-uBt5CmjyJX .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-uBt5CmjyJX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uBt5CmjyJX .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uBt5CmjyJX .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uBt5CmjyJX .container-fluid {
    padding: 0 1rem;
  }
  .cid-uBt5CmjyJX .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uBt5CmjyJX .mbr-text,
.cid-uBt5CmjyJX .card-btn {
  text-align: right;
  color: #000000;
}
.cid-swDl3J73lw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-swDl3J73lw .social-media {
  margin-top: 1.5rem;
}
.cid-swDl3J73lw .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-swDl3J73lw .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-swDl3J73lw .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-swDl3J73lw .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-swDl3J73lw ul {
  list-style: none;
}
.cid-swDl3J73lw hr {
  margin-top: 2rem;
}
.cid-swDl3J73lw .sub-info {
  margin-top: 2rem;
}
.cid-swDl3J73lw .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-swDl3J73lw .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-swDl3J73lw .mbr-list,
.cid-swDl3J73lw .social-media UL {
  text-align: left;
}
.cid-swDl3J73lw .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-swDl3J73lw .mbr-list,
  .cid-swDl3J73lw .mbr-section-title {
    text-align: center !important;
  }
  .cid-swDl3J73lw .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-swDl3J73lw .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-swDl3J73lw .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-swDl3J73lw .list-column {
    margin-bottom: 2rem;
  }
  .cid-swDl3J73lw hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-uUCwacW74s {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUCwacW74s .container-fluid {
  padding: 0 3rem;
}
.cid-uUCwacW74s .media-container-column {
  padding: 0 2rem;
}
.cid-uUCwacW74s .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uUCwacW74s .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uUCwacW74s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUCwacW74s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUCwacW74s .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
